<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.galliumos.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lyam23</id>
		<title>GalliumOS Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.galliumos.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lyam23"/>
		<link rel="alternate" type="text/html" href="https://wiki.galliumos.org/Special:Contributions/Lyam23"/>
		<updated>2026-04-27T17:26:11Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.3</generator>

	<entry>
		<id>https://wiki.galliumos.org/index.php?title=Additional_Software&amp;diff=681</id>
		<title>Additional Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.galliumos.org/index.php?title=Additional_Software&amp;diff=681"/>
				<updated>2016-02-25T18:07:06Z</updated>
		
		<summary type="html">&lt;p&gt;Lyam23: /* TLP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GalliumOS comes with a good selection of desktop and utility software, but there is a huge variety of additional options and alternatives.&lt;br /&gt;
&lt;br /&gt;
GalliumOS can install any software packages built for Ubuntu, directly from the Canonical package servers.&lt;br /&gt;
&lt;br /&gt;
There are also some frequently-requested applications that are not available from Canonical, or are more complicated to install. A few are listed here. Please add more!&lt;br /&gt;
&lt;br /&gt;
== Desktop/Productivity ==&lt;br /&gt;
&lt;br /&gt;
=== Google Chrome ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
curl -O https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb&lt;br /&gt;
sudo dpkg -i google-chrome-stable_current_amd64.deb&lt;br /&gt;
sudo apt-get -f install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The last step is necessary to finish installing some additional package dependencies: &amp;lt;code&amp;gt;libappindicator1 libdbusmenu-gtk4 libindicator7&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- OLD WAY&lt;br /&gt;
curl -O https://dl-ssl.google.com/linux/linux_signing_key.pub&lt;br /&gt;
sudo apt-key add linux_signing_key.pub&lt;br /&gt;
sudo add-apt-repository -y &amp;quot;deb http://dl.google.com/linux/chrome/deb/ stable main&amp;quot;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install google-chrome-stable&lt;br /&gt;
rm linux_signing_key.pub&lt;br /&gt;
sudo sed -i '/chrome\/deb/d' /etc/apt/sources.list&lt;br /&gt;
EO OLD WAY --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Google Drive integration ===&lt;br /&gt;
&lt;br /&gt;
* Install the software&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo add-apt-repository ppa:alessandro-strada/ppa&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
 sudo apt-get install google-drive-ocamlfuse&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Next, add yourself to the Linux group ''fuse'' so you can mount Google Drive without root.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo usermod -a -G fuse &amp;lt;user_name&amp;gt;&lt;br /&gt;
 exec su -l $USER&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Run google-drive-ocamlfuse for first time setup.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 google-drive-ocamlfuse&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You'll get a browser window asking you to sign in to your Google account and if you want to give gdfuse OAuth2 Endpoint permission to access your Drive files. Hit Accept / Allow for any following dialog. Close the browser window.&lt;br /&gt;
&lt;br /&gt;
* Next, create a directory where your Google Drive files will be mounted, preferably in your home directory, and mount Google Drive to that directory.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 mkdir ~/googledrive&lt;br /&gt;
 google-drive-ocamlfuse ~/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can check if Google Drive is mounted by performing:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 mount&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also check how much space you have left:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 df&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to unmount, simply run&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 fusermount -u ~/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* To mount Google Drive at startup, set the following command to run at boot with Session and Startup.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 google-drive-ocamlfuse -label default /home/&amp;lt;user&amp;gt;/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A word of warning, large files such as movies or large videos don't work too well with google-drive-ocamlfuse using default settings. Files are cached to ~/.gdfuse/default/cache. A config file can be found in the directory above that, with parameters to allow for streaming larger files, cache size, etc.. The streaming larger files parameter is perfect for large videos and movies. For more information, check out gdfuse on GitHub.&lt;br /&gt;
&lt;br /&gt;
Adapted from: http://xmodulo.com/mount-google-drive-linux.html&lt;br /&gt;
&lt;br /&gt;
=== Skype ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg --add-architecture i386&lt;br /&gt;
sudo add-apt-repository &amp;quot;deb http://archive.canonical.com/ $(lsb_release -sc) partner&amp;quot;&lt;br /&gt;
sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install skype&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: https://help.ubuntu.com/community/Skype&lt;br /&gt;
&lt;br /&gt;
See also: https://www.skype.com/en/download-skype/skype-for-linux/&lt;br /&gt;
&lt;br /&gt;
=== Wine ===&lt;br /&gt;
&lt;br /&gt;
Wine has been a source of frustration. These instructions are verified on a fresh install of 1.0beta2.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg --add-architecture i386&lt;br /&gt;
sudo add-apt-repository ppa:ubuntu-wine/ppa&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install wine1.8&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Simple Screen Recorder ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository -y ppa:maarten-baert/simplescreenrecorder&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install simplescreenrecorder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Games ==&lt;br /&gt;
&lt;br /&gt;
=== Steam ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
curl -O http://repo.steampowered.com/steam/archive/precise/steam_latest.deb&lt;br /&gt;
sudo dpkg -i steam_latest.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then launch Steam from the application launcher. Your user must be in the &amp;quot;sudo&amp;quot; group (if it is not, the dpkg command above will also fail), so that the installer can do all the things it needs to do.&lt;br /&gt;
&lt;br /&gt;
=== Minecraft ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo bash&lt;br /&gt;
apt-get install default-jre&lt;br /&gt;
curl -o /usr/local/bin/Minecraft.jar https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar&lt;br /&gt;
curl -o /usr/share/pixmaps/minecraft.png https://chrx.org/minecraft.png&lt;br /&gt;
mkdir -p /usr/local/share/applications&lt;br /&gt;
cat &amp;gt; /usr/local/share/applications/minecraft.desktop &amp;lt;&amp;lt;EOF&lt;br /&gt;
[Desktop Entry]&lt;br /&gt;
Type=Application&lt;br /&gt;
Name=Minecraft&lt;br /&gt;
Comment=Minecraft&lt;br /&gt;
Exec=java -jar /usr/local/bin/Minecraft.jar&lt;br /&gt;
Icon=/usr/share/pixmaps/minecraft.png&lt;br /&gt;
Categories=Game;&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Backup / Administration ==&lt;br /&gt;
&lt;br /&gt;
=== grsync ===&lt;br /&gt;
Graphical lightweight version of rsync to back up data between drives&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo add-apt install grsync&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== aptik ===&lt;br /&gt;
Backup APT sources/repository data&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-add-repository -y ppa:teejee2008/ppa&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install aptik&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== OpenVPN ===&lt;br /&gt;
Install the following two packages to get OpenVPN connectivity with your favorite VPN service.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-get install openvpn network-manager-openvpn&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Optimization ==&lt;br /&gt;
&lt;br /&gt;
=== Battery Tuning ===&lt;br /&gt;
&lt;br /&gt;
==== Powertop ====&lt;br /&gt;
Monitor process and device power consumption.  Includes a handy auto-tune option which can be run at startup that helps to minimize power consumption.  Powertop also provides a calibration option.  This may not currently play nice with GalliumOS and may lock up the device.  Your mileage may vary.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;sudo apt-get install powertop&lt;br /&gt;
sudo powertop&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To allow powertop to auto-tune power settings at startup add the following line to /etc/rc.local&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;/usr/sbin/powertop --auto-tune&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== TLP ====&lt;br /&gt;
Advanced power management tool that also provides a default configuration optimized for battery life for &amp;quot;install and forget it&amp;quot; benefits.  TLP has reportedly provided some improvement to battery life.  Your mileage may vary.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;sudo apt-get tlp&lt;br /&gt;
sudo tlp start&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
&lt;br /&gt;
These have been discussed, but are not presently candidates for inclusion in the default installation. They might be of special interest, might have important caveats, or might be the unchosen of other options. Presented here for convenience.&lt;br /&gt;
&lt;br /&gt;
==== Hardware temperature monitor ====&lt;br /&gt;
* &amp;lt;code&amp;gt;xfce4-sensors-plugin&amp;lt;/code&amp;gt; from Ubuntu repositories. '''WARNING:''' Do '''not''' select &amp;lt;code&amp;gt;tacos&amp;lt;/code&amp;gt;. It will crash your desktop.&lt;br /&gt;
&lt;br /&gt;
==== Clipboard Manager ====&lt;br /&gt;
* &amp;lt;code&amp;gt;clipit&amp;lt;/code&amp;gt; from Ubuntu repositories. Developer homepage is missing. Be conscious of the security implications of all clipboard managers.&lt;br /&gt;
&lt;br /&gt;
==== Video Player ====&lt;br /&gt;
* https://mpv.io/ Lightweight, but very minimal UI&lt;br /&gt;
* &amp;lt;code&amp;gt;smplayer&amp;lt;/code&amp;gt; from Ubuntu repositories. Lightweight.&lt;br /&gt;
&lt;br /&gt;
==== Screen Recorder ====&lt;br /&gt;
* &amp;lt;code&amp;gt;kazam&amp;lt;/code&amp;gt; from Ubuntu repositories. Alternative to &amp;lt;code&amp;gt;simplescreenrecorder&amp;lt;/code&amp;gt;, above. See https://apps.ubuntu.com/cat/applications/kazam/ for more info.&lt;/div&gt;</summary>
		<author><name>Lyam23</name></author>	</entry>

	<entry>
		<id>https://wiki.galliumos.org/index.php?title=Additional_Software&amp;diff=679</id>
		<title>Additional Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.galliumos.org/index.php?title=Additional_Software&amp;diff=679"/>
				<updated>2016-02-25T17:58:21Z</updated>
		
		<summary type="html">&lt;p&gt;Lyam23: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GalliumOS comes with a good selection of desktop and utility software, but there is a huge variety of additional options and alternatives.&lt;br /&gt;
&lt;br /&gt;
GalliumOS can install any software packages built for Ubuntu, directly from the Canonical package servers.&lt;br /&gt;
&lt;br /&gt;
There are also some frequently-requested applications that are not available from Canonical, or are more complicated to install. A few are listed here. Please add more!&lt;br /&gt;
&lt;br /&gt;
== Desktop/Productivity ==&lt;br /&gt;
&lt;br /&gt;
=== Google Chrome ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
curl -O https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb&lt;br /&gt;
sudo dpkg -i google-chrome-stable_current_amd64.deb&lt;br /&gt;
sudo apt-get -f install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The last step is necessary to finish installing some additional package dependencies: &amp;lt;code&amp;gt;libappindicator1 libdbusmenu-gtk4 libindicator7&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- OLD WAY&lt;br /&gt;
curl -O https://dl-ssl.google.com/linux/linux_signing_key.pub&lt;br /&gt;
sudo apt-key add linux_signing_key.pub&lt;br /&gt;
sudo add-apt-repository -y &amp;quot;deb http://dl.google.com/linux/chrome/deb/ stable main&amp;quot;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install google-chrome-stable&lt;br /&gt;
rm linux_signing_key.pub&lt;br /&gt;
sudo sed -i '/chrome\/deb/d' /etc/apt/sources.list&lt;br /&gt;
EO OLD WAY --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Google Drive integration ===&lt;br /&gt;
&lt;br /&gt;
* Install the software&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo add-apt-repository ppa:alessandro-strada/ppa&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
 sudo apt-get install google-drive-ocamlfuse&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Next, add yourself to the Linux group ''fuse'' so you can mount Google Drive without root.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo usermod -a -G fuse &amp;lt;user_name&amp;gt;&lt;br /&gt;
 exec su -l $USER&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Run google-drive-ocamlfuse for first time setup.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 google-drive-ocamlfuse&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You'll get a browser window asking you to sign in to your Google account and if you want to give gdfuse OAuth2 Endpoint permission to access your Drive files. Hit Accept / Allow for any following dialog. Close the browser window.&lt;br /&gt;
&lt;br /&gt;
* Next, create a directory where your Google Drive files will be mounted, preferably in your home directory, and mount Google Drive to that directory.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 mkdir ~/googledrive&lt;br /&gt;
 google-drive-ocamlfuse ~/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can check if Google Drive is mounted by performing:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 mount&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also check how much space you have left:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 df&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to unmount, simply run&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 fusermount -u ~/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* To mount Google Drive at startup, set the following command to run at boot with Session and Startup.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 google-drive-ocamlfuse -label default /home/&amp;lt;user&amp;gt;/googledrive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A word of warning, large files such as movies or large videos don't work too well with google-drive-ocamlfuse using default settings. Files are cached to ~/.gdfuse/default/cache. A config file can be found in the directory above that, with parameters to allow for streaming larger files, cache size, etc.. The streaming larger files parameter is perfect for large videos and movies. For more information, check out gdfuse on GitHub.&lt;br /&gt;
&lt;br /&gt;
Adapted from: http://xmodulo.com/mount-google-drive-linux.html&lt;br /&gt;
&lt;br /&gt;
=== Skype ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg --add-architecture i386&lt;br /&gt;
sudo add-apt-repository &amp;quot;deb http://archive.canonical.com/ $(lsb_release -sc) partner&amp;quot;&lt;br /&gt;
sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install skype&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: https://help.ubuntu.com/community/Skype&lt;br /&gt;
&lt;br /&gt;
See also: https://www.skype.com/en/download-skype/skype-for-linux/&lt;br /&gt;
&lt;br /&gt;
=== Wine ===&lt;br /&gt;
&lt;br /&gt;
Wine has been a source of frustration. These instructions are verified on a fresh install of 1.0beta2.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg --add-architecture i386&lt;br /&gt;
sudo add-apt-repository ppa:ubuntu-wine/ppa&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install wine1.8&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Simple Screen Recorder ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository -y ppa:maarten-baert/simplescreenrecorder&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install simplescreenrecorder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Games ==&lt;br /&gt;
&lt;br /&gt;
=== Steam ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
curl -O http://repo.steampowered.com/steam/archive/precise/steam_latest.deb&lt;br /&gt;
sudo dpkg -i steam_latest.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then launch Steam from the application launcher. Your user must be in the &amp;quot;sudo&amp;quot; group (if it is not, the dpkg command above will also fail), so that the installer can do all the things it needs to do.&lt;br /&gt;
&lt;br /&gt;
=== Minecraft ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo bash&lt;br /&gt;
apt-get install default-jre&lt;br /&gt;
curl -o /usr/local/bin/Minecraft.jar https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar&lt;br /&gt;
curl -o /usr/share/pixmaps/minecraft.png https://chrx.org/minecraft.png&lt;br /&gt;
mkdir -p /usr/local/share/applications&lt;br /&gt;
cat &amp;gt; /usr/local/share/applications/minecraft.desktop &amp;lt;&amp;lt;EOF&lt;br /&gt;
[Desktop Entry]&lt;br /&gt;
Type=Application&lt;br /&gt;
Name=Minecraft&lt;br /&gt;
Comment=Minecraft&lt;br /&gt;
Exec=java -jar /usr/local/bin/Minecraft.jar&lt;br /&gt;
Icon=/usr/share/pixmaps/minecraft.png&lt;br /&gt;
Categories=Game;&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Backup / Administration ==&lt;br /&gt;
&lt;br /&gt;
=== grsync ===&lt;br /&gt;
Graphical lightweight version of rsync to back up data between drives&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
 sudo add-apt install grsync&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== aptik ===&lt;br /&gt;
Backup APT sources/repository data&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-add-repository -y ppa:teejee2008/ppa&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install aptik&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== OpenVPN ===&lt;br /&gt;
Install the following two packages to get OpenVPN connectivity with your favorite VPN service.&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-get install openvpn network-manager-openvpn&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Optimization ==&lt;br /&gt;
&lt;br /&gt;
=== Battery Tuning ===&lt;br /&gt;
&lt;br /&gt;
==== Powertop ====&lt;br /&gt;
Monitor process and device power consumption.  Includes a handy auto-tune option which can be run at startup that helps to minimize power consumption.  Powertop also provides a calibration option.  This may not currently play nice with GalliumOS and may lock up the device.  Your mileage may vary.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;sudo apt-get install powertop&lt;br /&gt;
sudo powertop&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To allow powertop to auto-tune power settings at startup add the following line to /etc/rc.local&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;/usr/sbin/powertop --auto-tune&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== TLP ====&lt;br /&gt;
Advanced power management tool that also provides a default configuration optimized for battery life for &amp;quot;install and forget it&amp;quot; benefits.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin:0 0 0 1.5em&amp;quot;&amp;gt;sudo apt-get tlp&lt;br /&gt;
sudo tlp start&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
&lt;br /&gt;
These have been discussed, but are not presently candidates for inclusion in the default installation. They might be of special interest, might have important caveats, or might be the unchosen of other options. Presented here for convenience.&lt;br /&gt;
&lt;br /&gt;
==== Hardware temperature monitor ====&lt;br /&gt;
* &amp;lt;code&amp;gt;xfce4-sensors-plugin&amp;lt;/code&amp;gt; from Ubuntu repositories. '''WARNING:''' Do '''not''' select &amp;lt;code&amp;gt;tacos&amp;lt;/code&amp;gt;. It will crash your desktop.&lt;br /&gt;
&lt;br /&gt;
==== Clipboard Manager ====&lt;br /&gt;
* &amp;lt;code&amp;gt;clipit&amp;lt;/code&amp;gt; from Ubuntu repositories. Developer homepage is missing. Be conscious of the security implications of all clipboard managers.&lt;br /&gt;
&lt;br /&gt;
==== Video Player ====&lt;br /&gt;
* https://mpv.io/ Lightweight, but very minimal UI&lt;br /&gt;
* &amp;lt;code&amp;gt;smplayer&amp;lt;/code&amp;gt; from Ubuntu repositories. Lightweight.&lt;br /&gt;
&lt;br /&gt;
==== Screen Recorder ====&lt;br /&gt;
* &amp;lt;code&amp;gt;kazam&amp;lt;/code&amp;gt; from Ubuntu repositories. Alternative to &amp;lt;code&amp;gt;simplescreenrecorder&amp;lt;/code&amp;gt;, above. See https://apps.ubuntu.com/cat/applications/kazam/ for more info.&lt;/div&gt;</summary>
		<author><name>Lyam23</name></author>	</entry>

	<entry>
		<id>https://wiki.galliumos.org/index.php?title=News/Dont_Install_Ubuntu_Software_Center&amp;diff=678</id>
		<title>News/Dont Install Ubuntu Software Center</title>
		<link rel="alternate" type="text/html" href="https://wiki.galliumos.org/index.php?title=News/Dont_Install_Ubuntu_Software_Center&amp;diff=678"/>
				<updated>2016-02-25T17:34:37Z</updated>
		
		<summary type="html">&lt;p&gt;Lyam23: minor spelling correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:(News) Don't Install Ubuntu Software Center}}&lt;br /&gt;
Hello. It has come to my attention that people are installing Ubuntu Software Center. Please don't. Seriously, just don't do it.&lt;br /&gt;
&lt;br /&gt;
What's wrong with Ubuntu Software Center? Well, for starters, it's a terrible piece of software that interfaces with apt very poorly. I have had Ubuntu Software Center break more systems than I can count on both hands. That's a lot of systems. It crashes and freezes and breaks your system. Also, it has dependencies, and not innocent dependencies. Ubuntu Software Center depends on Software Updater, which is basically a nag tool that runs in the background (and not efficiently) and nags you to update your system. We do believe that update nags are useful in reminding users to keep their system up to date, but this specific one is incredibly inefficient, and it WILL waste your resources. Devices with the Software Updater installed will see high CPU usage when idle, the CPU heating up seemingly for no reason, lag spikes, CPU usage spikes, and many more ill effects. And finally, the icing on the cake is an annoying nag to update to Ubuntu 15.10. If you have the Software Updater installed, it can and WILL nag you to upgrade to Ubuntu 15.10, which WILL completely destroy your GalliumOS install and you'll have to start over should you accept the upgrade.&lt;br /&gt;
&lt;br /&gt;
In conclusion, Ubuntu Software Center should not be installed on any GalliumOS system. Say no to Ubuntu Software Center. If you need an alternative for user friendly software installing and updating, consider Lubuntu Software Center. It's pretty nice.&lt;br /&gt;
&lt;br /&gt;
Update: If you've installed the software center, run the following command to remove it and the other garbage.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt-get purge software-center update-manager-core ubuntu-release-upgrader-core&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has been a GalliumOS user courtesy PSA by [[User:ColtonDRG]]&lt;/div&gt;</summary>
		<author><name>Lyam23</name></author>	</entry>

	</feed>