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 4926 online users.
» 0 Member(s) | 4919 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Twitter, Yandex

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

 
  Experienced Apple/iPhone Users
Posted by: Scott(0) - 05-19-2018, 09:00 PM - Forum: Off Topic - Replies (8)


I use an Android phone and have very little Apple knowledge. I'm hoping some of you experienced iPhone users can help.

My mother is a member of a retirement group (70+ age range), they all have iPhones. One of the members, Rozzie, has a text messaging problem:


Situation #1
------------
If Rozzie sends a text message from her iPhone to another iPhone the text message will intermittently display only on the recipient's iPad (in the messaging application) but not in the recipient's iPhone.


Situation #2
------------
If I attempt to send Rozzie a text message from my Android phone it *always* fails. If I send Rozzie an email from my Android phone it is successful.


Is anyone familiar with these issues? Please keep in mind many of the ladies are in the 75-80 age range so any suggestions will need to be very simple.

Thanks
Scott

Print this item

  Update with tar
Posted by: CSNLinux - 05-19-2018, 07:56 PM - Forum: Installing Software - Replies (1)

I thought it was time to try something different.
Sylpheed this time.

Code:
sudo apt-get install sylpheed
did it, but at opening it told there is a newer version
downloaded the tar file (version 3.7.0)
but how to update the program from this downloaded file?

Print this item

  Movie Scenes Thread
Posted by: Mart - 05-19-2018, 05:57 PM - Forum: Off Topic - Replies (32)

https://www.youtube.com/watch?v=g-g4vCbZsDM




https://www.youtube.com/watch?v=ppGd-2nEOVQ

Print this item

  idioma de sistema
Posted by: Jose Eduardo - 05-18-2018, 08:07 PM - Forum: Spanish [Spanish] - Replies (2)

:-\ cuando instale Linux Lite 3.8 32bits elegi el idioma español pero despues cuando finalizo y se reinicio ya no estaba en español

Print this item

  Viking 1.6.2 for Garmin etrex20
Posted by: CSNLinux - 05-18-2018, 03:09 PM - Forum: Installing Software - Replies (1)

A couple of days I'm looking for some software to run on LL for managing my Garmin etrex20.

Today I stumbled on Viking. Specs and screenshots look good.
After downloading the package and running the install commands as provided, my system tells me that

Code:
checking for intltool >= 0.35.0...  found
configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.
But HOW to update this tool, it doesn't tell me

any suggestions ?

Print this item

  Project - UK Thunderball killa / Open Source donation Builder
Posted by: bitsnpcs - 05-18-2018, 02:49 PM - Forum: Coding - Replies (1)

Hello,

adjusted Lotto killas so it works for the UK Thunderball draw.

[Image: thunder.png]

Screenshot of Thunderball number maker running on Linux Lite in terminal and its code in Gedit.
This will pick your 5 number choices from the 39, and then pick your 1 Thunderball number from the 14 numbers.
It will also give you real life choices to make (interactive)

Here is the code -

Code:
from random import *

thunderchoices = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]

thunderball = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]

# Picks 5 numbers from the choices
x = sample(thunderchoices, 5)

# Picks your thunderball
y = sample(thunderball, 1)   

print x
print y

print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")

Copy/paste in to Leafpad document in Home folder and save as thunder.py


Hold down Ctrl and Alt then press t (Ctrl+Alt+t)
Copy/paste or type into terminal -

Code:
python thunder.py

Hope you enjoy reading this.

Print this item

  Project - UK & EU Lottery killas / Open Source donation builders
Posted by: bitsnpcs - 05-18-2018, 12:38 PM - Forum: Coding - Replies (23)

removed friendliness, it is off topic here Admin says.




[Image: lot.png]

UK lottery random number picker, showing the Python code, and the successful running of this in Linux Lite Terminal.

Here is the code -

Code:
from random import *
lottochoices = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]

# Picks 6 lotto numbers from the choices
x = sample(lottochoices, 6)
print x

print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")

Copy/paste this into a leafpad file in your Home Directory and name this file lot.py

To run the file do -
Hold down Ctrl + Alt and press t (Ctrl+Alt+t)
Copy/paste or type in to your terminal

Code:
python lot.py

The output will be of the form shown in the above screenshot, that is 6 numbers randomly picked from the 59 as you would do on a lottery ticket in UK.
Then choose your options in real life (interactive)


