Difference between revisions of "Additional Software"
(→Simple Screen Recorder) |
(formatting) |
||
Line 17: | Line 17: | ||
</pre> | </pre> | ||
− | === Google Drive integration< | + | === Google Drive integration === |
+ | |||
+ | * Install the software | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
sudo add-apt-repository ppa:alessandro-strada/ppa | sudo add-apt-repository ppa:alessandro-strada/ppa | ||
sudo apt-get update | sudo apt-get update | ||
sudo apt-get install google-drive-ocamlfuse | sudo apt-get install google-drive-ocamlfuse | ||
− | Next, add yourself to the Linux group ''fuse'' so you can mount Google Drive without root. | + | </pre> |
+ | |||
+ | * Next, add yourself to the Linux group ''fuse'' so you can mount Google Drive without root. | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
sudo usermod -a -G fuse <user_name> | sudo usermod -a -G fuse <user_name> | ||
exec su -l $USER | exec su -l $USER | ||
− | Run google-drive-ocamlfuse for first time setup. | + | </pre> |
+ | |||
+ | * Run google-drive-ocamlfuse for first time setup. | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
google-drive-ocamlfuse | google-drive-ocamlfuse | ||
+ | </pre> | ||
+ | |||
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. | 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. | ||
− | Next, create a directory where your Google Drive files will be mounted, preferably in your home directory, and mount Google Drive to that directory. | + | * Next, create a directory where your Google Drive files will be mounted, preferably in your home directory, and mount Google Drive to that directory. |
+ | <pre style="margin:0 0 0 1.5em"> | ||
mkdir ~/googledrive | mkdir ~/googledrive | ||
google-drive-ocamlfuse ~/googledrive | google-drive-ocamlfuse ~/googledrive | ||
− | You can check if Google Drive is mounted by performing. | + | </pre> |
+ | |||
+ | You can check if Google Drive is mounted by performing: | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
mount | mount | ||
− | You can also check how much space you have left. | + | </pre> |
+ | |||
+ | You can also check how much space you have left: | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
df | df | ||
− | If you want to unmount, simply run. | + | </pre> |
+ | |||
+ | If you want to unmount, simply run | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
fusermount -u ~/googledrive | fusermount -u ~/googledrive | ||
− | To mount Google Drive at startup, set the following command to run at boot with Startup Applications. | + | </pre> |
+ | |||
+ | * To mount Google Drive at startup, set the following command to run at boot with Startup Applications. | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
google-drive-ocamlfuse -label default /home/<user>/googledrive | google-drive-ocamlfuse -label default /home/<user>/googledrive | ||
− | 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 | + | </pre> |
+ | |||
+ | 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. | ||
− | + | Adapted from: http://xmodulo.com/mount-google-drive-linux.html | |
− | + | ||
− | + | === Skype === | |
− | + | ||
+ | <pre style="margin:0 0 0 1.5em"> | ||
+ | sudo dpkg --add-architecture i386 | ||
+ | sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" | ||
+ | sudo apt-get update && sudo apt-get install skype | ||
+ | </pre> | ||
+ | |||
+ | Source: https://help.ubuntu.com/community/Skype | ||
=== Wine === | === Wine === | ||
Line 50: | Line 83: | ||
Wine has been a source of frustration. We're working on reliable and repeatable instructions, the essentials of which will be: | Wine has been a source of frustration. We're working on reliable and repeatable instructions, the essentials of which will be: | ||
− | * Enable i386 libraries: | + | * Enable i386 libraries |
− | + | * Add the proper PPA package source | |
− | + | * Update package lists | |
− | + | * Install Wine | |
+ | |||
+ | <pre style="margin:0 0 0 1.5em"> | ||
+ | sudo dpkg --add-architecture i386 | ||
+ | sudo add-apt-repository ppa:ubuntu-wine/ppa | ||
+ | sudo apt-get update | ||
+ | sudo apt-get install wine1.8 | ||
+ | </pre> | ||
Try it, it might work! Sometimes it doesn't though. Requires more testing. | Try it, it might work! Sometimes it doesn't though. Requires more testing. | ||
Line 95: | Line 135: | ||
=== Hardware temperature monitor === | === Hardware temperature monitor === | ||
− |
Revision as of 15:23, 4 February 2016
GalliumOS comes with a good selection of desktop and utility software, but there is a huge variety of additional options and alternatives.
GalliumOS can install any software packages built for Ubuntu, directly from the Canonical package servers.
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!
Contents
Desktop Misc
Google Chrome
curl -O https://dl-ssl.google.com/linux/linux_signing_key.pub sudo apt-key add linux_signing_key.pub sudo add-apt-repository -y "deb http://dl.google.com/linux/chrome/deb/ stable main" sudo apt-get update sudo apt-get install google-chrome-stable
Google Drive integration
- Install the software
sudo add-apt-repository ppa:alessandro-strada/ppa sudo apt-get update sudo apt-get install google-drive-ocamlfuse
- Next, add yourself to the Linux group fuse so you can mount Google Drive without root.
sudo usermod -a -G fuse <user_name> exec su -l $USER
- Run google-drive-ocamlfuse for first time setup.
google-drive-ocamlfuse
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.
- Next, create a directory where your Google Drive files will be mounted, preferably in your home directory, and mount Google Drive to that directory.
mkdir ~/googledrive google-drive-ocamlfuse ~/googledrive
You can check if Google Drive is mounted by performing:
mount
You can also check how much space you have left:
df
If you want to unmount, simply run
fusermount -u ~/googledrive
- To mount Google Drive at startup, set the following command to run at boot with Startup Applications.
google-drive-ocamlfuse -label default /home/<user>/googledrive
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.
Adapted from: http://xmodulo.com/mount-google-drive-linux.html
Skype
sudo dpkg --add-architecture i386 sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" sudo apt-get update && sudo apt-get install skype
Source: https://help.ubuntu.com/community/Skype
Wine
Wine has been a source of frustration. We're working on reliable and repeatable instructions, the essentials of which will be:
- Enable i386 libraries
- Add the proper PPA package source
- Update package lists
- Install Wine
sudo dpkg --add-architecture i386 sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine1.8
Try it, it might work! Sometimes it doesn't though. Requires more testing.
Simple Screen Recorder
sudo add-apt-repository -y ppa:maarten-baert/simplescreenrecorder sudo apt-get update sudo apt-get install simplescreenrecorder
Games
Steam
curl -O http://repo.steampowered.com/steam/archive/precise/steam_latest.deb sudo dpkg -i steam_latest.deb
Then launch Steam from the application launcher. Your user must be in the "sudo" 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.
Minecraft
sudo bash apt_get_install default-jre curl -o /usr/local/bin/Minecraft.jar https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar curl -o /usr/share/pixmaps/minecraft.png https://chrx.org/minecraft.png mkdir -p /usr/local/share/applications cat > /usr/local/share/applications/minecraft.desktop <<EOF [Desktop Entry] Type=Application Name=Minecraft Comment=Minecraft Exec=java -jar /usr/local/bin/Minecraft.jar Icon=/usr/share/pixmaps/minecraft.png Categories=Game; EOF