| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,865
» Latest member: asabinney
» Forum threads: 9,445
» Forum posts: 62,329
Full Statistics
|
| Online Users |
There are currently 1357 online users. » 0 Member(s) | 1352 Guest(s) Applebot, Baidu, Bing, Google, Yandex
|
| Latest Threads |
Not Able to Install Googl...
Forum: Installing Software
Last Post: Orson_Yancey
10 hours ago
» Replies: 17
» Views: 768
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: SharkyEXE
Yesterday, 12:24 PM
» Replies: 24
» Views: 11,359
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: SharkyEXE
Yesterday, 08:10 AM
» Replies: 0
» Views: 29
|
Cant find up-to-date driv...
Forum: Video Cards
Last Post: justsumrandomcreture
01-13-2026, 02:18 AM
» Replies: 0
» Views: 84
|
update error - PPA (stace...
Forum: Updates
Last Post: stevef
01-12-2026, 11:19 AM
» Replies: 1
» Views: 110
|
trying to update (while) ...
Forum: Installing Linux Lite
Last Post: stevef
01-11-2026, 08:27 AM
» Replies: 1
» Views: 107
|
Troubles installing 7.6 o...
Forum: Installing Linux Lite
Last Post: stevef
01-09-2026, 01:59 PM
» Replies: 3
» Views: 242
|
redshift-gtk
Forum: Other
Last Post: di0lh0
01-09-2026, 01:31 AM
» Replies: 1
» Views: 151
|
Linux Lite 7.8 RC1 Releas...
Forum: Release Announcements
Last Post: sqwuade
01-08-2026, 08:01 PM
» Replies: 23
» Views: 4,244
|
why that change in system...
Forum: Installing Linux Lite
Last Post: valtam
01-02-2026, 11:49 PM
» Replies: 3
» Views: 539
|
|
|
| Update fail |
|
Posted by: thoughtinstinct - 03-28-2017, 12:51 PM - Forum: Installing Software
- Replies (3)
|
 |
Hello
I tried updating today and it showed me there are updates available but then an error occurred and was pointed to /var/logs/llupdates.log
Code: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
I tried again to look if there are updates available but it couldn't fetch updates. Tried one more time and now it says my system is up to date and lite widget shows "Your system was recently updated" although no update has been done recently.( for 3 days )
|
|
|
| Time/date script |
|
Posted by: anon222 - 03-28-2017, 01:48 AM - Forum: Linux Lite Software Development
- Replies (2)
|
 |
Hello agan Linux Lite community. It's been a long time. I had a hard time remembering the forum login password. ;D
Found this small remastersys-timedateset script by Tony Brijeski and switched it from yad to zenity.
Sets the time and date settings and syncs to hardware clock.
I hope you find it usefull.
Code: #!/bin/bash
# Time, Date and Timezone configuration utility for Linux Lite
# Fork of Date and Time Setting Tool Copyright 2009,2011 by Tony Brijeski under the GPL V2
# TODO: add timezone settings, test on a live dvd, use image-list for the main dialog,
DIALOG="`which zenity` --width 400"
TITLE="--window-icon=/usr/share/icons/hicolor/24x24/apps/gnome-panel-clock.png --print-partial --title="
TEXT="--text="
ENTRY="--entry "
ENTRYTEXT="--entry-text "
MENU="--list --print-column=1 --column=Pick --column=Info"
YESNO="--question "
MSGBOX="--info "
SCALE="--scale "
PASSWORD="--entry --hide-text "
TITLETEXT="Linux Lite Date and Time Setting Tool"
if [ $EUID -ne 0 ]; then
gksu -m '
<b>Lite Time requires Administrative privileges</b>
Please enter your password to continue.' bash $0
exit
else :
fi
while [ "$SETCHOICE" != "Exit" ]; do
DAY="`date +%d`"
MONTH="`date +%m`"
YEAR="`date +%Y`"
MINUTE="`date +%M`"
HOUR="`date +%H`"
SETCHOICE=`$DIALOG --height 300 $TITLE"$TITLETEXT" $MENU $TEXT"Set Year Date and Time Tool\n\nTime=$HOUR:$MINUTE\nDate=$MONTH-$DAY-$YEAR\n\n" Exit "Quit" SETTIME "Set Current Time" SETDATE "Set Current Date"`
SETCHOICE=`echo $SETCHOICE | cut -d "|" -f 1`
if [ "$SETCHOICE" = "SETTIME" ]; then
HOUR="`date +%H`"
HOUR=`echo $HOUR | sed -e 's/^0//g'`
SETHOUR=`$DIALOG $TITLE"$TITLETEXT" $SCALE --value=$HOUR --min-value=0 --max-value=23 $TEXT"Move the slider to the correct Hour"`
if [ "$?" = "0" ]; then
if [ "${#SETHOUR}" = "1" ]; then
SETHOUR="0$SETHOUR"
fi
MINUTE="`date +%M`"
MINUTE=`echo $MINUTE | sed -e 's/^0//g'`
fi
SETMINUTE=`$DIALOG $TITLE"$TITLETEXT" $SCALE --value=$MINUTE --min-value=0 --max-value=59 $TEXT"Move the slider to the correct Minute"`
if [ "$?" = "0" ]; then
if [ "${#SETMINUTE}" = "1" ]; then
SETMINUTE="0$SETMINUTE"
fi
date $MONTH$DAY$SETHOUR$SETMINUTE$YEAR
hwclock --systohc
fi
fi
if [ "$SETCHOICE" = "SETDATE" ]; then
DAY="`date +%d`"
DAY=`echo $DAY | sed -e 's/^0//g'`
MONTH="`date +%m`"
MONTH=`echo $MONTH | sed -e 's/^0//g'`
YEAR="`date +%Y`"
SETYEAR=`$DIALOG $TITLE"$TITLETEXT" $SCALE --value=$YEAR --min-value=2000 --max-value=2020 $TEXT"Move the slider to the correct Year"`
if [ "$?" = "0" ]; then
SETMONTH=`$DIALOG $TITLE"$TITLETEXT" $SCALE --value=$MONTH --min-value=1 --max-value=12 $TEXT"Move the slider to the correct Month"`
if [ "$?" = "0" ]; then
if [ "${#SETMONTH}" = "1" ]; then
SETMONTH="0$SETMONTH"
fi
SETDAY=`$DIALOG $TITLE"$TITLETEXT" $SCALE --value=$DAY --min-value=1 --max-value=31 $TEXT"Move the slider to the correct Day"`
if [ "$?" = "0" ]; then
if [ "${#SETDAY}" = "1" ]; then
SETDAY="0$SETDAY"
fi
MINUTE="`date +%M`"
HOUR="`date +%H`"
date $SETMONTH$SETDAY$HOUR$MINUTE$SETYEAR
hwclock --systohc
fi
fi
fi
fi
done
exit 0
|
|
|
| Google Earth LL3.2 64bit |
|
Posted by: newtusmaximus - 03-27-2017, 10:47 PM - Forum: Installing Software
- Replies (2)
|
 |
Just converting the HP desktop to LL3.2 64bit.
Desperately need Google Earth to work. Had it working on LL2.8 32bit.
Have been faffing around for more than an hour trying various online suggestions - all to no avail.
Problem seem to hinge on lsb-core and its other family; mta etc.
Appreciate that LL does not support this but need to find a way around the problem for work.
TIA
|
|
|
| IRC |
|
Posted by: torolite35 - 03-27-2017, 05:00 PM - Forum: Installing Software
- Replies (7)
|
 |
Good afternoon friends of LL
I would like to know how to install IRC
I have stored something called irssi but I do not know how it is configured and the
Information on the internet is very contradictory. Could someone help me?
Thank you very much
|
|
|
| Linux Lite and KDE? |
|
Posted by: PinStripe - 03-27-2017, 04:09 AM - Forum: On Topic
- Replies (11)
|
 |
(Wasn't sure where to put this, but...)
I wish Linux Lite would be available in a KDE version as well.
I really am a KDE fan and love all the options it offers. Plus,
the KDE Connect works great with connecting your phone
to your desktop. I know you can do it on the XFCE desktop,
but i have had issues. It's not reliable.
Anyway, have you had any thoughts of adding another GUI
to this distro?
|
|
|
| Shell script returning divide by zero error |
|
Posted by: Tegid - 03-26-2017, 08:06 PM - Forum: Suggestions and Feedback
- Replies (2)
|
 |
'lite-tweaks-super' returning the following error:
Code: :~/$ lite-tweaks-super
/usr/bin/lite-tweaks-super: line 812: ((: PERCENTAGE = 100 * 1 / 0 : division by 0 (error token is "0 ")
The 'while read line' loop should not in theory at least by the looks execute any iterations if '$TOTAL_LINES' is zero, my scripting is largely POSIX (blame BSD) and not Bash so off the top of my head I'm not entirely sure what is going on here:
Code: ## Arrays execution
run_icon=/usr/share/icons/Faenza/actions/32/system-run.png
x=0
for k in "${!ARRAYC}"; do x=$(( $x + 1 )); done # Get the total number of selected items in the array
TOTAL_LINES=$x
printf '%s \n' "${ARRAYC}"|
while read line
do
$line # Execute functions one by one
if [ $? = 1 ]; then
zenity --info --title=" Lite Tweaks" --text="Error:\n${line}"
fi
let i++
(( PERCENTAGE = 100 \* ${i} / ${TOTAL_LINES} ))
echo "$PERCENTAGE"
if [ "$PERCENTAGE" == "100" ]; then
echo "#Done"
sleep 1
fi
|
|
|
| Administrator log in assumed by lite-* admin. tools |
|
Posted by: Tegid - 03-26-2017, 07:01 PM - Forum: Suggestions and Feedback
- Replies (5)
|
 |
I will usually on first boot and while installing updates (from a console log in) use the administrator graphical log in to create a desktop user, which then becomes my default log in from second boot onwards (the policy being not to type an administrator password during an X11 session if at all possible, logging in to an administrator log in only from a console).
Now while applications like 'Install/Remove Software' and 'Users and Groups' correctly prompt for the password of the administrator log in even when logged in as a desktop user (they seem to be able to automatically deduce this somehow!), lite-* tools requiring an admin. log in assume an administrator is running the program in the first instance and duly prompt only for a password -- being logged in as a desktop user (without even any sudo rights) the program duly refuses to run.
I can however run lite-* admin. programs from a terminal as a desktop user, logging in as administrator with 'su -l <admin. user>' in the first instance, however it does leave the password exposed to key loggers (although running xterm selecting the 'Secure Keyboard' option is a way around this).
|
|
|
| Num. lock default, install and first boot |
|
Posted by: Tegid - 03-26-2017, 06:34 PM - Forum: Suggestions and Feedback
- Replies (6)
|
 |
A default setting of number lock switched on when installing and then on first boot is probably OK for a keyboard with a separate number pad, but where the numeric keypad is embedded into the querty keyboard (typically laptops) it can be confusing for a good while (i.e., figuring out what is going on).
The default boot configuration can be set with the lite-tweak tool - the problem being knowledge of which is only serendipitously acquired.
|
|
|
| Illegal addon? (Calibre) |
|
Posted by: Tegid - 03-25-2017, 07:10 PM - Forum: Installing Software
- Replies (1)
|
 |
PlayOnLinux will install Adobe Digital Editions DRM e-book (typically library books) reader which unfortunately stopped fully working (see https://www.playonlinux.com/en/app-2671-...ns_45.html) with the introduction of EPUB v3 in ADE v4.5 (all other features remain intact).
EPUB v3 e-books with DRM can however be read with a Calibre plugin.
Would this be in breach of Linux Lite illegal plugins policy?
If not I can post a tutorial on how to do this.
|
|
|
|