Beta Testers wanted for Lite Series Upgrade - Click here to register interest


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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,729
» Latest member: civilmeager
» Forum threads: 9,427
» Forum posts: 62,207

Full Statistics

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

Latest Threads
5 Minute Boot
Forum: Other
Last Post: valtam
1 hour ago
» Replies: 1
» Views: 27
after install Linux Lite ...
Forum: Installing Linux Lite
Last Post: val
11-15-2025, 04:37 PM
» Replies: 10
» Views: 309
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
11-15-2025, 02:20 PM
» Replies: 19
» Views: 331
Hello!!!
Forum: Introductions
Last Post: stevef
11-15-2025, 05:35 AM
» Replies: 1
» Views: 59
No authentication when i ...
Forum: Start up and Shutdown
Last Post: stevef
11-15-2025, 05:33 AM
» Replies: 1
» Views: 60
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
11-13-2025, 11:52 PM
» Replies: 5
» Views: 432
ASUS x206HA black screen ...
Forum: Installing Linux Lite
Last Post: Doceal
11-10-2025, 09:25 AM
» Replies: 6
» Views: 907
time synchronization
Forum: Other
Last Post: LL-user
11-09-2025, 12:18 AM
» Replies: 1
» Views: 217
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,275
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 473

 
  Linux lite 3.4 64 bit update failed
Posted by: Radhika - 07-13-2018, 12:21 PM - Forum: Installing Software - Replies (3)

Hello,
I am a newbie, not familiar with code, or even terminal commands.
I tried to update the Linuxlite 3.4 64 bit by following the instructions in the help manual.
I would really appreciate any help. Thank you so much in advance.This is what I entered in the terminal:

Code:
radel-jpn@radeljpn-HP-Pavilion-dm4-Notebook-PC:~$ sudo apt-get update
[sudo] password for radel-jpn: [code]

This is the output:
[code]Hit:1 http://repo.linuxliteos.com/linuxlite citrine InRelease                 
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease                     
Get:3 http://ppa.launchpad.net/libreoffice/libreoffice-5-4/ubuntu xenial InRelease [23.8 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu xenial-security InRelease [107 kB]   
Hit:5 http://archive.canonical.com xenial InRelease                           
Ign:3 http://ppa.launchpad.net/libreoffice/libreoffice-5-4/ubuntu xenial InRelease
Hit:6 http://ppa.launchpad.net/nemh/systemback/ubuntu xenial InRelease         
Get:7 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]   
Hit:8 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu xenial InRelease
Get:9 http://us.archive.ubuntu.com/ubuntu xenial-proposed InRelease [258 kB]   
Hit:10 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu xenial InRelease       
Get:11 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Get:12 http://us.archive.ubuntu.com/ubuntu xenial-proposed/main amd64 Packages [67.3 kB]
Get:13 http://us.archive.ubuntu.com/ubuntu xenial-proposed/main i386 Packages [60.6 kB]
Get:14 http://us.archive.ubuntu.com/ubuntu xenial-proposed/main Translation-en [24.2 kB]
Get:15 http://us.archive.ubuntu.com/ubuntu xenial-proposed/universe amd64 Packages [36.7 kB]
Get:16 http://us.archive.ubuntu.com/ubuntu xenial-proposed/universe i386 Packages [31.0 kB]
Get:17 http://us.archive.ubuntu.com/ubuntu xenial-proposed/universe Translation-en [14.0 kB]
Ign:18 http://dl.google.com/linux/chrome/deb stable InRelease                 
Hit:19 http://dl.google.com/linux/chrome/deb stable Release
Fetched 838 kB in 30s (27.7 kB/s)                                             
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net/libreoffice/libreoffice-5-4/ubuntu xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 83FBA1751378B444
W: The repository 'http://ppa.launchpad.net/libreoffice/libreoffice-5-4/ubuntu xenial InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure( manpage for repository creation and user configuration details.
radel-jpn@radeljpn-HP-Pavilion-dm4-Notebook-PC:~$ ^C
radel-jpn@radeljpn-HP-Pavilion-dm4-Notebook-PC:~$ ^C
radel-jpn@radeljpn-HP-Pavilion-dm4-Notebook-PC:~$

