Apt-Get Packages: Difference between revisions

From Dev Wiki
Jump to navigation Jump to search
(Add install for cifs-utils)
(Significantly update page)
Line 2: Line 2:
For general information about '''apt-get''' usage, see [[Apt-Get]].
For general information about '''apt-get''' usage, see [[Apt-Get]].


== Hard Drive Utils to Mount Windows/Network Shares ==
== System Utilities ==
== Extra Hard Drive Utils ==
Used, for example, in network share mounting.
sudo apt install cifs-utils
 
 
== General Installs ==


  sudo apt install cifs-utils
=== Chrome ===
Installs the standard Google Chrome web browser.
 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt update
  sudo apt install google-chrome-stable
 
=== Gimp ===
Gimp is a free image editor tool.
 
sudo add-apt-repository ppa:otto-kesselgulasch/gimp
sudo apt update
sudo apt install gimp
 
 
== Communication Program Installs ==


== Slack ==
=== Slack ===
Slack is not available directly via apt. However, it can be installed with the following commands:
Slack is not available directly via apt. However, it can be installed with the following commands:
  sudo apt install snapd
  sudo apt install snapd
  sudo snap install slack --classic
  sudo snap install slack --classic


== Discord ==
=== Discord ===
Discord is not available directly via apt. However, it can be installed with the following commands:
Discord is not available directly via apt. However, it can be installed with the following commands:
  sudo apt install snapd
  sudo apt install snapd
Line 17: Line 39:




== VirtualBox ==
== General Programming Installs ==
Since this seems to be updated frequently, see https://www.virtualbox.org/wiki/Linux_Downloads for up to date details.
 
=== Git and Gitk ===
Installed on most distro's by default, but not always. Pretty essential for anything programming. If not present, can be installed with:
sudo apt update
sudo apt install git gitk
 
=== VirtualBox ===
Since this seems to be updated frequently, see https://www.virtualbox.org/wiki/Linux_Downloads for up to date details.<br>
It's recommended to specifically choose the newest version, as the base command seems to generally install an out-of-date version.
It's recommended to specifically choose the newest version, as the base command seems to generally install an out-of-date version.




== IDEs ==
== Programming IDE Installs ==
 
=== Sublime Text ===
A text editor that, by itself, isn't very impressive. But it has a lot of support for extensions and customization, which make it as good as most standard IDE's.
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt update
sudo apt install sublime-text
 
=== Pycharm ===
=== Pycharm ===
First install umake:
First install umake:
  sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
  sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
  sudo apt-get update
  sudo apt update
  sudo apt-get install ubuntu-make
  sudo apt install ubuntu-make


Then install your desired version:
Then install your desired version:

Revision as of 05:11, 5 May 2020

This page lists the apt-get commands to install various packages.
For general information about apt-get usage, see Apt-Get.

System Utilities

Extra Hard Drive Utils

Used, for example, in network share mounting.

sudo apt install cifs-utils


General Installs

Chrome

Installs the standard Google Chrome web browser.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt update
sudo apt install google-chrome-stable

Gimp

Gimp is a free image editor tool.

sudo add-apt-repository ppa:otto-kesselgulasch/gimp
sudo apt update
sudo apt install gimp


Communication Program Installs

Slack

Slack is not available directly via apt. However, it can be installed with the following commands:

sudo apt install snapd
sudo snap install slack --classic

Discord

Discord is not available directly via apt. However, it can be installed with the following commands:

sudo apt install snapd
sudo snap install discord


General Programming Installs

Git and Gitk

Installed on most distro's by default, but not always. Pretty essential for anything programming. If not present, can be installed with:

sudo apt update
sudo apt install git gitk

VirtualBox

Since this seems to be updated frequently, see https://www.virtualbox.org/wiki/Linux_Downloads for up to date details.
It's recommended to specifically choose the newest version, as the base command seems to generally install an out-of-date version.


Programming IDE Installs

Sublime Text

A text editor that, by itself, isn't very impressive. But it has a lot of support for extensions and customization, which make it as good as most standard IDE's.

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt update
sudo apt install sublime-text

Pycharm

First install umake:

sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt update
sudo apt install ubuntu-make

Then install your desired version:

  • Community
umake ide pycharm
  • Professional
umake ide pycharm-professional