Linux Lite 7.8 Final has been released - Click here


Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,979
» Latest member: Dichaeltip
» Forum threads: 9,472
» Forum posts: 62,475

Full Statistics

Online Users
There are currently 1485 online users.
» 0 Member(s) | 1480 Guest(s)
Applebot, Baidu, Bing, Google, Yandex

Latest Threads
Project Litening
Forum: Linux Lite Software Development
Last Post: valtam
04-06-2026, 05:35 AM
» Replies: 11
» Views: 872
Website forum links not w...
Forum: Suggestions and Feedback
Last Post: valtam
04-06-2026, 12:32 AM
» Replies: 5
» Views: 275
time synchronization
Forum: Other
Last Post: LL-user
04-03-2026, 03:13 PM
» Replies: 5
» Views: 1,513
Permissions on a secondar...
Forum: Other
Last Post: stevef
04-02-2026, 06:26 AM
» Replies: 9
» Views: 521
Some windows fail to rend...
Forum: Video Cards
Last Post: Crimson Plasma
03-31-2026, 04:19 PM
» Replies: 4
» Views: 314
Linux Lite 7.8 Final Rele...
Forum: Release Announcements
Last Post: Wirezfree
03-29-2026, 10:21 PM
» Replies: 16
» Views: 26,807
Accidentally Deleted fold...
Forum: Hard Drives and SSDs
Last Post: trinidad
03-13-2026, 11:38 PM
» Replies: 3
» Views: 309
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,237
xfce-panel fuzzy clock
Forum: Installing Software
Last Post: valtam
02-28-2026, 02:38 AM
» Replies: 1
» Views: 301
Unable to Mount External ...
Forum: Hard Drives and SSDs
Last Post: sqwuade
02-22-2026, 08:39 AM
» Replies: 7
» Views: 42,003

 
  WiFi password not working
Posted by: weep - 10-03-2016, 08:02 PM - Forum: Installing Linux Lite - Replies (5)

Hi I have a Dell Lattitude D620 and just installed Linux Lite 3.0 When I put in my WiFi password it seems to connect out to the modem but says credentials are wrong. They aren’t wrong, so I am stumped. Seriously, I looked and looked and typed really slowly - the password is going in right. Any idea?

Print this item

  Linux Lite is now 4 years old
Posted by: torreydale - 10-03-2016, 03:40 PM - Forum: On Topic - Replies (11)

Two months ago, I remember responding to a frustrated Linux Lite 3.0 user who wrote, "no wonder LL has fallen down so much on distrowatch."  I looked today and noticed the following.  If you look at Distrowatch's Page Hit Ranking for the Last 6 months, and you removed the distros that have been around longer than 4 years, this is what you would get:

1) Ubuntu MATE
2) LXLE
3) Linux Lite

So on its 4th anniversary, Linux Lite is 3rd of the distros that have been around 4 years or less.

Cheers!

Print this item

  Brother MFC-9340CDW Works Sorta.
Posted by: TuxInAGalaxy - 10-03-2016, 03:34 PM - Forum: Suggestions and Feedback - No Replies

In order to get this printer working you need to go to

http://support.brother.com/g/b/downloadt...340cdw_all

And follow the directions.

The first time I installed Linux Lite 3.0 those instructions didn't work at all.  However they did kinda work with Linux Lite 2.8.  I couldn't use the on board scanner though.  Couldn't scan directly to the computer.  Ended up taking Linux Lite 3.0 off the computer and putting something else on in place of it.  Yesterday I was doing some testing with a different hard drive and I went through the steps of installing Linux Lite 3.0 and updating it.  This time around I was able to get the brother instructions to work.  I haven't tested the scanner.

I was wondering if the driver to this printer could be added to Linux Lite so that we don't need to keep downloading it?

Print this item

  How to open .pptx using impress
Posted by: vishnu - 10-02-2016, 02:30 PM - Forum: Other - Replies (3)

Kindly guide how to open .pptx files in impress. I am using Linux Lite 3. Other MS Office files like .docx, .doc, .xls, .xlsx are opening perfectly but when i am opening .pptx its opening in file explorer and showing three folders and a xml file.

Thanks in advance.

Print this item

  Cannot get rid of Tavanero.info
Posted by: john9159 - 10-02-2016, 02:12 PM - Forum: Installing Software - Replies (2)

From time to time my pc gets invaded by Tavanero which annoys me as I cannot browse properly, or securely.
I've tried a few times to be rid of it by syncing Google but my latest attempts have failed so maybe I have forgotten how to do it this time round.
Has anyone a suggestion of how I can go about removal please?
Thank you

Print this item

  User Account setup problem in LL/lubuntu/zorin/win7 multiboot
Posted by: m654321 - 10-02-2016, 09:49 AM - Forum: Installing Linux Lite - Replies (9)

