Open mayurwaghmode opened 2 years ago
grep -i staticpod /var/lib/kubelet/config.yaml
ps -ef | grep /usr/bin/kubelet
sudo find / -name kube-controller-man* |grep bin
sudo grep -r kube-controller-man /etc/
find
– search for files in a directory hierarchy
Usage: find [OPTION] [path] [pattern]
eg.
find file1.txt
find -name file1.txt
grep
print lines matching a pattern
Usage: grep [OPTION] PATTERN [FILE]...
grep -i apple sample.txt
du -sh
command will show the total disk usage of a file or directory in a human-readable format. For example, if you run
du -sh /home/user/Documents
,
it will display the total size of the "Documents" directory in a human-readable format.
How to find the particular directory or file despite not knowing the actual path
find / -name httpd.conf
find / -type d -name http
to find the error message in a particular file or directory
grep error logs.txt
grep error *
to compare two different files we can use diff and sdiff commands
diff httpd.conf httpd.conf_bkp
sdiff httpd.conf httpd.conf_bkp
(side by side diff)
ls
— To list directories.pwd
— To Print working directory.cd
— To navigate through directories.mkdir
— To create directories in Linux.mv
— Move or rename files in Linux.cp
— Similar usage as mv but for copying files in Linux.rm
— Delete files or directories.touch
— Create blank/empty files.ln
— Create symbolic links (shortcuts) to other files.cat
— Display file contents.clear
— Clear the terminal display.echo
— Print any text that follows the command.less
— Linux command displays paged outputs in the terminal.man
— Access manual pages for all Linux commands.uname
— Linux command to get basic information about the OS.whoami
— Get the active username.tar
— Command to extract and compress files in Linux.grep
— Search for a string within an output.head
— Return the specified number of lines from the top.tail
— Return the specified number of lines from the bottom.diff
— Find the difference between two files.cmp
— This allows you to check if two files are identical.comm
— Combines the functionality of diff and cmp.sort
— Linux command to sort the content of a file while outputting.export
— Export environment variables in Linux.zip
— Zip files in Linux.unzip
— Unzip files in Linux.ssh
— Secure Shell command in Linux.service
— Linux command to start and stop services.ps
— Display active processes.kill
andkillall
— Kill active processes by process ID or name.df
— Display disk filesystem information.mount
— Mount file systems in Linux.chmod
— Command to change file permissions.chown
— Command for granting ownership of files or folders.ifconfig
— Display network interfaces and IP addresses.traceroute
— Trace all the network hops to reach the destination.wget
— Direct download files from the internet.ufw
— Firewall command.iptables
— Base firewall for all other firewall utilities.apt, pacman, yum, rpm
— Package managers depending on the distribution.sudo
— Command to escalate privileges in Linux.cal
— View a command-line calendar.alias
— Create custom shortcuts for your regularly used commands.dd
— Majorly used for creating bootable USB sticks.whereis
— Locate the binary, source, and manual pages for a command.find
— To search file.passwd
— Create or update passwords for existing users.top
— View active processes live with their system usage.useradd
andusermod
— Add new users or change existing user's data.passwd
— Create or update passwords for existing users.vi
— To edit a file using vi editor in the terminal.whatis
— Find what a command is used for.