| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,991
» Latest member: jisoo167
» Forum threads: 9,472
» Forum posts: 62,476
Full Statistics
|
| Online Users |
There are currently 2088 online users. » 0 Member(s) | 2084 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
Project Litening
Forum: Linux Lite Software Development
Last Post: SleepyD
Yesterday, 05:18 PM
» Replies: 12
» Views: 1,002
|
Website forum links not w...
Forum: Suggestions and Feedback
Last Post: valtam
04-06-2026, 12:32 AM
» Replies: 5
» Views: 337
|
time synchronization
Forum: Other
Last Post: LL-user
04-03-2026, 03:13 PM
» Replies: 5
» Views: 1,573
|
Permissions on a secondar...
Forum: Other
Last Post: stevef
04-02-2026, 06:26 AM
» Replies: 9
» Views: 586
|
Some windows fail to rend...
Forum: Video Cards
Last Post: Crimson Plasma
03-31-2026, 04:19 PM
» Replies: 4
» Views: 381
|
Linux Lite 7.8 Final Rele...
Forum: Release Announcements
Last Post: Wirezfree
03-29-2026, 10:21 PM
» Replies: 16
» Views: 28,838
|
Accidentally Deleted fold...
Forum: Hard Drives and SSDs
Last Post: trinidad
03-13-2026, 11:38 PM
» Replies: 3
» Views: 336
|
Linux lite 6.0 doesn't wo...
Forum: Installing Linux Lite
Last Post: Dottor Octopus
03-03-2026, 05:14 PM
» Replies: 10
» Views: 1,301
|
xfce-panel fuzzy clock
Forum: Installing Software
Last Post: valtam
02-28-2026, 02:38 AM
» Replies: 1
» Views: 329
|
Unable to Mount External ...
Forum: Hard Drives and SSDs
Last Post: sqwuade
02-22-2026, 08:39 AM
» Replies: 7
» Views: 42,051
|
|
|
| can't get past login screen |
|
Posted by: Hardcoretexan - 06-16-2017, 11:57 PM - Forum: Start up and Shutdown
- No Replies
|
 |
