| Welcome, Guest |
You have to register before you can post on our site.
|
| 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
|
|
|
| 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?
|
|
|
| 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 ?
|
|
|
| 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]](https://preview.ibb.co/mfodty/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 -
Hope you enjoy reading this.
|
|
|
| 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]](https://preview.ibb.co/hfQrfd/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
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]](https://preview.ibb.co/bRo2Ld/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
I hope it was interesting to read.
|
|
|
| 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.
|
|
|
| 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.
|
|
|
|