You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



Lite Software - Suggestions welcomed

Author (Read 74816 times)

0 Members and 2 Guests are viewing this topic.

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #34 on: August 31, 2014, 10:33:00 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
News from my bash lab: A new version of GUI tool to install additional software. This time it is a check list with multiple selection working.
Code: [Select]
#! /bin/bash
#--------------------------------------------------------------------------------------------------------
# Name: Linux Lite Install Additional Software
# Description: A GUI tool to easily install additional software in Linux Lite.
# Authors: Misko_2083, Jerry Bezencon
# Date: Aug 27th, 2014
# Website: https://www.linuxliteos.com
#--------------------------------------------------------------------------------------------------------

ic="/usr/share/icons/zenity-llcc.png"

selection=$(zenity --window-icon="$ic" --list --checklist --width=880 --height=680 --column="Select" --column="" --column="Name" --column="Category" \
 --column="Description" --hide-column=2 \
 --text="Select the program you wish to install, then click the Install button. Sort Categories by clicking on the column." \
--title="Install Additional Software" --ok-label="Install" --cancel-label="Quit" \
"1" "/usr/scripts/trailers 2>/dev/null" "Apple Trailers Plugin" "Internet" "Watch Apple trailers in your web browser (Firefox only)" \
"2" "/usr/scripts/chrome 2>/dev/null" "Chrome Web Browser" "Internet" "Install the Google Chrome web browser" \
"3" "/usr/scripts/chromium 2>/dev/null" "Chromium Web Browser" "Internet" "Install the open-source alternative to the Google Chrome web browser" \
"4" "/usr/scripts/dropbox 2>/dev/null" "Dropbox" "Internet" "A popular cloud storage application" \
"5" "/usr/scripts/search 2>/dev/null" "File & Folder Search" "Accessories" "Easily locate files and folders in your computer" \
"6" "/usr/scripts/games 2>/dev/null" "Games Pack" "Games" "Comes with Solitaire, Chess, Mahjongg, Mines and Hearts" \
"7" "/usr/scripts/googletalk 2>/dev/null" "Google Talk Browser Plugin" "Internet" "Install this plugin to use Google Hangouts video chat" \
"8" "/usr/scripts/idev 2>/dev/null" "iDevices Manager" "Multimedia" "Manage your iDevices with Gtkpod" \
"9" "/usr/scripts/im 2>/dev/null" "Instant Messenger" "Internet" "This will install Pidgin, a multi-protocol Instant Messenging client" \
"10" "/usr/scripts/javaplugin 2>/dev/null" "Java Web Applet Plugin" "Internet" "To allow you to view java applets in your web browser" \
"11" "/usr/scripts/netflix 2>/dev/null" "Netflix" "Multimedia" "A popular streaming tv and movie service (account required)" \
"12" "/usr/scripts/keepassx 2>/dev/null" "Password Manager" "Accessories" "Installs KeePassX, an excellent password manager" \
"13" "/usr/scripts/playonlinux 2>/dev/null" "PlayOnLinux" "Cross Platform" "Easily install and use numerous games and apps designed to run with Windows" \
"14" "/usr/scripts/remote 2>/dev/null" "Remote Desktop Software" "Internet" "Installs the Remmina Remote Desktop Client for Windows (RDP) and VNC Servers" \
"15" "/usr/scripts/re 2>/dev/null" "Restricted Extras" "Multimedia" "Installs additional codecs and useful file formats that are not shipped by default" \
"16" "/usr/scripts/skype 2>/dev/null" "Skype" "Internet" "A popular audio and video chat application" \
"17" "/usr/scripts/teamviewer 2>/dev/null" "Teamviewer" "Internet" "Installs Teamviewer Remote Desktop Support software" \
"18" "/usr/scripts/deluge 2>/dev/null" "Torrent Software" "Internet" "Installs the Deluge Torrent client software" \
"19" "/usr/scripts/openshot 2>/dev/null" "Video Editing Software" "Multimedia" "Installs Openshot, a simple to use yet powerful video editor for linux" \
"20" "/usr/scripts/virtualbox 2>/dev/null" "VirtualBox" "System" "Virtualbox allows you to install other operating systems like Windows from within Linux Lite" \
"21" "/usr/scripts/weather 2>/dev/null" "Weather Monitor" "System Tray" "This will install a Weather Monitor Plugin for your tray" \
"22" "/usr/scripts/guvcview 2>/dev/null" "Webcam Software" "Internet" "Guvcview, webcam software for your computer" \
"23" "/usr/scripts/wine 2>/dev/null" "Wine" "Cross Platform" "Wine allows you to install and run some Windows programs and games on Linux Lite" \
"24" "/usr/scripts/xbmc 2>/dev/null" "XBMC" "Multimedia" "This will install the XBMC Media Center" )

eval "$selection"

« Last Edit: September 01, 2014, 06:11:49 AM by misko_2083 »
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #33 on: August 29, 2014, 06:23:09 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
You are welcome.  ;)
What about that GUI for the updates?

It works just fine, but requires some detailed work to account for times when the user is prompted for interaction to make a choice eg. lsb_release and issue file changes.
That looks complicated. :)
By the way I've tried Additional Software install GUI with checklist. It's working when a single item is selected.
It would be nice if multiple selections would work.
Code: [Select]
#! /bin/bash
#--------------------------------------------------------------------------------------------------------
#Name: Linux Lite Additional Software Install (GUI version)
# Description: A GUI tool to easily install additional software in Linux Lite.
# Authors: Misko_2083, Jerry Bezencon
# Date: Aug 29th, 2014
# Website: https://www.linuxliteos.com
#--------------------------------------------------------------------------------------------------------
ic="/usr/share/icons/zenity-llcc.png"

selection=$(zenity --window-icon="$ic" --list --checklist --width=860 --height=680 --column="Check" --column="Name" --column="Category" \
 --column="Description" --text="Click on the program you wish to install, then click the Install button. Sort Categories by clicking on the column." --title="Install Additional Software" --ok-label="Install" --cancel-label="Quit" \
"1" "Apple Trailers Plugin" "Internet" "Watch Apple trailers in your web browser (Firefox only)" \
"2" "Chrome Web Browser" "Internet" "Install the Google Chrome web browser" \
"3" "Chromium Web Browser" "Internet" "Install the open-source alternative to the Google Chrome web browser" \
"4" "Dropbox" "Internet" "A popular cloud storage application" \
"5" "File & Folder Search" "Accessories" "Easily locate files and folders in your computer" \
"6" "Games Pack" "Games" "Comes with Solitaire, Chess, Mahjongg, Mines and Hearts" \
"7" "Google Talk Browser Plugin" "Internet" "Install this plugin to use Google Hangouts video chat" \
"8" "iDevices Manager" "Multimedia" "Manage your iDevices with Gtkpod" \
"9" "Instant Messenger" "Internet" "This will install Pidgin, a multi-protocol Instant Messenging client" \
"10" "Java Web Applet Plugin" "Internet" "To allow you to view java applets in your web browser" \
"11" "Netflix" "Multimedia" "A popular streaming tv and movie service (account required)" \
"12" "Password Manager" "Accessories" "Installs KeePassX, an excellent password manager" \
"13" "PlayOnLinux" "Cross Platform" "Easily install and use numerous games and apps designed to run with Windows" \
"14" "Remote Desktop Software" "Internet" "Installs the Remmina Remote Desktop Client for Windows (RDP) and VNC Servers" \
"15" "Restricted Extras" "Multimedia" "Installs additional codecs and useful file formats that are not shipped by default" \
"16" "Skype" "Internet" "A popular audio and video chat application" \
"17" "Teamviewer" "Internet" "Installs Teamviewer Remote Desktop Support software" \
"18" "Torrent Software" "Internet" "Installs the Deluge Torrent client software" \
"19" "Video Editing Software" "Multimedia" "Installs Openshot, a simple to use yet powerful video editor for linux" \
"20" "VirtualBox" "System" "Virtualbox allows you to install other operating systems like Windows from within Linux Lite" \
"21" "Weather Monitor" "System Tray" "This will install a Weather Monitor Plugin for your tray" \
"22" "Webcam Software" "Internet" "Guvcview, webcam software for your computer" \
"23" "Wine" "Cross Platform" "Wine allows you to install and run some Windows programs and games on Linux Lite" \
"24" "XBMC" "Multimedia" "This will install the XBMC Media Center" )


case "$selection" in
"Apple Trailers Plugin")/usr/scripts/trailers 2>/dev/null ;;
"Chrome Web Browser")/usr/scripts/chrome 2>/dev/null ;;
"Chromium Web Browser")/usr/scripts/chromium 2>/dev/null ;;
"Dropbox")/usr/scripts/dropbox 2>/dev/null ;;
"File & Folder Search")/usr/scripts/search 2>/dev/null ;;
"Games Pack")/usr/scripts/games 2>/dev/null ;;
"Google Talk Browser Plugin")/usr/scripts/googletalk 2>/dev/null ;;
"iDevices Manager")/usr/scripts/idev 2>/dev/null ;;
"Instant Messenger")/usr/scripts/im 2>/dev/null ;;
"Java Web Applet Plugin")/usr/scripts/javaplugin 2>/dev/null ;;
"Netflix")/usr/scripts/netflix 2>/dev/null ;;
"Password Manager")/usr/scripts/keepassx 2>/dev/null ;;
"PlayOnLinux")/usr/scripts/playonlinux 2>/dev/null ;;
"Remote Desktop Software")/usr/scripts/remote 2>/dev/null ;;
"Restricted Extras")/usr/scripts/re 2>/dev/null ;;
"Skype")/usr/scripts/skype 2>/dev/null ;;
"Teamviewer")/usr/scripts/teamviewer 2>/dev/null ;;
"Torrent Software")/usr/scripts/deluge 2>/dev/null ;;
"Video Editing Software")/usr/scripts/openshot 2>/dev/null ;;
"VirtualBox")/usr/scripts/virtualbox 2>/dev/null ;;
"Weather Monitor")/usr/scripts/weather 2>/dev/null ;;
"Webcam Software")/usr/scripts/guvcview 2>/dev/null ;;
"Wine")/usr/scripts/wine 2>/dev/null ;;
"XBMC")/usr/scripts/xbmc 2>/dev/null ;;
esac
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #32 on: August 29, 2014, 06:12:12 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
You are welcome.  ;)
What about that GUI for the updates?

It works just fine, but requires some detailed work to account for times when the user is prompted for interaction to make a choice eg. lsb_release and issue file changes.
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #31 on: August 29, 2014, 06:09:32 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
You are welcome.  ;)
What about that GUI for the updates?
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #30 on: August 29, 2014, 05:55:42 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Yup, thank you misko, I'll put this in the next version of lite-software :)

 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #29 on: August 29, 2014, 05:49:50 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
A radio list would be better, with your script selecting to install Chrome throws this error:

Code: [Select]
jerry@lappy:~$ ./ups
./ups: line 49: syntax error near unexpected token `"Multimedia"'
./ups: line 49: `"Netflix" "Multimedia")/usr/scripts/netflix 2>/dev/null ;;'
jerry@lappy:~$
"Multimedia" should be removed. :)
I fixed it. It's working now.
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #28 on: August 29, 2014, 05:31:31 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
A radio list would be better, with your script selecting to install Chrome throws this error:

Code: [Select]
jerry@lappy:~$ ./ups
./ups: line 49: syntax error near unexpected token `"Multimedia"'
./ups: line 49: `"Netflix" "Multimedia")/usr/scripts/netflix 2>/dev/null ;;'
jerry@lappy:~$
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #27 on: August 29, 2014, 05:00:14 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
This is the same GUI  with radio buttons.
Code: [Select]
#! /bin/bash
#--------------------------------------------------------------------------------------------------------
#Name: Linux Lite Additional Software Install (GUI version)
# Description: A GUI tool to easily install additional software in Linux Lite.
# Authors: Misko_2083, Jerry Bezencon
# Date: Aug 29th, 2014
# Website: https://www.linuxliteos.com
#--------------------------------------------------------------------------------------------------------
ic="/usr/share/icons/zenity-llcc.png"

selection=$(zenity --window-icon="$ic" --list --radiolist --width=860 --height=680 --column="" --column="Name" --column="Category" \
 --column="Description" --text="Click on the program you wish to install, then click the Install button. Sort Categories by clicking on the column." --title="Install Additional Software" --ok-label="Install" --cancel-label="Quit" \
"1" "Apple Trailers Plugin" "Internet" "Watch Apple trailers in your web browser (Firefox only)" \
"2" "Chrome Web Browser" "Internet" "Install the Google Chrome web browser" \
"3" "Chromium Web Browser" "Internet" "Install the open-source alternative to the Google Chrome web browser" \
"4" "Dropbox" "Internet" "A popular cloud storage application" \
"5" "File & Folder Search" "Accessories" "Easily locate files and folders in your computer" \
"6" "Games Pack" "Games" "Comes with Solitaire, Chess, Mahjongg, Mines and Hearts" \
"7" "Google Talk Browser Plugin" "Internet" "Install this plugin to use Google Hangouts video chat" \
"8" "iDevices Manager" "Multimedia" "Manage your iDevices with Gtkpod" \
"9" "Instant Messenger" "Internet" "This will install Pidgin, a multi-protocol Instant Messenging client" \
"10" "Java Web Applet Plugin" "Internet" "To allow you to view java applets in your web browser" \
"11" "Netflix" "Multimedia" "A popular streaming tv and movie service (account required)" \
"12" "Password Manager" "Accessories" "Installs KeePassX, an excellent password manager" \
"13" "PlayOnLinux" "Cross Platform" "Easily install and use numerous games and apps designed to run with Windows" \
"14" "Remote Desktop Software" "Internet" "Installs the Remmina Remote Desktop Client for Windows (RDP) and VNC Servers" \
"15" "Restricted Extras" "Multimedia" "Installs additional codecs and useful file formats that are not shipped by default" \
"16" "Skype" "Internet" "A popular audio and video chat application" \
"17" "Teamviewer" "Internet" "Installs Teamviewer Remote Desktop Support software" \
"18" "Torrent Software" "Internet" "Installs the Deluge Torrent client software" \
"19" "Video Editing Software" "Multimedia" "Installs Openshot, a simple to use yet powerful video editor for linux" \
"20" "VirtualBox" "System" "Virtualbox allows you to install other operating systems like Windows from within Linux Lite" \
"21" "Weather Monitor" "System Tray" "This will install a Weather Monitor Plugin for your tray" \
"22" "Webcam Software" "Internet" "Guvcview, webcam software for your computer" \
"23" "Wine" "Cross Platform" "Wine allows you to install and run some Windows programs and games on Linux Lite" \
"24" "XBMC" "Multimedia" "This will install the XBMC Media Center" )

case "$selection" in
"Apple Trailers Plugin")/usr/scripts/trailers 2>/dev/null ;;
"Chrome Web Browser")/usr/scripts/chrome 2>/dev/null ;;
"Chromium Web Browser")/usr/scripts/chromium 2>/dev/null ;;
"Dropbox")/usr/scripts/dropbox 2>/dev/null ;;
"File & Folder Search")/usr/scripts/search 2>/dev/null ;;
"Games Pack")/usr/scripts/games 2>/dev/null ;;
"Google Talk Browser Plugin")/usr/scripts/googletalk 2>/dev/null ;;
"iDevices Manager")/usr/scripts/idev 2>/dev/null ;;
"Instant Messenger")/usr/scripts/im 2>/dev/null ;;
"Java Web Applet Plugin")/usr/scripts/javaplugin 2>/dev/null ;;
"Netflix")/usr/scripts/netflix 2>/dev/null ;;
"Password Manager")/usr/scripts/keepassx 2>/dev/null ;;
"PlayOnLinux")/usr/scripts/playonlinux 2>/dev/null ;;
"Remote Desktop Software")/usr/scripts/remote 2>/dev/null ;;
"Restricted Extras")/usr/scripts/re 2>/dev/null ;;
"Skype")/usr/scripts/skype 2>/dev/null ;;
"Teamviewer")/usr/scripts/teamviewer 2>/dev/null ;;
"Torrent Software")/usr/scripts/deluge 2>/dev/null ;;
"Video Editing Software")/usr/scripts/openshot 2>/dev/null ;;
"VirtualBox")/usr/scripts/virtualbox 2>/dev/null ;;
"Weather Monitor")/usr/scripts/weather 2>/dev/null ;;
"Webcam Software")/usr/scripts/guvcview 2>/dev/null ;;
"Wine")/usr/scripts/wine 2>/dev/null ;;
"XBMC")/usr/scripts/xbmc 2>/dev/null ;;
esac
« Last Edit: August 29, 2014, 05:50:33 AM by misko_2083 »
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #26 on: August 27, 2014, 10:39:48 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430

« Last Edit: August 29, 2014, 04:54:41 AM by misko_2083 »
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #25 on: August 27, 2014, 06:38:01 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
Everething went well.
That last line got me confused. Then I saw sudo apt-get autoremove in the script.
Here is the log file.
llupdates.log
Code: [Select]
Ign http://ppa.launchpad.net trusty InRelease
Ign http://archive.ubuntu.com trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Ign http://archive.canonical.com trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Ign http://archive.ubuntu.com trusty-updates InRelease
Ign http://archive.canonical.com trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.canonical.com trusty Release.gpg
Ign http://archive.ubuntu.com trusty-backports InRelease
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.canonical.com trusty Release.gpg
Ign http://archive.ubuntu.com trusty-security InRelease
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.canonical.com trusty Release
Hit http://archive.ubuntu.com trusty Release.gpg
Ign http://ppa.launchpad.net trusty InRelease
Get:1 http://archive.ubuntu.com trusty-updates Release.gpg [933 B]
Hit http://archive.canonical.com trusty Release
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.ubuntu.com trusty-backports Release.gpg
Hit http://repo.linuxliteos.com beryl InRelease
Ign http://ppa.launchpad.net trusty InRelease
Get:2 http://archive.ubuntu.com trusty-security Release.gpg [933 B]
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.ubuntu.com trusty Release
Ign http://ppa.launchpad.net trusty InRelease
Get:3 http://archive.ubuntu.com trusty-updates Release [59,7 kB]
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.canonical.com trusty/partner i386 Packages
Ign http://ppa.launchpad.net trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.canonical.com trusty/partner i386 Packages
Hit http://archive.ubuntu.com trusty-backports Release
Hit http://repo.linuxliteos.com beryl/main i386 Packages
Get:4 http://archive.ubuntu.com trusty-security Release [59,7 kB]
Ign http://ppa.launchpad.net trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.ubuntu.com trusty/main i386 Packages
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.ubuntu.com trusty/restricted i386 Packages
Ign http://ppa.launchpad.net trusty InRelease
Hit http://archive.ubuntu.com trusty/universe i386 Packages
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://archive.ubuntu.com trusty/multiverse i386 Packages
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://archive.ubuntu.com trusty/main Translation-en
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://archive.ubuntu.com trusty/multiverse Translation-en
Hit http://ppa.launchpad.net trusty Release.gpg
Get:5 http://ppa.launchpad.net trusty Release.gpg [316 B]
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://archive.ubuntu.com trusty/restricted Translation-en
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Ign http://archive.canonical.com trusty/partner Translation-en_US
Hit http://archive.ubuntu.com trusty/universe Translation-en
Get:6 http://ppa.launchpad.net trusty Release.gpg [316 B]
Ign http://archive.canonical.com trusty/partner Translation-en
Hit http://ppa.launchpad.net trusty Release.gpg
Get:7 http://archive.ubuntu.com trusty-updates/main i386 Packages [297 kB]
Ign http://archive.canonical.com trusty/partner Translation-en_US
Hit http://ppa.launchpad.net trusty Release.gpg
Ign http://archive.canonical.com trusty/partner Translation-en
Get:8 http://ppa.launchpad.net trusty Release.gpg [316 B]
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Hit http://ppa.launchpad.net trusty Release.gpg
Get:9 http://archive.ubuntu.com trusty-updates/restricted i386 Packages [5820 B]
Hit http://ppa.launchpad.net trusty Release.gpg
Get:10 http://archive.ubuntu.com trusty-updates/universe i386 Packages [190 kB]
Hit http://ppa.launchpad.net trusty Release.gpg
Ign http://repo.linuxliteos.com beryl/main Translation-en_US
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty Release
Ign http://repo.linuxliteos.com beryl/main Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty Release
Get:11 http://archive.ubuntu.com trusty-updates/multiverse i386 Packages [8437 B]
Get:12 http://ppa.launchpad.net trusty Release [14,0 kB]
Hit http://archive.ubuntu.com trusty-updates/main Translation-en
Hit http://archive.ubuntu.com trusty-updates/multiverse Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-updates/restricted Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-updates/universe Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/main i386 Packages
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/restricted i386 Packages
Get:13 http://ppa.launchpad.net trusty Release [14,0 kB]
Hit http://archive.ubuntu.com trusty-backports/universe i386 Packages
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/multiverse i386 Packages
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/main Translation-en
Get:14 http://ppa.launchpad.net trusty Release [14,0 kB]
Hit http://archive.ubuntu.com trusty-backports/multiverse Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/restricted Translation-en
Hit http://ppa.launchpad.net trusty Release
Hit http://archive.ubuntu.com trusty-backports/universe Translation-en
Hit http://ppa.launchpad.net trusty Release
Get:15 http://archive.ubuntu.com trusty-security/main i386 Packages [128 kB]
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty Release
Hit http://ppa.launchpad.net trusty/main i386 Packages
Get:16 http://archive.ubuntu.com trusty-security/restricted i386 Packages [14 B]
Get:17 http://archive.ubuntu.com trusty-security/universe i386 Packages [46,7 kB]
Hit http://ppa.launchpad.net trusty/main i386 Packages
Get:18 http://archive.ubuntu.com trusty-security/multiverse i386 Packages [1398 B]
Hit http://archive.ubuntu.com trusty-security/main Translation-en
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://archive.ubuntu.com trusty-security/multiverse Translation-en
Hit http://archive.ubuntu.com trusty-security/restricted Translation-en
Hit http://archive.ubuntu.com trusty-security/universe Translation-en
Hit http://ppa.launchpad.net trusty/main i386 Packages
Get:19 http://ppa.launchpad.net trusty/main i386 Packages [29,8 kB]
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Ign http://archive.ubuntu.com trusty/main Translation-en_US
Ign http://archive.ubuntu.com trusty/multiverse Translation-en_US
Ign http://archive.ubuntu.com trusty/restricted Translation-en_US
Hit http://ppa.launchpad.net trusty/main i386 Packages
Ign http://archive.ubuntu.com trusty/universe Translation-en_US
Get:20 http://ppa.launchpad.net trusty/main i386 Packages [25,0 kB]
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Get:21 http://ppa.launchpad.net trusty/main i386 Packages [16,0 kB]
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Hit http://ppa.launchpad.net trusty/main i386 Packages
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Ign http://ppa.launchpad.net trusty/main Translation-en_US
Ign http://ppa.launchpad.net trusty/main Translation-en
Fetched 911 kB in 14s (61,4 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  fonts-opensymbol libreoffice-avmedia-backend-gstreamer libreoffice-base-core
  libreoffice-calc libreoffice-common libreoffice-core libreoffice-draw
  libreoffice-gtk libreoffice-gtk3 libreoffice-impress libreoffice-math
  libreoffice-pdfimport libreoffice-style-crystal libreoffice-style-galaxy
  libreoffice-style-hicontrast libreoffice-style-human
  libreoffice-style-oxygen libreoffice-style-sifr libreoffice-style-tango
  libreoffice-writer python3-uno uno-libs3 ure
23 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 85,4 MB of archives.
After this operation, 111 kB disk space will be freed.
Get:1 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main uno-libs3 i386 4.3.1~rc2-0ubuntu1~trusty1 [769 kB]
Get:2 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main ure i386 4.3.1~rc2-0ubuntu1~trusty1 [1786 kB]
Get:3 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-calc i386 1:4.3.1~rc2-0ubuntu1~trusty1 [6133 kB]
Get:4 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-impress i386 1:4.3.1~rc2-0ubuntu1~trusty1 [1144 kB]
Get:5 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-draw i386 1:4.3.1~rc2-0ubuntu1~trusty1 [3714 kB]
Get:6 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-gtk i386 1:4.3.1~rc2-0ubuntu1~trusty1 [272 kB]
Get:7 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-gtk3 i386 1:4.3.1~rc2-0ubuntu1~trusty1 [242 kB]
Get:8 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-common all 1:4.3.1~rc2-0ubuntu1~trusty1 [20,2 MB]
Get:9 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-pdfimport i386 1:4.3.1~rc2-0ubuntu1~trusty1 [277 kB]
Get:10 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-base-core i386 1:4.3.1~rc2-0ubuntu1~trusty1 [750 kB]
Get:11 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-math i386 1:4.3.1~rc2-0ubuntu1~trusty1 [403 kB]
Get:12 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main python3-uno i386 1:4.3.1~rc2-0ubuntu1~trusty1 [173 kB]
Get:13 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-writer i386 1:4.3.1~rc2-0ubuntu1~trusty1 [7808 kB]
Get:14 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-core i386 1:4.3.1~rc2-0ubuntu1~trusty1 [30,8 MB]
Get:15 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main fonts-opensymbol all 2:102.6+LibO4.3.1~rc2-0ubuntu1~trusty1 [157 kB]
Get:16 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-human all 1:4.3.1~rc2-0ubuntu1~trusty1 [1653 kB]
Get:17 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-galaxy all 1:4.3.1~rc2-0ubuntu1~trusty1 [1443 kB]
Get:18 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-sifr all 1:4.3.1~rc2-0ubuntu1~trusty1 [1420 kB]
Get:19 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-hicontrast all 1:4.3.1~rc2-0ubuntu1~trusty1 [773 kB]
Get:20 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-tango all 1:4.3.1~rc2-0ubuntu1~trusty1 [1630 kB]
Get:21 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-oxygen all 1:4.3.1~rc2-0ubuntu1~trusty1 [1849 kB]
Get:22 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-style-crystal all 1:4.3.1~rc2-0ubuntu1~trusty1 [1872 kB]
Get:23 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ trusty/main libreoffice-avmedia-backend-gstreamer i386 1:4.3.1~rc2-0ubuntu1~trusty1 [90,3 kB]
debconf: unable to initialize frontend: Dialog
debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
Fetched 85,4 MB in 1min 27s (979 kB/s)
(Reading database ... 188691 files and directories currently installed.)
Preparing to unpack .../uno-libs3_4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking uno-libs3 (4.3.1~rc2-0ubuntu1~trusty1) over (4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../ure_4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking ure (4.3.1~rc2-0ubuntu1~trusty1) over (4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-calc_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-calc (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-impress_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-impress (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-draw_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-draw (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-gtk_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-gtk (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-gtk3_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-gtk3 (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-common_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-common (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-pdfimport_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-pdfimport (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-base-core_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-base-core (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-math_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-math (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../python3-uno_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking python3-uno (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-writer_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-writer (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-core_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-core (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../fonts-opensymbol_2%3a102.6+LibO4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking fonts-opensymbol (2:102.6+LibO4.3.1~rc2-0ubuntu1~trusty1) over (2:102.6+LibO4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-human_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-human (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-galaxy_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-galaxy (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-sifr_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-sifr (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-hicontrast_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-hicontrast (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-tango_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-tango (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-oxygen_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-oxygen (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-style-crystal_1%3a4.3.1~rc2-0ubuntu1~trusty1_all.deb ...
Unpacking libreoffice-style-crystal (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Preparing to unpack .../libreoffice-avmedia-backend-gstreamer_1%3a4.3.1~rc2-0ubuntu1~trusty1_i386.deb ...
Unpacking libreoffice-avmedia-backend-gstreamer (1:4.3.1~rc2-0ubuntu1~trusty1) over (1:4.3.0-3ubuntu2~trusty1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for mime-support (3.54ubuntu1) ...
Processing triggers for man-db (2.6.7.1-1) ...
debconf: unable to initialize frontend: Dialog
debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
Processing triggers for menu (2.1.46ubuntu1) ...
Processing triggers for gnome-icon-theme (3.10.0-0ubuntu2) ...
Processing triggers for hicolor-icon-theme (0.13-1) ...
Processing triggers for shared-mime-info (1.2-0ubuntu3) ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Unknown media type in type 'uri/mms'
Unknown media type in type 'uri/mmst'
Unknown media type in type 'uri/mmsu'
Unknown media type in type 'uri/pnm'
Unknown media type in type 'uri/rtspt'
Unknown media type in type 'uri/rtspu'
Processing triggers for fontconfig (2.11.0-0ubuntu4.1) ...
Setting up uno-libs3 (4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up ure (4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up fonts-opensymbol (2:102.6+LibO4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-human (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-galaxy (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-sifr (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-hicontrast (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-tango (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-oxygen (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-style-crystal (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-common (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Installing new version of config file /etc/bash_completion.d/libreoffice.sh ...
Setting up libreoffice-core (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-base-core (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-calc (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-draw (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-impress (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-gtk (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-gtk3 (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-pdfimport (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-math (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up python3-uno (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-writer (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Setting up libreoffice-avmedia-backend-gstreamer (1:4.3.1~rc2-0ubuntu1~trusty1) ...
Processing triggers for libc-bin (2.19-0ubuntu6.1) ...
Processing triggers for menu (2.1.46ubuntu1) ...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Misko
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #24 on: August 27, 2014, 05:21:05 PM »
 

Scott

  • Global Moderator
  • Gold Level Poster
  • *****
  • 857
    Posts
  • Reputation: 186
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Intel Core i3 M 330

  • MEMORY: 6Gb

  • VIDEO CARD: Intel Integrated Graphics
 8) Three updates downloaded and applied, working perfectly.  ~Scott
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #23 on: August 27, 2014, 04:50:00 PM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
New Updates file, now combined into one file (thank you to Jeff from the LDC).
Make a file called betaupdates, paste the following into it and save & close, make the file executable then double click on it to run it.

Code: [Select]
#!/bin/bash
#-----------------------------------------------------------------------------------------
# Name: Linux Lite Updates
# Description: A GUI tool to easily install Updates in Linux Lite.
# Authors: Misko_2083, Jeff, Jerry Bezencon
# Date: Aug 27th, 2014
# Website: https://www.linuxliteos.com
#-----------------------------------------------------------------------------------------

# Main window dialogue.
 INSTALLER_TITLE="Linux Lite Updates
-----------------------------------------------------------------------------------------------------------
We will now check for updates for Linux Lite.

Please make sure all software installation programs like
Synaptic Package Manager and Gdebi are closed before proceeding.

When you click on Yes, this window will close and the updates will begin.

-----------------------------------------------------------------------------------------------------------
Click on Yes to continue or No to cancel the updates process."

# Call the zenity window icon location.
 INSTALL_ICON="/usr/share/icons/zenity-llcc.png"
 APPNAME="Linux Lite"
       
        zenity --question --title="$APPNAME Updates" --window-icon="${INSTALL_ICON}" --text="${INSTALLER_TITLE}"

                if [ "$?" -eq "0" ]; then

x=$( gksudo -g --message 'To update package lists your password is required. Enter your password, or press Cancel.' "stdbuf -oL /bin/bash \-c '(sudo apt-get update && sudo apt-get upgrade \-y && sudo apt-get autoremove \-y ) 2>&1 | tee /var/log/llupdates.log'" |
stdbuf -oL sed -n -e '/\[*$/ s/^/# /p' -e '/\*$/ s/^/# /p'|
zenity --progress --title="Updating" --pulsate \
--width=600 --auto-close )

                                if [ "${PIPESTATUS[0]}" -ne "0" ]; then
                       
                                        zenity --error \
                                        --title="Error" --text="$APPNAME Updates have failed."
                                        exit 0
                                fi

                else

                                        exit 0
                fi

PROCEED=$(zenity --question --title="$APPNAME Updates" --window-icon=/usr/share/icons/zenity-llcc.png --text="Updates have finished installing.\n\nWould you like to view the $APPNAME Updates log?"; echo $?)
if [ ${PROCEED} -eq 1 ]; then
zenity --info --title="$APPNAME Updates Complete" --window-icon="${INSTALL_ICON}" --text="$APPNAME Updates Complete."
exit;
else
leafpad /var/log/llupdates.log
fi

exit 0

# zenity --info --title="$APPNAME Updates" --window-icon=/usr/share/icons/zenity-llcc.png --text="$APPNAME Updates have been installed.\n\nSee /var/log/liteupdates.log and /var/log/liteupgrades.log\nfor more information."

# exit 0
« Last Edit: August 27, 2014, 04:57:56 PM by Valtam »
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #22 on: August 27, 2014, 07:12:46 AM »
 

Hans

  • New to Forums
  • *
  • 36
    Posts
  • Reputation: 8
  • Linux Lite Fellow
    • View Profile
Running perfectly! I just installed VM via this GUI  ;D

Thank you so much Misko!!! It's such a good addition.

Cheers!
"...But don't forget the songs that made you cry
And the songs that saved your life
Yes, you're older now
And you're a clever swine
But they were the only ones who ever stood by you"
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #21 on: August 27, 2014, 01:01:17 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Awesome, thank you.
 

Re: A GUI tool to install additional software in Linux Lite 2.0
« Reply #20 on: August 27, 2014, 01:00:43 AM »
 

Scott

  • Global Moderator
  • Gold Level Poster
  • *****
  • 857
    Posts
  • Reputation: 186
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Intel Core i3 M 330

  • MEMORY: 6Gb

  • VIDEO CARD: Intel Integrated Graphics
Quote
Don't forget to change /home/jerry/updates to /home/youruser/updates in the betaupdates file.

Yep, that was my problem :). Working perfectly now.
 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section