Print this item

  Stuck again, what's wrong?
Posted by: colin - 07-13-2018, 09:50 AM - Forum: Coding - Replies (7)

I'm trying to learn Python3 from the book Learn Python 3 the Hard Way and find it hard going especially when the code keeps on displaying an error. Take for instance, exercise 20.

Code:
# ex20: Functions and Files   
   from sys import argv   
   script, input_file = argv   
   def print_all(f):       print(f.read())   
   def rewind(f):       f.seek(0)   
def print_a_line(line_count, f):       print(line_count, f.readline())   
   current_file = open(input_file)   
   print("First let's print the whole file:\n")   
   print_all(current_file)   
   print("Now let's rewind, kind of like a tape.")   
   rewind(current_file)   
   print("Let's print three lines:")   
   current_line = 1   print_a_line(current_line, current_file)   
   current_line = current_line + 1   print_a_line(current_line, current_file)   
   current_line = current_line + 1   print_a_line(current_line, current_file)
I keep getting the following error
Code:
colin@my_new_LinuxLite4.0:~$ python3 ~/python_exp/ex20.pyTraceback (most recent call last):    File "/home/colin/python_exp/ex20.py", line 7, in <module>       script, input_file = argvValueError: not enough vales to unpack (expected 2, got 1)colin@my_new_LinuxLite4.0:~$
I've come across this error on a previous exercise but sadly misplaced my notes on how to remedy the error. Can someone help me please. 

Print this item

  Opinions on how to run LL 3.8 (or 4.0) on Dell Latitude E5530 (long)
Posted by: JanetBiggar - 07-12-2018, 04:00 PM - Forum: Installing Linux Lite - Replies (11)

Let me give some back ground and also clarify my question(s):

I typically struggle to collect older laptops to take with me to South Africa for academic use with youth in my study groups.  These older laptops vary from 512 mb - 2 GB RAM and HDs from 16 GB to 300 GB.  They are usually 2005 - 2012 era  Wink

This year the accounting firm that we use, having heard about our work in SA, have very kindly and eagerly offered to provide me with laptops they are rotating out.  This occurs on an annual basis and thus should hopefully continue in future.

I do not yet have any of these computers thus don't know the exact specs however they could be either Core i3, i5 or i7; 4 GB RAM; HD 320 - 500 GB.
Once wiped I don't know if they will come with an OS on them or not.  If they have NO OS on them then these questions are a moot point as I will simply load LL 3.8 or 4.0, however if they come with Windows 7 pro or up here is my dilema:

I WANT to run Linux Lite on the computers the high school youth use as:
(a) it as been problem free so far with regards to any viruses or even other issues I have had in the past running Windows XP.
(b) it is not easy for the youth to download programs thus decreasing possible problem issues.
© can't play windows games (call me boring  Wink )

I don't think I want to dual boot - as I don't know the implication regarding viruses if also running windows (I DON"T want any unwanted problems/issues) AND I also don't want the youth deciding to boot into Windows. HOWEVER, youth that continue on to university with these laptops may ideally wish to run a Windows OS.

So IF these laptops come with a Windows OS on them my questions are:

1) Does it make sense to create a recovery ISO right from day 1 for each of the laptops and locate/document the Product Key, THEN load Linux Lite knowing that I/they can revert to Windows in future from the Recovery ISO?

2) Does a Windows Recovery ISO mean that it includes everything (OS AND Drivers) if made from and used on the same computer or even model?  I am really not interested in locating and installing drivers...

3) As long as all these computers are the same, can the same Windows ISO be used on all the laptops or will the Recovery ISO from each of the laptops be slightly different and therefore it be best to have one from and for each laptop?

