• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Techgoeasy

Techgoeasy

Learn Oracle, PHP, HTML,CSS,Perl,UNIX shell scripts

  • Home
  • Oracle
    • Oracle database
    • Oracle Ebusiness Suite
    • Oracle weblogic
    • Oracle Performance Tuning
    • Oracle Hyperion
    • Oracle Cloud Tutorials
  • SQL
  • interview questions
  • Linux
  • PHP and HTML
  • Downloads
  • General
Home » Unix command and scripts » Useful SSH Putty commands

Useful SSH Putty commands

September 4, 2020 by techgoeasy 2 Comments


Useful SSH Putty commands

These are 41 Most Useful SSH Putty commands to help you manage the VPS (Virtual Private server) or Dedicated Server.

These putty commands should help you in daily work on  the server.  I have included SSH Putty commands for all major Linux distribution like Cent-OS ,Ubuntu

(1)How to connect to Server using putty

Download Putty here
(a)Provide Hostname or IP address of the VPS or dedicated server (b) Choose SSH or telnet (c) For SSH, it will ask for verification of keys (d) Provide username and password and  login to the system we can use the puttycm tool.It is very useful if you are managing multiple server

PuTTY CONNECTION MANAGER (PuttyCM)

(2) Check Linux Distribution
cat /etc/*-release

(3) How to reboot the VPS
reboot

(4) How to find uptime of the box
Uptime

(5) How to check the filesystem space
df -k
or
df -h

(6) How to check CPU
We can use top command

top

SSH Putty commands


(7) How to update package

Cent-OS distribution

yum update
Ubuntu distribution

apt-get install

(8) How to list the file

Use ls command
ls : it will list file

ls -lrt : it will list files in order of timestamp

ls -l: it will list file with details

(9) How to locate the configuration files

locate my.cnf

locate httpd.cnf

(10) How to start and Stop httpd service
how to start and stop httpd service

(11) How to stop and start the MySql service
How to start and stop mysql on Linux

(12) How to edit the file 

We can use either vi and Nano editor for it

check out below tutorials for vi

vi editor :- vi editor tutorials

for Nano,below command will be of help

nano <file name> : This will open filename for edit.

(13) How to create directory

mkdir command is used to create directory

mkdir image

(14) How to remove the file

rm command can be used to delete the file

rm <file name>

(15) How to change password for the username

As root user

passwd <user name>

As user only

passwd

(16) How to remove the directory

rmdir can be used to delete the directory. Directory must be empty for  deletion from this command

rmdir <directory name>

(17) How to kill a process

Sometimes , you may want to kill a  stuck process. You can use kill command to do it. We need to get the PID of the process and then kill using below command

kill <pid>

(18) How to search for a string across the files

You can use grep command to do it. Read below detailed article on it

grep "test" *.txt

grep command in Unix and Linux with examples

(19) How to backup the directory or folder

You may often want to backup directory or folder before performing changes on the system . We can use tar command for this. It is a very useful utility to perform backup

tar -cvf foldername.tar foldername

tar -xvf foldername.tar

tar a directory :- how to tar a directory in Linux

(20) How to check the content of the file

We can use cat command for it

cat <file  name >

If the file is large , we can use more here to scroll as required

cat <file name>|more

(21) How to download files from external locations

Use wget command.

wget http://wordpress.org/latest.tar.gz

(22)  How to change ownership of the files or directory

chown can be used to do it

chown tech:tech <filename>

chown -R tech:tech <directory name> : It will change ownership in directory recursively

(23)  How to change permission of the files

We can use chmod command for that

chmod 755 <file name>

(24)  How to find the system name and version

uname -a

(25) How to find the version of Ubuntu running on the system

cat /etc/issue

(26) how to walk into the directories

We use cd command to walk into directories

cd <directory name>

To come out of directory, we use

cd ..

(27) How to copy the files

Use cp command to do it

cp <file name1> <filename 2>

(28) How to rename the files or directories

Use mv command

mv file1 file2

(29) How to check for Port usage in the system

netstat -anp|grep <port no>

(30) How to shutdown the box

Type shutdown command
shutdown

(31) How to check what all users are logged into the box

Use finger command

finger

(32) How to check for running processes on the system

Use ps command

ps -ef|grep <process name>

ps -ef|grep mysql

(33) How to check the used and free RAM on the box

Use free command

free

(34) How to enable service start on reboot ?

We can use chkconfig or systemctl command for this

chkconfig mysqld on

systemctl mysqld enable

(35) How to find files across directories

We can use find command
find . -name "test*" -print

find command : -find command in Unix with example,How to use find command in Unix.Unix find directory command,how to find find based on modified time

(36) How to read large file in command line
We can use more command to read the large file in command line

more

(37)Printing last few lines

We can use tail command to print the lines at the end of file

tail
We can specify the number of lines also
tail -100 alert.log

(38)Printing starting few lines

We can use head command to print the lines at the start of file

head
We can specify the number of lines also
head -100 alert.log

(39)command line history

We can use history command to print all the command executed recently. This can help us find the command executed

history

(40)File Manipulation command
We can use awk or sed for that. These are very powerful command
ps -ef|grep pmon|awk '{print $NF}'

Please read below articles for details

sed command :- sed command is a Stream Editor – works as a filter processing  input line by line And here are 32 Useful sed command examples in Linux/Unix
awk command:-Awk command in Unix or Linux is a powerful command for processing text. Learn about awk syntax, records, fields, line Separator with examples of awk in unix

(41)man command to know about option for the above command
We can use man
man history

SSH Putty commands

I hope you like this compilation of useful SSH Putty commands. This is not at all the complete list.I have just tried to compile the most used ones. Please do let me know what other command should i add in this list

Related Articles

How to install SSH on Ubuntu : This post on how to install SSH on Ubuntu and troubleshoot various issues while implementing it
Linux Tutorials : List of all the Linux Articles to help in getting good knowledge on Linux Day to day Activities
Linux command for Oracle DBA : This post list all the Linux command which Oracle DBA must know in order to be successful
Unix shell scripting interview questions :Great compilation of unix shell scripting interview questions for success in any interviews.Examples are given for the command also
split unix command : Details about Split command, how we can split based on lines,bytes and much more
how to tar a directory in Linux : how to tar a directory in Linux,tar command example, tar compress directory,tar gzip command , untar/extract command, tar cvfz command,tar xvfz command
https://en.wikipedia.org/wiki/PuTTY


Filed Under: Unix command and scripts Tagged With: putty, ssh command, ssh putty command

Reader Interactions

Comments

  1. Princess Mehwish says

    December 24, 2019 at 5:48 am

    Thanks for sharing the knowledge, keep up the good work.

    Reply
    • techgoeasy says

      January 30, 2020 at 4:18 am

      Thanks Princess

      Reply

Leave a Reply Cancel reply

Primary Sidebar

Top Posts & Pages

  • Oracle Indexes and types of indexes in oracle with example
  • Top 30 Most Useful Concurrent Manager Queries
  • Top 46 Oracle ASM Interview Questions
  • Oracle dba interview questions and answers
  • 40 question you must know about R12.2



Subscribe to our mailing list

Enter your email address to subscribe to this blog and receive notifications of new posts by email

Recent Posts

  • EBS PDB service name disappear from listener in 19c
  • how to download oracle e-business suite 12.2 software
  • Step by step upgrade process to R12.2 Upgrade part -2(Main Upgrade Driver for R12.2.0)
  • Step by step upgrade process for R12.2 Upgrade Part -1
  • Step by step upgrade process for R12.2 Upgrade Part -4(Applying 12.2.x Release Update Pack)

Copyright © 2021 : TechGoEasy

  • Hire me
  • Privacy Policy
  • Contact Us
  • New? Start Here
  • About Us