Category: Linux

tar / gzip commands

Here, we are sending the tar file to -, which stands for tar’s standard output. This is piped to gzip, which compresses the incoming tar file, and the result is saved in backup.tar.gz. The -c option t

tcpdump commands

Capture DHCP requestsPXE pxedhcp01 ~ # tcpdump -i eth1 \(port 67 or port 68\)tcpdump: verbose output suppressed, use -v or -vv for full protocol decodelistening on eth1, link-type EN10MB (Ethernet), c

Top CPU & Memory Processes

Display top 10 processes eating up CPUDisplay by processps -eo pcpu,pid,user,args | sort -k 1 -r | head -10 Display by userps -U apache -u apache u Display top 10 processes eating up memoryps axo %mem

How to Add Swap Space

How To Add Swap Space to a Linux SystemThere are two ways to go about adding swap space to a linux system. Use of a hard disk partition Create a swap file on an existing file system To view current

/boot/grub/stage1 not read correctly

After pxe booting a server and installing linux from a cpio archive, grub failed to load using the grub-install command. The error presented was as follows: root@pxe:~# mkdir /targetroot@pxe:~# mount

Enable auto logoff

Enabling automatic logoffSystems can be set to automatically logoff a user after a period of activity by setting some parameters: Linux/Solaris /etc/profile AIX /etc/security/.profile Parameter decl

Set static and default gateway in route-eth file

Define default gateway in route-eth file[root@linux01 ~]# cat /etc/sysconfig/network-scripts/route-eth1default via 10.195.30.1 dev eth1 Define default gateway in /etc/sysconfig/network:[root@linux01 ~

cron tips

Cron tipscrontab formatHere’s a quick comment that can be added to users crontabs as a reminder to the crontab format: # m h dom mon dow command There are various ways to schedule a command to run, su

Create chroot jail with openssh

How to create a chroot jail with openssh (sftp only)This write up describes how to utilize openssh to setup a chroot jail for sftp connections within the CentOS family. I tried & tried to install