| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1765 online users. » 1 Member(s) | 1761 Guest(s) Baidu, Bing, Google, prestigeoakvillepr
|
| Latest Threads |
after install Linux Lite ...
Forum: Installing Linux Lite
Last Post: val
9 hours ago
» Replies: 5
» Views: 96
|
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
10 hours ago
» Replies: 2
» Views: 59
|
Problem updating lite 7.6...
Forum: Updates
Last Post: FilippoMo
Yesterday, 03:57 PM
» Replies: 4
» Views: 320
|
ASUS x206HA black screen ...
Forum: Installing Linux Lite
Last Post: Doceal
11-10-2025, 09:25 AM
» Replies: 6
» Views: 824
|
time synchronization
Forum: Other
Last Post: LL-user
11-09-2025, 12:18 AM
» Replies: 1
» Views: 173
|
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,165
|
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 412
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 7,210
|
My worries
Forum: Installing Linux Lite
Last Post: stevef
11-01-2025, 03:44 PM
» Replies: 1
» Views: 223
|
nstall Updates - Could n...
Forum: Updates
Last Post: stevef
10-30-2025, 10:21 PM
» Replies: 5
» Views: 467
|
|
|
| Fully upgradeable system |
|
Posted by: minesheep - 10-03-2019, 03:40 PM - Forum: On Topic
- Replies (6)
|
 |
Why isn't it possible to upgrade from for example series 3 to series 4 while it is possible to upgrade pure ubuntu? Will LL ever get upgrade option between series?
|
|
|
| Dual boot on an Asus E406SA |
|
Posted by: pelouk - 10-03-2019, 10:06 AM - Forum: On Topic
- Replies (18)
|
 |
I've just been asked [color=rgb(0, 0, 0)][/color] [color=rgb(0, 0, 0)]by a friend who is interested in installing LL [/color] an Asus E406SA and wants to know if this is possible. The laptop is marketed as a Cloudbook and runs Windows 10 S - i.e. the so-called stripped-down version of W 10. The machine is 64 bit with 4gb RAM and a fixed hard disk of 64Gb.
Has anyone had experience with this? Thoughts?
|
|
|
| Gimp Update Error 4.x InRelease changed its Label value from gimp to gimp stable |
|
Posted by: valtam - 10-02-2019, 01:01 AM - Forum: Security & Bug Fixes
- Replies (19)
|
 |
Level: Serious
Affects: Everyone on Series 4.x only that still has the Gimp PPA.
If you get the following error with Install Updates:
Code: ===========================
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://mirror.nl.leaseweb.net/ubuntu bionic InRelease
Hit:2 http://mirror.nl.leaseweb.net/ubuntu bionic-security InRelease
Hit:3 http://mirror.koddos.net/linuxlite diamond InRelease
Hit:4 http://mirror.nl.leaseweb.net/ubuntu bionic-updates InRelease
Hit:5 http://mirror.nl.leaseweb.net/ubuntu bionic-backports InRelease
Hit:6 https://repo.skype.com/deb stable InRelease
Hit:8 http://ppa.launchpad.net/teejee2008/ppa/ubuntu bionic InRelease
Hit:9 http://archive.canonical.com/ubuntu bionic InRelease
Get:7 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu bionic InRelease [15,4 kB]
Reading package lists...
E: Repository 'http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu bionic InRelease' changed its 'Label' value from 'gimp' to 'gimp stable'
Apply the following fix:
Open a Terminal, do:
Code: sudo apt-get --allow-releaseinfo-change update
ignore any errors relating to gimp.
Now run Install Updates as per usual.
|
|
|
| Custom Command Line Recycle Bin |
|
Posted by: jack action - 10-01-2019, 12:47 AM - Forum: Scripting and Bash
- Replies (1)
|
 |
I've made a script to put a file or folder into a recycle bin instead of a deleting it with rm (which could be problematic if you make an error).
In a file called usr/bin/trash, I've put the following:
Code: #!/bin/bash
# move a file or folder to a __trash__ folder (within the same directory)
if [ "$1" = "" ]; then
echo "You need a file or folder name.";
exit 1;
elif [ "$1" = "/" ]; then
echo 'You cannot put "/" in trash.';
exit 1;
fi
trashParentDir="$(dirname $1)";
mkdir -p "$trashParentDir/__trash__";
mv -vft "$trashParentDir/__trash__" "$1";
exit 0;
Then I created 2 aliases:
Code: alias rm="trash"
alias empty-trash="sudo find / -depth -type d -name \"__trash__\" -exec rm -r '{}' ';'"
When using rm, you actually put a file or folder into a __trash__ folder within the same directory. (Note: it will overwrite a pre-existing file of the same name previously 'deleted')
In case of a mistake, just move the file out of the __trash__ folder.
When using empty-trash, you delete all __trash__ folders on the computer. You need root privilege to do so.
You could make a Cron job to empty-trash regularly.
|
|
|
| Linux Lite Updates |
|
Posted by: jack action - 09-30-2019, 11:06 PM - Forum: Suggestions and Feedback
- Replies (4)
|
 |
Some feedback for the program Linux Lite Updates (LLU) on LL 4.4.
I encounter a special case where I had to answer a question before updating and, of course, the program couldn't handle it, so it ended without updating. I ended up doing a 'sudo apt update' on the terminal with the following output (the question I answered is on line 16):
Code: Hit:1 http://us.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://repo.linuxliteos.com/linuxlite diamond InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu bionic-security InRelease
Hit:4 http://archive.canonical.com/ubuntu bionic InRelease
Hit:5 http://ppa.launchpad.net/notepadqq-team/notepadqq/ubuntu bionic InRelease
Hit:6 http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/ubuntu bionic InRelease
Hit:7 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:8 http://us.archive.ubuntu.com/ubuntu bionic-backports InRelease
Ign:9 http://downloads.mariadb.com/MaxScale/2.2/ubuntu bionic InRelease
Hit:10 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu bionic InRelease
Get:11 http://downloads.mariadb.com/Tools/ubuntu bionic InRelease [1,464 B]
Hit:12 http://ppa.launchpad.net/teejee2008/ppa/ubuntu bionic InRelease
Hit:13 http://downloads.mariadb.com/MaxScale/2.2/ubuntu bionic Release
E: Repository 'http://downloads.mariadb.com/Tools/ubuntu bionic InRelease' changed its 'Origin' value from 'MariaDB Enterprise' to 'MariaDB Enterprise Tools'
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.
Do you want to accept these changes and continue updating from this repository? [y/N] y
Get:14 http://downloads.mariadb.com/Tools/ubuntu bionic/main amd64 Packages [1,502 B]
Fetched 2,966 B in 24s (123 B/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
16 packages can be upgraded. Run 'apt list --upgradable' to see them.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/ubuntu bionic InRelease' doesn't support architecture 'i386'
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://downloads.mariadb.com/Tools/ubuntu bionic InRelease' doesn't support architecture 'i386'
Afterwards, I was able to upgrade the 16 packages with LLU.
|
|
|
|