Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu install zsh

#The sudo apt-get update command is used to download package 
#information from all configured sources 
#So when you run update command, it downloads the package 
#information from the Internet. It is useful to get info on 
#an updated version of packages or their dependencies.

sudo apt-get update
sudo apt-get install zsh

#Now that ZSH shell is installed, you can check whether ZSH 
#is working with the following command:
zsh --version
Comment

install oh my zsh ubuntu

Install zsh:
	- On Linux:
    	sudo apt-get install zsh
	- On MacOS (should already been installed):
    	brew install zsh

Install oh-my-zsh via curl:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Install oh-my-zsh via wget:
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

Themes:
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

Plugins:
https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins
Comment

zsh ubuntu

autoload -U promptinit
promptinit
Comment

PREVIOUS NEXT
Code Example
Shell :: crontab logs centos 
Shell :: grub customizer ubuntu 
Shell :: kill process for port 
Shell :: ubuntu gpg 2 
Shell :: checksum command windows 
Shell :: conda command not found linux 
Shell :: start ssh agent windows 10 
Shell :: hard reset git branch 
Shell :: process runninng on particular port 
Shell :: git stash history 
Shell :: pyserial installing 
Shell :: check ssd or hdd linux 
Shell :: oh my zsh autocomplete 
Shell :: zsh: command not found: flutter 
Shell :: certbot get new certificate apache 
Shell :: apt install nc command 
Shell :: npm dev dependencies 
Shell :: sudo passwordless 
Shell :: install gdal ubuntu 
Shell :: linux install ifconfig 
Shell :: elementary-tweaks 
Shell :: install django jazzmin 
Shell :: nvm: Cannot uninstall currently-active node version, v14.14.0 (inferred from node). 
Shell :: cat /etc/group 
Shell :: installing SQLite3 on ubuntu 20.04 
Shell :: linux memory usage 
Shell :: wget with username and password 
Shell :: install peer dependencies 
Shell :: docker switch to linux containers command line 
Shell :: powershell open device manager 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =