-
Notifications
You must be signed in to change notification settings - Fork 0
/
lubuntu_things.sh
45 lines (33 loc) · 1.27 KB
/
lubuntu_things.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
http://www.everydaylinuxuser.com/2014/06/5-things-to-do-after-installing-lubuntu.html
#Installing zshell
sudo apt-get install zsh
Now to set z-shell as the default shell
chsh -s `which zsh`
or
chsh -s $(which zsh)
Close and Open your terminal, check the terminal, you will have new, nice prompt! ;)
which firefox
This command shows location of the executable of firefox(which is an application). Similary you could use this which command to see the location of any utility. And $() or the backticks get the value from the which command.
#installing sublime 3
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
#bash to zshell rbenv issue
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshenv
$ echo 'eval "$(rbenv init -)"' >> ~/.zshenv
$ echo 'source $HOME/.zshenv' >> ~/.zshrc
$ exec $SHELL
#installing libre office
sudo add-apt-repository ppa:libreoffice/libreoffice-4-2
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install libreoffice
#installing grunt
npm install grunt --save-dev
#installing yeoman
npm install -g yo
npm install -g generator-angular
#installing chromium
sudo apt-get install chromium-browser
#installing mysql
sudo apt-get install mysql-server mysql-client libmysqlclient-dev