4) Is there something obvious I am missing or not understanding about dual booting that would permit me to leave a Windows OS on the laptops YET would
(a) ONLY permit the user using the Linux OS?
(b) and protect from any viruses affecting the Windows OS when using LL?

I have googled about making Recovery disks, but I believe perhaps it is not as straight forward as it might appear in terms of drivers, etc. So my apologies up front for what may be very basic questions  ;D

Print this item

  Thank you!
Posted by: ian_r_h - 07-12-2018, 12:03 PM - Forum: On Topic - Replies (2)

Hi, all,

Just another thank you to everybody for such a wonderful OS and distro.

I've just successfully installed my printer without any issue whatsoever.  Smooth as silk!

What a wonderful, wonderful experience LL is!

Thank you!


Ian

Print this item

  3.8 up date problems
Posted by: Tom - 07-12-2018, 05:22 AM - Forum: Installing Software - No Replies

I had problems updating 3.8. I have now installed 4.0.

Thanks and all the best
Tom

Print this item

  update error after separate app store download - how do i remove uninstalled app
Posted by: bionicle_159 - 07-11-2018, 09:44 PM - Forum: Installing Software - Replies (2)

===========================
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.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://repository.spotify.com stable InRelease
Get:3 http://archive.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB]
Hit:4 http://archive.canonical.com bionic InRelease
Hit:5 http://repo.linuxliteos.com/linuxlite diamond InRelease
Ign:6 http://ppa.launchpad.net/noobslab/deepin-sc/ubuntu bionic InRelease
Hit:7 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu bionic InRelease
Hit:8 http://ppa.launchpad.net/teejee2008/ppa/ubuntu bionic InRelease
Hit:9 http://ppa.launchpad.net/yannubuntu/boot-repair/ubuntu bionic InRelease
Hit:10 http://repo.steampowered.com/steam precise InRelease
Err:11 http://ppa.launchpad.net/noobslab/deepin-sc/ubuntu bionic Release
  404  Not Found [IP: 91.189.95.83 80]
Get:12 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:13 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Reading package lists...
E: The repository 'http://ppa.launchpad.net/noobslab/deepin-sc/ubuntu bionic Release' does not have a Release file.

Print this item

  Hi to all - New to Linux Lite
Posted by: PRafael - 07-11-2018, 12:07 PM - Forum: Introductions - Replies (9)

Hi to all from a Portuguese living in Brazil.

It's my first Linux Lite installation (4.0) and I'm loving it.

Thank you Dev's for this great release.

Regards

Paulo

Print this item

  Cloud Backup
Posted by: hackneydave - 07-11-2018, 08:43 AM - Forum: Other - Replies (4)

Dear all - can anyone recommend a cloud backup provider / software that runs in Linux? I've been using Arq together with Amazon Web Services for my Macbook and OneDrive for my Windows machine. Thanks in advance for your help!

Print this item

  Evolution 3.8 question
Posted by: jeffneedle - 07-10-2018, 09:34 PM - Forum: Installing Software - Replies (3)

Hi. I'm using Linux Lite 3.8.  I prefer Evolution as my pim as it's comprehensive and quick.


Since the repos have Evolution version 3.18, there's a problem syncing Google contacts -- something about how Google has changed the way they allow authorization, or some such thing.  Has anyone figured out a way to get around this?  I know that much later versions of Evolution have a problem, too, and it's solved if you're using the Gnome desktop with gnome-online-accounts connecting for you.


Any help will be appreciated.  Thanks.

Print this item

  LiteShare
Posted by: CSNLinux - 07-10-2018, 08:45 PM - Forum: Other - No Replies

As far as I can see i've got all things set on my laptop and pc to let them transfer files if needed. But I can't get around the "Liteshare" login screen.
What did I miss or forget. It can't be that hard. Can it?

Print this item