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: 8,006
» Latest member: leebut
» Forum threads: 9,474
» Forum posts: 62,486

Full Statistics

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

Latest Threads
update_failed - 400 Bad R...
Forum: Updates
Last Post: val
04-21-2026, 10:57 PM
» Replies: 2
» Views: 71
Problem updating lite 7.6...
Forum: Updates
Last Post: val
04-21-2026, 10:43 PM
» Replies: 6
» Views: 2,787
Problem updating LL6.2 - ...
Forum: Updates
Last Post: stevef
04-16-2026, 11:31 PM
» Replies: 1
» Views: 94
Project Litening
Forum: Linux Lite Software Development
Last Post: valtam
04-15-2026, 11:33 AM
» Replies: 16
» Views: 1,364
Website forum links not w...
Forum: Suggestions and Feedback
Last Post: valtam
04-06-2026, 12:32 AM
» Replies: 5
» Views: 422
time synchronization
Forum: Other
Last Post: LL-user
04-03-2026, 03:13 PM
» Replies: 5
» Views: 1,656
Permissions on a secondar...
Forum: Other
Last Post: stevef
04-02-2026, 06:26 AM
» Replies: 9
» Views: 728
Some windows fail to rend...
Forum: Video Cards
Last Post: Crimson Plasma
03-31-2026, 04:19 PM
» Replies: 4
» Views: 471
Linux Lite 7.8 Final Rele...
Forum: Release Announcements
Last Post: Wirezfree
03-29-2026, 10:21 PM
» Replies: 16
» Views: 31,804
Accidentally Deleted fold...
Forum: Hard Drives and SSDs
Last Post: trinidad
03-13-2026, 11:38 PM
» Replies: 3
» Views: 413

 
  XFCE Panel Appearance problem
Posted by: UltraCookie - 07-16-2015, 06:52 AM - Forum: Other - No Replies

I have a problem with Panel being not completely compatible with the Theme.

[Image: BuyUydy.png]

I know the the look of the Dropbox icon is caused by some issue with the background gamma properties of the icon. Maybe the sound control has the same problem.

Print this item

  Will UEFI be supported in the next release?
Posted by: Lend27 - 07-16-2015, 04:08 AM - Forum: On Topic - Replies (2)

I sure hope so......it will sure make install on a newer machine easier.

Anyone know?

Thanks!
Len

Print this item

  Strange screen
Posted by: marnav1 - 07-15-2015, 10:16 PM - Forum: Other - Replies (2)

Hello all.
Several times lately when I log on I get a screen with the title lightdm-webkit-greeter.
There doesn't seem to be any way to click out of it, there is no X on the top right or maybe its off the screen but I cant see an X. I have to restart to get rid of it.
Is there a way to disable this page or is it some kind of error ? Thanks ahead of time.

Print this item

  [SOLVED] Partition Full
Posted by: Daveyboy - 07-15-2015, 12:53 PM - Forum: Installing Linux Lite - Replies (6)

[size=1em]My desktop machine has been slowing down lately and having just checked  \ partition. where LL 2.2 is installed and find that it using 99% of a 20Gb partition.[/size]

[size=1em]I have only a moderate amount of software installed i.e. Thunderbird, Chrome, LibreOffice, Gimp, Inkscape, Skype & VLC etc. so something must be astray as I have a similar setup on my laptop and that shows only 4Gb used. In each case the home directory is on a separate partition.[/size]

[size=1em]I have no idea how to check/list the content of the partitions on each machine in order to try and work out what is hogging the space on the desktop. Any help would be greatly appreciated [/size]

Print this item

  Bluetooth : EASYACC-MC bluetooth speaker + USB ROCKETEK Bluetooth 4.0 dongle
Posted by: cirimax - 07-15-2015, 09:44 AM - Forum: Tutorials - Replies (3)

Ave !

this is my very first post ever, so please be patient if I'm still not very confident ... Special thanks goes to N4RPS notes !
I am no expert on Linux but I hope this may be of some help to other LL mates with the same issues ;-) .

Requirement : ( see subject )

- Distro : Linux Lite 2.4 x64
- Kernel : Linux 4.1.0-040100-generic
- BT Port : USB Cambridge Silicon Radio, Ltd Bluetooth Dongle - ROCKETEK Bluetooth 4.0
- BT Speaker : EASYACC-MC

STEP A:

        Open a Terminal session (CRTL+ALT+T) and do the following :

EDIT the audio.conf file

$ sudo leafpad /etc/bluetooth/audio.conf  (root password)

edit/add the below area in the configuration file as follows:

[General]
Enable = Source,Sink,Headset,Gateway,Control,Media
#Disable = Socket ( REMARK ANY ACTION ON "SOCKET" EVERYWHERE )
HFP=false ( DISABLES HFP )
[A2DP]
SBCSources=1
MPEG12Sources=0

SAVE and close file

STEP B

$ pacmd list-sources >Output.txt (enter)

Search in output for a reference to your BT devicer and copy (ctrl+c) the "device.string"  parameter (port ?).

properties:
device.description = "Monitor of EasyAcc-MC"                            <== This is my BT Speaker
device.class = "monitor"
device.string = "5C:5A:5A:A6:03:CB"                                                  <== Copy what you get here
device.api = "bluez"
device.bus = "bluetooth"
device.form_factor = "headset"
bluez.path = "/org/bluez/1289/hci0/dev_5C_5A_5A_A6_03_CB"
bluez.class = "0x240404"
bluez.name = "EasyAcc-MC"
device.icon_name = "audio-headset-bluetooth"
device.intended_roles = "phone"

STEP C

I then purged BLUEMAN and reinstall it. Sound silly, but this probably fixed some missing dependencies (need to ask someone who knows better)

$ sudo apt-get purge blueman (root password)
$ sudo apt-get install blueman (root password)

STEP D

Then edit the ALSA configuration file :

$ sudo leafpad /usr/share/alsa/alsa.conf (+root password)

Add the following to the end of the configuration file :

================ ADDED below to END of alsa.conf file ============
pcm.btheadset {
  type plug
  slave {
      pcm {
          type bluetooth
          device 5C:5A:5A:A6:03:CB                                                  <=== REPLACE WITH ADDRESS YOU COPIED/DISCOVERD
          profile "auto"
      }
  }
  hint {
      show on
      description "BT Headset"
  }
}
ctl.btheadset {
  type bluetooth
}
================ ADDED above to END of alsa.conf file ============

Save file and close.

STEP E :

Activate your blueman interface and re-pair EASYACC-MC SPEAKER device with USB BT dongle.
        Be careful to select Audio Profile / High Fidelity Playback (A2DP) ... it may take a sec or 2 to sync.

Playing music with Audacious, audio is crystal perfect !
This works after re boot too ... for now ;-)
       
NOTES :

        Now I have to discover if its possible to get more devices (aka BT KIVIO Headset) running at the same time on same dongle.

        The headset work fine in exclusive mode (BR speaker excluded). 

Ad majora !

Print this item

  Is there a way to make a bootable clone of my Linux Lite partition?
Posted by: Lend27 - 07-14-2015, 01:00 AM - Forum: Installing Linux Lite - Replies (13)

With Mac I used Super Duper to create a bootable clone, which worked great. Simple and effective.

Is there something comparable in Linux? I looked at Clonezilla but found it to be confusing and not super intuitive.

Thanks!
Len

Print this item

  When is the next version of Linux Lite due out?
Posted by: Lend27 - 07-13-2015, 09:54 PM - Forum: On Topic - Replies (3)

And what goodies can we expect?  Smile

Len

Print this item

  [solved]no dropbox icon have to enter password every time I boot
Posted by: jim2you71 - 07-13-2015, 02:34 PM - Forum: Other - Replies (3)

Running Lite 32 bit updated on my old Toshiba laptop. Runs good and quick.

I installed dropbox from synaptic. Never have gotten an icon to show up in the tray. Now lately every time that I boot after about 30 or 45 seconds I have to enter my password so that dropbox can run.  In other computers I have always right clicked the tray icon and got to the settings.How do I get to the settings to tell it to remember my password?

Thanks

Print this item

  my hd a4tech webcam sometimes work sometimes not
Posted by: katME - 07-13-2015, 04:43 AM - Forum: Introductions - Replies (3)

i got new hd a4tech webcome the firsttime i used was working with guvc after updating, my webcam is not existing. what to do??? plz help!!!

[attachment deleted by admin, expired]

Print this item

  Cryptkeeper
Posted by: tomikaj - 07-13-2015, 02:08 AM - Forum: Other - Replies (3)

Cannot get cryptkeeper to work. There is no startup icon .... no key nor blank page.

I have been using this program for some time in Netrunner and Zorin 7 lite with no problems. But it doesn't start (with an icon) in Linux Lite 2.4 Sad

Just installed Linux Lite yesterday with no issues.

Print this item