EU Lottery picker  -

[Image: eulot.png]

EU lottery screenshot, showing Python code and the successful running of this in Linux Lite terminal.
This will pick from the 50 numbers your 5 numbers.
It will also pick from the 12 numbers your 2 lucky star numbers.
It will also output text with lifestyle options (interactivity)

Here is the code -
Code:
from random import *

euchoices = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50]

luckystars = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]

# Picks 5 lotto numbers from the choices
x = sample(euchoices, 5)

# Picks your lucky stars
y = sample(luckystars, 2)   

print x
print y

print ("You have Options - " "\nDonate a percentage of any wins to your favorite project" "\nDonate the stake instead to your favorite project")

Copy/paste this into a leafpad file in your Home Directory and name this file eulot.py

To run the file do -
Hold down Ctrl + Alt and press t (Ctrl+Alt+t)
Copy/paste or type in to your terminal


Code:
python eulot.py

I hope it was interesting to read.

Print this item

  Linux Lite 4.0
Posted by: barnaby - 05-17-2018, 07:52 AM - Forum: Suggestions and Feedback - Replies (37)

The new version of Linux Lite is due out soon. It is based on Ubuntu 18.04 and uses the Xfce desktop manager. I regularly read posts from https://www.dedoimedo.com/, which I find very informative. Recently he has been looking at Ubuntu 18.04 and various distros which are using it. The most recent is about the latest version of Xubuntu, which uses Xfce as the desktop manager. I think that people on this list would find his comments interesting. Especially the developers.

Just a suggestion.

Print this item

  Lite OS
Posted by: tomg54 - 05-17-2018, 03:42 AM - Forum: On Topic - Replies (1)

I may be posting in the wrong thread, but, Lite got me away from windows.  I tried Ubuntu 10.04 years ago, it worked, but, as a 50 something, why bother?  My next was Lite 2.0.  Dell desktop from 2004, Not 1 problem. Currently a dell laptop from 2.0 till 3.8. Amazing work by these folks. Dell 1545, I have tried over 20 distros and all have nagging issues from 1st install.  Lie, Never. Thanks for your efforts.  BTW, I have 4.0 beta on a seperate HDD, no issues as of yet. Not real fond of the themeing, but I have already adapted it to my own with, again, no issues.  3 years on linux, in spite of my experimenting, it has NEVER crashed or failed to boot on a laptop from 2009.  64 year old guy here.  Electronics tech since the tube days. Again, Thanks.  Dell 1545, 4gbs ram, t9600 CPU. It had 3 Gbs and a t4200 CPU.

Print this item

  update error
Posted by: George Havlovic - 05-16-2018, 11:34 PM - Forum: Installing Software - Replies (2)

please email me [email protected]


===========================
Install Updates Error log
===========================
Install Updates could not fetch the package cache information lists.
Go to https://www.linuxliteos.com/forums/ and paste the log below into a new or existing thread for assistance.

============ Log ===========

Hit:1 http://archive.canonical.com xenial InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Hit:3 http://linux.teamviewer.com/deb stable InRelease
Ign:4 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial InRelease
Hit:5 http://us.archive.ubuntu.com/ubuntu xenial-security InRelease
Hit:6 http://linux.teamviewer.com/deb preview InRelease
Hit:7 http://repository.spotify.com stable InRelease
Hit:8 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:9 http://us.archive.ubuntu.com/ubuntu xenial-proposed InRelease
Hit:10 http://ppa.launchpad.net/nemh/systemback/ubuntu xenial InRelease
Hit:11 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease
Hit:12 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu xenial InRelease
Hit:13 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu xenial InRelease
Hit:14 http://repo.linuxliteos.com/linuxlite citrine InRelease
Ign:15 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial Release
Ign:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Ign:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Ign:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Ign:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Ign:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Err:16 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main i386 Packages
  404  Not Found
Ign:17 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main all Packages
Ign:18 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en_US
Ign:19 http://ppa.launchpad.net/fta/gnome3/ubuntu xenial/main Translation-en
Reading package lists...
W: The repository 'http://ppa.launchpad.net/fta/gnome3/ubuntu xenial Release' does not have a Release file.
E: Failed to fetch http://ppa.launchpad.net/fta/gnome3/ubun...6/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

Print this item