User Tools

Site Tools


ubuntu:bash:commands

This is an old revision of the document!


Commands

System

Command
Display linux system informationuname -a
Display kernel release informationuname -r
Show how long a system has been runninguptime

Archiving / Compression

Command
Create a tar file containing a directorytar cf home.tar /home
Create a tar file with gzip compressiontar czf tarfile.tar.gz files
Extract files from a tar filetar xf filename.tar
Compress file and rename it to filename.gzgzip filename

Booting

Command
Show boot messagesdmesg
Show system reboot historylast reboot

Date and Time

Command
Show current date and timedate

File and Disk

Command
Display all information on files and directoriesls -a
Show path of current directorypwd
Create a directorymkdir dirname
Delete a filerm filename
Delete a directory recursivelyrm -r dirname
Forcefully delete a filerm -f filename
Forcefully delete a directory recursivelyrm -rf dirname
Copy file1 to file2cp file1 file2
Copy directory1 to directory2, create directory2 if it does not existcp -r dirname1 dirname2
Create a symbolic link to a filenameln -s /path/to/filename linkname
Create or update a filetouch filename
Place standard input into a filecat > filename
Output contents of filemore file
Output first 10 lines of filehead file
Output last 10 lines of filetail file
Output contents of file as it grows starting with last 10 linestail -f filename
Encrypt filegpg -c filename
Decrypt filegpg filename.gpg
Print the number of chars, words and lines in a filewc filename
Execute command lines from standard inputxargs
Change permission of a filechmod 666 filename

Disk Usage

Command
Show free space on mounted filesystemsdf -h
Show free inodes on mounted filesystemsdf -i
Show disk partition sizes and typesfdisk -l
Display disk usagedu -ah
Display total disk usage on the current directorydu -sh
Display mount points for all filesystemsfindmnt
Mount a devicemount device-path mount-point

File Transfer

Command
Secure copy file to hostscp file.txt server2:/tmp
Synchronize source to destinationrsync -a /home/peter /backup/

Hardware

Command
Display CPU informationcat /proc/cpuinfo
List the number of interupts per CPU per I/O devicecat /proc/interrupts
List hardware configuration informationlshw
Display block device related informationlsblk
Display PCI deviceslspci -tv
Show USB deviceslsusb -tv
Show BIOS informationdmidecode
Show disk informationhdparm -i /dev/sda
Perform a disk speed testhdparm -tT /dev/sda
Test for unreadable blocks on a diskbadblocks -s /dev/sda

Login

Command
Connect to host as userssh user@host
Connect to host using specific portssh -p port user@host
Connect to host using telnet porttelnet host

Memory

Command
Display used and free memoryfree -m

Network

Command
Show the system hostnamehostname
Display IP address of the hosthostname -i
Display all network interfaces and IP addressesip addr show
Display network interfaces and IP addresses for an interfaceip addr show eth0
Set IP addressip addr add 192.168.0.1 dev eth0
Delete IP addressip addr del 192.168.0.193/24 dev wlan0
Show Ethernet statusethtool eth0
Show Ethernet statusmii-tool eth0
Show Routing tableip route show
Show the route packets will takeip route get 192.168.0.1
Change default routeip route add default via 192.168.0.2
Send echo request to test connectionping host
Get who is information for the domainwhois domain
Get DNS information for the domaindig domain
Get Reverse DNS information for the hostdig -x host
Lookup DNS IP address for the domainhost google.com
Lookup local IP addresshostname -i
Download a filewget filename
Show all listening network portsnetstat -tulpn
Show network statsip -s link
Show network stats for an interfaceip -s -s link ls eth0
Show arp entriesip neighbour
Monitor network messagesip monitor all
Activate network interfaceip link set ppp0 up
Deactivate network interfaceip link set ppp0 down
Enable TCP Delayed Ackip route quickack

Packages

Command
Install RPM based packagerpm -i pkgname.rpm
Remove packagerpm -e pgkname
Install from source./configure
make
make install

Process

Command
Display your currently active processesps
Find all processes related to “telnet”ps aef|grep 'telnet'
Memory map of processpmap
Display all running processestop
Kill process with specific pid idkill id
Kill all processes named xxxkill xxx
Resumes suspended job without bringing them to the foregroundbg
Brings the most recent job to the foregroundfg
Bring job n to the foregroundfg n

Command
Search for a pattern in filesgrep pattern files
Search recursively for pattern in directorygrep -r pattern directory
Find all instances of filelocate filename
Find filenames that start with xxxfind /home/peter -name 'xxx*'
Find filesnames larger than 10000kfind /home/peter -size +10000k

Users

Command
Display who is logged inw
Show who is logged into the systemwho
Display who you are logged in aswhoami
Display information on a userfinger user
Show the active user id with login and groupid
Show last logins on the systemlast
Add a groupgroupadd groupname
Add a useradduser peter
Add a useruseradd -c “Peter Roux” - g admin -m peter # Add user peter
Delete a useruserdel peter
Modify user informationusermod peter
ubuntu/bash/commands.1574988050.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki