Ubuntu is my Cupid

Jack Arokiason J
featurepreneur
Published in
3 min readApr 13, 2021

“Simplicity is about subtracting the obvious and adding the meaningful.”

Yes, Ubuntu is simple, But it is ROBUST.

It is the distribution of Linux distros. Ubuntu is an open-source free Operating System and it has a massive community.

The impact made by Ubuntu:

Using windows made me a bit lacy by using the GUI and the same process every day. But Ubuntu is really awesome and the way command-line works is something different for a normal windows user. The major reason for using ubuntu is

  • Stability and Reliability
  • Productivity and Creativity
  • Security

Ubuntu means Terminal

shortcut to open -> Ctrl + Alt + t

while using the terminal first thing that comes to mind for the ubuntu user is “sudo” Sudo means “superuser do” it will give the user to run that command at the root level. So before the operating system proceeds with the command, it will ask for the password of your computer.

Common Commands In ubuntu:

  • $ cd -> change directory to move another folder
  • $ cd .. -> to move back to previous folder’
  • $ pwd->print working directory prints the current folder
  • $ apt(advanced package tool)->apt is a powerful command-line tool used to manage software(to install, update or upgrade software)
  • $ nano- Open the text editor
  • $ history ->to view history of commands
  • $ cp-> Copy file.
  • $ mv -> move file
  • $ rm -> remove file
  • $ mkdir -> make directory
  • $ cat -> Concatenate files and print on the standard output
  • $ grep-> Print lines of the input matching a specified pattern
  • $ apt-get-> Update installer

Customize your terminal (Oh My Zsh) on Ubuntu :

Update the packages

sudo apt-get update
sudo apt upgrade

Install prerequisite packages

sudo apt install zsh
sudo apt-get install powerline fonts-powerline

Clone the Oh My Zsh Repo

git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh

Create a New ZSH configuration file

cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

Install PowerLevel9k!

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

Set up a theme for your Terminal — Open .zshrc File using gedit editor

gedit .zshrc

And change and put these lines :

ZSH_THEME="powerlevel9k/powerlevel9k"
POWERLEVEL9K_DISABLE_RPROMPT=true
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="▶"
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""

Change your Default Shell

chsh -s /bin/zsh

for this command to be effective you need to restart your system.

Oh My Zsh Terminal

After restarting your terminal will look like this :

Conclusion:

Using ubuntu really helped in the developer point of view for Productivity, Creativity, and also deployment.

THANK YOU!!!

--

--