Linux Lite 7.6 RC1 has been released - See Release Announcements Section


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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,432
» Latest member: Aphiana
» Forum threads: 9,366
» Forum posts: 61,944

Full Statistics

Online Users
There are currently 2713 online users.
» 0 Member(s) | 2710 Guest(s)
Applebot, Bing, Google

Latest Threads
Intel HD Graphics Not Wor...
Forum: Installing Linux Lite
Last Post: Abhi_245
39 minutes ago
» Replies: 2
» Views: 78
Help me, please! - CDROM ...
Forum: Updates
Last Post: CountFoxx
08-05-2025, 01:45 PM
» Replies: 25
» Views: 1,738
Linux Lite 7.6 RC1 Releas...
Forum: Release Announcements
Last Post: stevef
08-03-2025, 05:39 AM
» Replies: 4
» Views: 615
installing 5.8 Lunix lite...
Forum: Installing Software
Last Post: Ren
08-01-2025, 03:34 PM
» Replies: 0
» Views: 159
VERY ODD install Issue
Forum: Installing Linux Lite
Last Post: Azoic
08-01-2025, 05:34 AM
» Replies: 0
» Views: 200
Old to new?
Forum: Introductions
Last Post: stevef
08-01-2025, 04:53 AM
» Replies: 1
» Views: 239
Q4Wine not working in Lit...
Forum: Installing Software
Last Post: Ren
07-31-2025, 08:46 PM
» Replies: 0
» Views: 175
New member
Forum: Introductions
Last Post: Valtam
07-30-2025, 08:40 AM
» Replies: 1
» Views: 5,914
update error - dpkg was i...
Forum: Updates
Last Post: jpaca
07-29-2025, 05:46 PM
» Replies: 2
» Views: 927
Install Updates - Spotify...
Forum: Updates
Last Post: SamBC
07-26-2025, 05:28 PM
» Replies: 4
» Views: 758

 
  Changing user name
Posted by: robert - 04-28-2014, 01:48 PM - Forum: Installing Linux Lite - Replies (4)

Hi. Is there a way to change the main user name?
I set my wife's netbook up but used my name and now she would like to see her name at login etc.
Thanks in advance.

Print this item

  Enabling Suspend on Linux Lite
Posted by: Valtam - 04-28-2014, 08:41 AM - Forum: Other - Replies (7)

1) Open a terminal and type in:

Code:
sudo leafpad /etc/pm/sleep.d/20_custom-ehci_hcd

2) Paste the following code into the file, save then close it.
Code:
#!/bin/sh
#inspired by http://art.ubuntuforums.org/showpost.php?p=9744970&postcount=19
#...and http://thecodecentral.com/2011/01/18/fix-ubuntu-10-10-suspendhibernate-not-working-bug   
# tidied by tqzzaa :)

VERSION=1.1
DEV_LIST=/tmp/usb-dev-list
DRIVERS_DIR=/sys/bus/pci/drivers
DRIVERS="ehci xhci" # ehci_hcd, xhci_hcd
HEX="[[:xdigit:]]"
MAX_BIND_ATTEMPTS=2
BIND_WAIT=0.1

unbindDev() {
  echo -n > $DEV_LIST 2>/dev/null
  for driver in $DRIVERS; do
    DDIR=$DRIVERS_DIR/${driver}_hcd
    for dev in `ls $DDIR 2>/dev/null | egrep "^$HEX+:$HEX+:$HEX"`; do
      echo -n "$dev" > $DDIR/unbind
      echo "$driver $dev" >> $DEV_LIST
    done
  done
}

bindDev() {
  if [ -s $DEV_LIST ]; then
    while read driver dev; do
      DDIR=$DRIVERS_DIR/${driver}_hcd
      while [ $((MAX_BIND_ATTEMPTS)) -gt 0 ]; do
          echo -n "$dev" > $DDIR/bind
          if [ ! -L "$DDIR/$dev" ]; then
            sleep $BIND_WAIT
          else
            break
          fi
          MAX_BIND_ATTEMPTS=$((MAX_BIND_ATTEMPTS-1))
      done 
    done < $DEV_LIST
  fi
  rm $DEV_LIST 2>/dev/null
}

case "$1" in
  hibernate|suspend) unbindDev;;
  resume|thaw)       bindDev;;
esac

3) Make the file executable, in the same terminal type in:

Code:
sudo chmod 755 /etc/pm/sleep.d/20_custom-ehci_hcd

Source: http://thecodecentral.com/2011/01/18/fix...orking-bug

Working on 1.0.6, need confirmation this will work on 1.0.8 please.

Print this item

  Attention Dual-Booters: New Internet Explorer Exploit Affects IE 6 - IE 11
Posted by: N4RPS - 04-28-2014, 12:02 AM - Forum: Off Topic - Replies (1)

Hello, All!

I ran across this article today, and thought I'd share it with the community. It seems that there's a new exploit in Internet Explorer that allow a malicious user to take control of your computer and install files on it, simply by having you to visit a malicious website.

Fixes for Vista and higher are coming, but there will be no fix for XP. Since Firefox and Chrome are not affected by this exploit, it is recommended that Windows XP users use Firefox or Chrome from now on, as opposed to Internet Explorer.

I don't know about anyone else, but doesn't this seem like a recurring theme that triggers most of the M$ security updates?

Here's the URL of the whole story:

http://www.theverge.com/2014/4/27/565900...l-versions

Of course, none of this affects users who only use Linux Lite. Wink I post this for the benefit of those who dual-boot with Windows...

73 DE N4RPS
Rob

Print this item

  Desktop Icons scrambled after fullscreen applications
Posted by: dodo - 04-27-2014, 05:57 PM - Forum: Other - Replies (3)

Is there any way to remember position of icons on desktop, because they get scrambled every time i run some fullscreen game.
:o

Print this item

  Supertux 2 and Xmoto wont run
Posted by: dodo - 04-27-2014, 05:52 PM - Forum: Games Support - Replies (4)

After installation of these games, they just wont run.
Btw, Supertux 1 runs fine, but when i click "Open GL" in setup, game crashes.
:o

Print this item

  Installing Netflix
Posted by: lindalinex4me - 04-27-2014, 03:06 AM - Forum: Installing Software - Replies (12)

Hello...new to Linux and know almost nothing.  I tried to install Netflix from the Help Manual and tried copying and pasting this:  sudo add-apt-repository ppa:ehoover/compholio
                                          sudo apt-get update && sudo apt-get install netflix-desktop
My computer would only paste the first line then asked for my password.  Don't  I need both lines together?  Or should I go with the first line-enter, wait till all that is done, then paste or type the 2nd line??? I tried to manually type the two lines in and couldn't get it on two lines as shown in the manual.  Sigh...I might need Help Manual for Dummies.  :-\  Thanks for taking pity on me!

Print this item

  Can't choose to install LL besides the existing OSs
Posted by: Jonas - 04-26-2014, 07:54 PM - Forum: Installing Linux Lite - Replies (24)

Hello, friends.

When I run the installation program after I booted LinuxLite via USB, I cannot choose then to install this OS besides the other two which are already installed. The only options shown me is to erase the Lubuntu OS and install LinuxLite, to erase all and install LL or to do "something else [setting partitions and so on]".
So why can't I install LL for Dual-Boot as I did already with Lubuntu?

Another issue: The keyboard is messed by dealing with LL started via USB. I use a netbook and it seems like, the numpad has assigned to regular buttons on the keyboard. So pushing "j k l" I get "1 2 3", pushing "u i o" I get "4 5 6" and so on.

I'd be glad if you could help me.

Print this item

  ?? About Guest Acct
Posted by: SweetAction22 - 04-26-2014, 06:17 PM - Forum: Other - Replies (2)

I would like to have a guest acct, possibly with limited access to stuff and also cannot save anything. Is there anyway to set this up.

Print this item

  Fine Details needed for partitioning & mounts in a legacy laptop with WinXP32 on
Posted by: Wombat66 - 04-26-2014, 04:02 PM - Forum: Installing Linux Lite - Replies (13)

I have a 2009 Fujitsu Esprimo Mobile 250 Gb  and 2 Gb Ram and 3 USB's and a DVD. 
Win XP 32  Sp3 has C drive , sda 1  84Gb  NTFS and D drive 78 Gb  sda 5 which is full of documents mainly,  NTFS and E: drive sda 6 which is 88 Gb and NTFS and which I have emptied of all but less than 1 Gb of stuff in order to put Linux Lite 1.08 on it .

I have 30 Gb  free space in drive C for my XP work.
I have been told to 1. Delete drive E , sda 6 and create 2 logical partitions  ONE of 50Ggb NTFS and the Second Linux /ext4 root partition + Linux Swap space of 1-2 Ggb and to leave about 8-10 Ggb of unallocated space for windows .

I am unsure  what to do
1. I will select the "something else option"  2. I will select  sda 6 then a) Do I format the whole  E  drive?  b) When I select 50Ggb for the NTFS partition do I select DOS or Windows in the mount menu?  c) What will that NTFS partition be used for ?  With XP or with Linux?  d) To do this I must write it to disc and there is no undoing after that point .  e) Linux Swap has to be 1-2 Ggb or can I make it more to improve my RAM ability? which is 2Ggb?....It seems my /ext4 Linux partition will be about 25-27 Ggb.I need to know also what MOUNTING is or does and f) What names do I give the partitions and mounts . 
The Linux Lite OS Installation guide is inadequate and does not explain what to do with these issues .
I would appreciate your guidance there.

Print this item

  Thought My XP emachine was a GONER!
Posted by: lindalinex4me - 04-26-2014, 03:48 AM - Forum: Introductions - Replies (4)

A friend suggested Linux...I thought what in the world is that??? I did some snooping and found Linux Lite and he said "go for it, in fact, bring your tower to me and I will put it on for you...should only take 30 minutes"...about 4 days later...I finally got it back.  He said for some reason the disk drive would only take the install so far then freeze up...he didn't give me much hope, but he somehow by-passed my disk drive and the install gave new life to my 2004 or 2005 Windows XP eMachine.  I don't think this PC was this fast when brand new!  Anyway...I am new to the world of Linux, so I am looking for a lot of answers and tips.  I hope I don't make a pest of myself.  One question to start with...is Linux Lite compatible with Skype?  Thanks for letting me join this forum!  Smile

Print this item