I upgraded from 2.2 to 2.8 there were multiple problems as it was updating that I had to cancel out of and keep going but it finished and was fine.
I then was notified there was a new kernal to download, which I did and same thing, it said my config was altered and would I like to replace it so I did( I don't know why it was altered.
Now after restarting and updating it I cannot log in.
when I start LL it fails then restarts bringing me to the advanced options menu gnu grub version 2.2then I start ubuntu with linux 4.4.0- 79 generic recovery mode.
Then recovery menu/resume/ok exit recovery mode then the login screen page comes up(I turned that off in the previous version).
I put in my password and and it shows logging in but never does(stays on that page showing logging in. If I don't use a pw or a different one it authentication failed.
When I get to grub page I have these options each with generic plain, upstart, recovery mode, none will allow me to get by the login screen
4.4.0-79
3.19.0-80
3.13.0--24
|
|
|
| Canon Lide 100 not working |
|
Posted by: sanmayjoshi - 06-16-2017, 02:06 PM - Forum: Printing and Scanning
- Replies (11)
|
 |
Hello,
I have a Canon Lide 100 scanner(Yes, USB only). It is getting detected but the Document Scanner is not able to scan documents via scanner. I even tried installing Sane along with XSane Image Scanning Program, but no luck. XSane shows the scanner info, just gives error-Failed to start scanner: Error during device I/O. when asked to scan.
I would really appreciate any help.
Thanks.
Edit:
I am adding solution with explanation to above problem in case it might help someone --
I don't know which specific step out of following made scanner work, but it worked. 
Make sure you have scanner plugged in(yep, the USB).
First check if you have sane installed along with dependencies and libusb-dev, build-essential, libsane-dev . To install sane- Code: sudo apt-get install sane #this shall install sane with any dependencies
Similarly, to install libusb-dev, build-essential, libsane-dev - Code: sudo apt-get install libusb-dev build-essential libsane-dev
Type in terminal-You may find something like-
[tt]
# sane-find-scanner will now attempt to detect your scanner. If the
# result is different from what you expected, first make sure your
# scanner is powered up and properly connected to your computer.
# No SCSI scanners found. If you expected something different, make sure that
# you have loaded a kernel SCSI driver for your SCSI adapter.
found USB scanner (vendor=0x04a9, product=0×1904, chip=GL843) at libusb:001:004
# Your USB scanner was (probably) detected. It may or may not be supported by
# SANE. Try scanimage -L and read the backend’s manpage.
# Not checking for parallel port scanners.
[/tt]
if not, don't worry.
Now go to- https://anonscm.debian.org/gitweb/?p=san...ckends.git (which I found when I googled for [tt]git://git.debian.org/sane/sane-backends.git[/tt]), and download(click on snapshot) the master branch(yep, the one with master tag). Extract(to any directory but in this solution it is to USER/) and rename it to sane-backends. Then via terminal change directory to sane-backendsvia command - Code: cd USER/sane-backends #it may differ in your case
and then type in the terminal- Code: export BACKENDS="net mustek mustek_usb genesys"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
sudo make install
sudo bluefish /lib/udev/rules.d/40-libsane.rules #I use bluefish editor
If it worked fine and a text file got opened then add-
Code: # Canon CanoScan Lide 100
ATTRS{idVendor}==”04a9″, ATTRS{idProduct}==”1904″, ENV{libsane_matched}=”yes”
to the end of that file.
But, in my case I found out that /lib/udev/rules.d/40-libsane.rules didn't exist in my pc. If that's the case then create 40-libsane.rules in /lib/udev/rules.d/ as root and paste-
Code: # Canon CanoScan Lide 100
ATTRS{idVendor}==”04a9″, ATTRS{idProduct}==”1904″, ENV{libsane_matched}=”yes”
still, it may not work.
Restart your PC.
Type in terminal- it should return-
[tt]device `genesys:libusb:001:003' is a Canon LiDE 100 flatbed scanner
[/tt] (001:003 may be replaced with something else in your case). Test your scanner(try scanning via Document Scanner or XSane).
Type in terminal- Code: scanimage -d genesys:libusb:001:003 --format=tiff >image.tiff
(by changing [tt]001:003[/tt] to what it shows for [tt]scan-find-scanner[/tt] ) Code: scanimage -d genesys:libusb:001:003 --format=tiff >image.tiff
, scanner should make the sound it does when it scans(yes, it will throw green light too! )). Now, what you just scanned will be (at least, should be) saved in [tt]USER/ [/tt] . Congrats, your scanner is working(at least it did in my case! ). Again test your scanner via Document Scanner(or XSane). Restart your computer, and again test your scanner via Document Scanner(or XSane).
If it passed all the tests, yep, your scanner is working awesome!
|
|
|
| ATI XPERT Rage 128 |
|
Posted by: Gaurishankar - 06-16-2017, 05:50 AM - Forum: Video Cards
- Replies (1)
|
 |
I changed the card but no use. Login screen does not appear.
Please Help.
Code: gaurishankar@linuxlite30:~$ sudo lshw -c display *-display UNCLAIMED
description: VGA compatible controller
product: Rage128 [Xpert 128 PCI]
vendor: Advanced Micro Devices, Inc. [AMD/ATI]
physical id: 9
bus info: pci@0000:02:09.0
version: 00
width: 32 bits
clock: 33MHz
capabilities: pm vga_controller bus_master cap_list
configuration: latency=32 mingnt=8
resources: memory:e0000000-e3ffffff ioport:c000(size=256) memory:e5000000-e5003fff memory:e4000000-e401ffff
|
|
|
| What is going on with Libre Writer? |
|
Posted by: PinStripe - 06-15-2017, 05:58 PM - Forum: Other
- Replies (4)
|
 |
Every time I open a doc in Libre Writer, it takes several minutes to open!
This Never used to occur.
The blue bar loads at the bottom of the page and shows the progress and
some docs can take like 5 minutes to load!
I'm running LinuxLite 3.4 with all the current updates and opening .doc files.
Is this an issue for Linux Lite only or is this happening across the board?
I really want to install a different office suite, but can seem to get one to
run on this OS.
Maybe LinuxLite could go back to installing Open Office by default?
|
|
|
| 2 days to go |
|
Posted by: bitsnpcs - 06-14-2017, 10:12 PM - Forum: Off Topic
- Replies (8)
|
 |
Hello,
fishing season begins in 2 days, does anyone like fishing ?
Last year I caught no fish, I did catch weeds on the bottom, or junk, once a small piece of car tyre :-\ , just as a boat was passing and he insisted on telling me there were bigger ones like that in there.
Last year I began fishing, I do lure fishing, and 1 time also tried a type of lure fishing called drop shot fishing, although I think I was doing drop shot wrong after later watching videos on it, hooks and lures too big. So I have smaller ones for drop shotting to try this year.
I began late in the summer, I went 5 times in total so far.
|
|
|
| Panel problem |
|
Posted by: then00b - 06-14-2017, 11:01 AM - Forum: Other
- Replies (6)
|
 |
[img height=19 width=800]http://s23.postimg.org/i8risx03f/Screenshot_2017-06-14_18-48-56.png[/img]
Hello there! I am currently having a problem on my panel. I wish to move these items to the right side. But, unfortunately I don't know how, can someone give this fella a helping hand? Thanks.
|
|
|
|