| Welcome, Guest |
You have to register before you can post on our site.
|
| 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:~$
|
|
|
| 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.
|
|
|
| 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
|
|
|
| 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!
|
|
|
| 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.
|
|
|
| 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?
|
|
|
|