[size=1em]@gold_finger[/size]
[size=1em]This thread follows on from https://mityer.khdlhfjijfrupr.tk/forums/insta...multiboot/, whose original objective was solved, though the issue of setting up the account on Lubuntu for my son (which followed on from this) remains unresolved.  I'm therefore setting up this thread to address the user account setup in lubuntu.  My sincere apologies for the delay in replying to your instructions -  I have copied and pasted my reply to you below - just want to reiterate that I greatly value your help.[/size]

Regards
Mike

You said (gold_finger):
I forgot you had Zorin on there as well, but see that you went ahead and changed that too.  Good job.As I understand it, when you run id command in both Zorin and LL it shows UID and GID = 1001.  Correct?

[size=1em]Me: Yes, that's correct...[/size]



You: If so, run these two commands in Lubuntu terminal and let's see who shows up as GID=1001.

List users (and their respective UID, GID) with a UID equal to or greater than 1000 as listed in
/etc/passwd file:

Code:
awk -F: '($3 >= 1000) {printf "%s:%s:%s\n",$1,$3,$4}' /etc/passwd


List groups with a GID equal to or greater than 1000 as listed in /etc/group file:
Code:
awk -F: '($3 >= 1000) {printf "%s:%s\n",$1,$3}' /etc/group


Copy/Paste results back here.


Me: The output from Lubuntu's terminal is as follows:
Code:
happyfamily@happyfamily-X71Q:~$ awk -F: '($3 >= 1000) {printf "%s:%s:%s\n",$1,$3,$4}' /etc/passwdnobody:65534:65534happyfamily:1000:1000sam-the-editor:1001:1002
happyfamily@happyfamily-X71Q:~$ awk -F: '($3 >= 1000) {printf "%s:%s\n",$1,$3}' /etc/groupnogroup:65534happyfamily:1000sam:1001sam-the-editor:1002
happyfamily@happyfamily-X71Q:~$

Print this item

  Stuck at login screen, updating to 16.04
Posted by: kew11424 - 10-02-2016, 01:16 AM - Forum: Installing Linux Lite - Replies (3)

I have LinuxLite on an old Asus P5KPRO in the garage. This normally runs XP, but occasionally I boot Linux instead for various reasons. XP is on one HDD, Linux on another. I use grub to choose which system to boot, the default is XP.

The Software Updater said I was still running Ubuntu 14.04 and I stupidly let it update to 16.04 yesterday. All seemed to go well with the update, took about an hour to download and install. But when I try logging in at the lightdm greeter, it hangs. I type in my password, the screen moves up slightly to make room for the "logging in" message and then... nothing. Eventually the screen goes dark as the screensaver kicks in, I suppose.

I can log in to a terminal session with ctrl-alt-F1, and use startx to get to the desktop. I've tried a few things: remove (purge) and re-install lightdm, remove/reinstall Nvidia drivers, chown .Xauthority. Any other suggestions? TIA.

Incidentally, grub now has "*Description Linux 2.8" as the first entry (above XP), and if I try to change this, grub customizer is missing. Trying to reinstall it tells me I have a broken installation. I doubt this has anything to do with the login problem, but I'll have to change the default back to XP eventually.

Print this item

  LL 3.0 installs fine but won't boot looking for file name
Posted by: Mel_B - 10-02-2016, 12:26 AM - Forum: Installing Linux Lite - Replies (4)

LL 3.0 installed fine. I put the boot loader in its root partition /dev/sda8. on my primary OS I ran (update grub) it found the ll 3.0 boot loader on sda8 When I boot sda8 using grub 2 I get a error that it is looking for a file. I had High Hopes for this version of LL, but like a couple of previous versions it has been a waste of my time down loading and installing. The graphic card problem was solved in this version, but now it won't boot. Why??? what is it looking for?? Can someone explain what is going on? I have several other Distros and they all multi boot fine. why not LL.
Mel

Print this item

  Systemback Tip
Posted by: JmaCWQ - 10-01-2016, 12:27 AM - Forum: On Topic - No Replies

If XFCE desktop icons are locked by the command sudo chattr +i ~/.config/xfce4/desktop/icons* to stop them jumping to the top left position at startup, it'll cause an error when creating a live system with Systemback.
The creation process starts as normal then stops after a couple of minutes with the error: Live System Create Failed. There has been critical changes in the file system during this operation.
Unlocking the icon file with sudo chattr -i ~/.config/xfce4/desktop/icons* fixes the issue & the live creation then works as it should.

If having trouble finding what causes the error try starting Systemback from Terminal, when it failed it showed the file it failed on (icons.screen0-1264x936.rc) which I realised was the file locked to stop the icons jumping left.
Same happens on Linux Lite 2.8 & 3.0, Debian Jessie XFCE, and MX-15.

8)

Print this item

  SOLVED - Want to roll back to LL2.8 for this Tosh Satpro A10
Posted by: newtusmaximus - 09-29-2016, 05:30 PM - Forum: On Topic - Replies (4)

Have redone HDD  by installing LL2.0 iso.    How can I upgrade to 2.8.  Tried downloading the upgrade via terminal but without success.  Tks

Print this item