Skip to content

Instantly share code, notes, and snippets.

@miftahafina
Last active January 8, 2019 20:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save miftahafina/a81fa51e81ec6cb29636f3f6c4240aa0 to your computer and use it in GitHub Desktop.
Save miftahafina/a81fa51e81ec6cb29636f3f6c4240aa0 to your computer and use it in GitHub Desktop.
What you have to do after installing ubuntu
# Install ubuntu
# Update repository
sudo apt-get update
Update apps
# sudo apt-get dist-upgrade
# Install Google Chrome
- Install
# Install Atom
https://atom.io/
# Install Vim
sudo apt-get install vim
# Install Git
sudo apt-get install git
# Install Gitg
Store
# Install Kodi
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:team-xbmc/ppa
sudo apt-get update
sudo apt-get install kodi
# Install Arc Theme
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' >> /etc/apt/sources.list.d/arc-theme.list"
sudo apt-get update && sudo apt-get install arc-theme
wget http://download.opensuse.org/repositories/home:Horst3180/xUbuntu_16.04/Release.key
sudo apt-key add - < Release.key
# Install java
http://www.pintarkomputer.com/cara-mudah-install-oracle-java-jdk-di-linux-ubuntu/
# Install Unity Tweak Tool
https://apps.ubuntu.com/cat/applications/unity-tweak-tool/
# Install Paper Icon Theme
sudo add-apt-repository ppa:snwh/pulp
sudo apt-get update
sudo apt-get install paper-icon-theme
sudo apt-get install paper-gtk-theme
sudo apt-get install paper-cursor-theme
# Install MySQL Workbench
sudo apt-get install mysql-workbench
# Install Spot
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt-get update
sudo apt-get install spotify-client
# Install GIMP
Store
# Install Audacity
Store
# Install XAMPP
https://www.apachefriends.org/download.html
chmod 755 xampp-linux-*-installer.run
sudo ./xampp-linux-*-installer.run
# Auto run xampp
sudo vim /etc/rc.local
# Install Zsh
sudo apt-get install zsh
apt-get install git-core
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
sudo shutdown -r 0
# Nginx
https://medium.com/@asked_io/how-to-install-php-7-2-x-nginx-1-10-x-laravel-5-6-f9e30ee30eff
# Install php7
sudo apt-get install php-7.2
# Install composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
# Unified Remote Server
*.deb
# Install Arduino IDE
# Install mongodb
https://hevodata.com/blog/install-mongodb-on-ubuntu/
# Sublime Text
*.deb
# Install Nodejs
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
# Install xbacklight (to save the screen brightness)
sudo apt-get install xbacklight
xbacklight -set `num` [nomernya]
# Install Grub Customizer
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get install grub-customizer
# Install Filezilla
sudo apt-get install filezilla
# Install Atom Packages
apm install atom-beautify
apm install docblockr
apm install emmet-simplified
apm install emmet
apm install file-icons
apm install git-plus
apm install highlight-selected
apm install minimap
apm install minimap-highlight-selected
apm install platformio-ide-terminal
apm install vim-mode
apm install vim-mode-plus
apm install activate-power-mode
apm install qolor
# Install Atom Languages
apm install language-blade
apm install language-vue
# Install Atom Theme
apm install an-old-hope-syntax
apm install gruvbox-syntax
apm install solario
# Install Linter
apm install linter
apm install linter-php
# Install Kazam
sudo apt-get install kazam
# Install XDM (failed)
wget http://sourceforge.net/projects/xdman/files/xdm-jre-64bit.tar.xz
tar -xvf xdm-jre-64bit.tar.xz
cd xdm
ls -l
# Install Tmux
sudo apt-get install tmux
# Install Inkscape
sudo apt-get install inkscape
# Install Gimp
sudo apt-get install gimp
# Install Wine
sudo apt-get install wine
# Customizeable NotifyOSD
sudo add-apt-repository ppa:leolik/leolik
sudo apt update
sudo apt upgrade
sudo apt install libnotify-bin
pkill notify-osd
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install notifyosdconfig
# Install Mutate
wget https://github.com/qdore/Mutate/releases/download/v2.3/Mutate-2.3.deb
sudo apt-get install gdebi
sudo gdebi Mutate-2.3.deb
# Install calibre
sudo apt-get install calibre
# Is another proccess using it?
sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
# Keperluan laravel
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php7.2
sudo apt-get install php7.2-mbstring
sudo apt-get install php7.2-gd
sudo apt-get install php7.2-mysql
sudo apt-get install php7.2-xml
sudo apt-get install php7.2-zip
sudo apt-get install php7.2-curl
sudo apt-get install php7.2-fpm
sudo apt-get install php7.2 php7.2-mbstring php7.2-gd php7.2-mysql php7.2-xml php7.2-zip php7.2-curl php7.2-fpm
# If using php7.2
https://www.rosehosting.com/blog/how-to-install-php-7-2-on-ubuntu-16-04/
# Set default permission laravel dir
sudo chown -R app:www-data [dir-name]
sudo find [dir-name] -type f -exec chmod 664 {} \;
sudo find [dir-name] -type d -exec chmod 775 {} \;
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
chmod -R 777 storage bootstrap/cache public
# Set default wp permission
sudo chown www-data:www-data -R [dir-name]
sudo find [dir-name] -type f -exec chmod 664 {} \;
sudo find [dir-name] -type d -exec chmod 775 {} \;
sudo chown app:app -R [wp-dir]
sudo chown www-data:www-data wp-content
sudo chmod -R 777 wp-content
# Set Brigtness
sudo -H gedit /etc/rc.local
Add:
echo X > /sys/class/backlight/intel_backlight/brightness
# Install Arc Flatabulous Theme
sudo add-apt-repository ppa:noobslab/themes
sudo apt-get update
sudo apt-get install arc-flatabulous-theme
# Install Synapse Indicator (not compatible with 16.04)
sudo add-apt-repository ppa:noobslab/apps
sudo apt-get update
sudo apt-get install indicator-synapse
# Launcher Position
- Bottom
gsettings set com.canonical.Unity.Launcher launcher-position Bottom
- Left
gsettings set com.canonical.Unity.Launcher launcher-position Left
# Remove default bookmark
- comment # pada baris kode yang menunjukkan bookmark tersebut
nanoe ~/.config/user-dirs.dirs
sudo nano /etc/xdg/user-dirs.defaults
# Change ubuntu dash icon
nautilus /usr/share/unity/icons
files:
squircle_base_54.png <-- change this file, but backup first
squircle_base_selected_54.png
squircle_edge_54.png
squircle_glow_62.png
squircle_shadow_62.png
squircle_shine_54.png
# Install gKamus
sudo apt-get install gkamus
# Install Converseen
sudo apt-get install converseen
# Install Synapse
- Store
- Make shortcut:
1. Open System Settings .
2. Choose Keyboard .
3. Go to the Shortcuts tab.
4. Choose Custom Shortcuts from the left (it's at the bottom of the list).
5. Click the + button at the bottom of the window.
6. In Name , type a name for the shortcut. E.g. ...
7. In Command , type the command you want it to execute. ...
8. Click Apply.
# Install Httrack
sudo apt-get install httrack
# How to index ubuntu lenses
- Run this comment in the directory which you want to index (zeitgeist)
- example: cd /mnt/Data/Documents
sudo updatedb
or use this
sudo apt-get install tracker-gui
# Install Nautilus Scripts
sudo add-apt-repository ppa:noobslab/apps
sudo apt-get update
sudo apt-get install nautilus-scripts
# Install Nautilus Document Converter and Image Tool
sudo add-apt-repository ppa:atareao/nautilus-extensions
sudo apt-get update
sudo apt-get install nautilus-document-converter nautilus-image-tools
# Links for additional nautilus extensions:
http://www.noobslab.com/2013/12/useful-of-extensions-for-nautilus.html
http://www.tuxgarage.com/2011/11/must-have-nautilus-extensions-tweaks.html
http://www.makeuseof.com/tag/linux-68-useful-extensions-to-improve-nautilus-functionality/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment