Last active
December 28, 2023 23:16
-
-
Save nhthai2005/a8e62db8f0a89d1c65afc7d6217399a9 to your computer and use it in GitHub Desktop.
Howto Install necessary tools on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo add-apt-repository ppa:bamboo-engine/ibus-bamboo | |
sudo apt-get update | |
# Install all necessary tools with the following command | |
sudo apt install vim htop terminator meld glogg curl git totem keepass2 \ | |
kazam ksnip maven remmina libreoffice network-manager-l2tp-gnome \ | |
ibus-bamboo gnome-calendar gnome-weather gnome-clocks \ | |
qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager -y; \ | |
sudo snap install skype krita gimp chromium; \ | |
sudo snap install codium --classic | |
# Or install each tool as below: | |
# Editor on terminal - CLI | |
sudo apt install vim | |
# Terminal for command line | |
sudo apt install terminator | |
# Monitor CPU/Mem | |
sudo apt install htop | |
# Read, filter, compare logs | |
sudo apt install meld glogg | |
# Store password offline - password manager | |
sudo apt install keepass2 | |
# Capture picture and video from screen | |
sudo apt install kazam ksnip | |
# Tools for developer: curl git maven | |
sudo apt install curl git maven | |
# sudo apt install curl git maven=3.6.3-5 if it is specified version for maven | |
# Remote desktop | |
sudo apt install remmina | |
# Play video - Gnome Video | |
sudo apt install totem | |
# Vietnamese Input Method Engine | |
sudo apt install ibus-bamboo | |
# Calendar application for GNOME | |
sudo apt install gnome-calendar | |
# access current conditions and forecasts | |
sudo apt install gnome-weather | |
# Simple GNOME app with stopwatch, timer, and world clock support | |
sudo apt install gnome-clocks | |
# Office tools like MS Word, Excel, Powerpoint | |
sudo apt install libreoffice | |
# L2TP plugin GNOME GUI | |
sudo apt install network-manager-l2tp-gnome | |
# KVM, QEMU and libvirt | |
sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager | |
# Group chat | |
sudo snap install skype | |
# Chromium web browser, open-source version of Chrome | |
sudo snap install chromium | |
# Code editing. Redefined like vscode | |
sudo snap install codium --classic | |
# Digital Painting, Creative Freedom | |
sudo snap install krita | |
# GNU Image Manipulation Program | |
sudo snap install gimp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment