Archives
- February 2025
- January 2025
- October 2024
- August 2024
- June 2024
- May 2024
- February 2024
- December 2023
- October 2023
- June 2023
- April 2023
- August 2016
- June 2016
- May 2016
- February 2016
- December 2015
- October 2015
- May 2015
- April 2015
- January 2015
- December 2014
- November 2014
- October 2014
- January 2014
- December 2013
- November 2013
- October 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- April 2012
Categories
Meta
Category Archives: Linux
Useful sed Commands
To break up a large .csv file into multiple smaller files with 1000 lines:sed -n ‘1,1001p’ large_table.csv > output_1.csv sed -n ‘1002,2001p’ large_table.csv > output_2.csv
Posted in Linux
Comments Off on Useful sed Commands
Useful Docker Commands
To see memory and CPU usage for all containers: docker stats b. To see disk usage for all containers: docker ps -s c. To see memory usage for all containers: docker stats –no-stream –format “{{.Name}}: {{.MemUsage}}” d. To see which … Continue reading
Posted in Linux
Comments Off on Useful Docker Commands
SSH Commands
Use ssh to execute a command on a remote system:ssh user@user@server.com <command> Create a log of an ssh session:ssh user@server.com | tee -a ~/server.com.ssh.log Copy a file from your local directory to a directory on a remote system:scp [filename] [user]@[server.com]:/remote/directory
Posted in Linux
Comments Off on SSH Commands
Cool Bash Commands
Remove the ABCD– prefix from a filename:$ s=’ABCD –11212239.pdf’$ mv “$s” “${s#ABCD–}” Remove the prefix from all files in current directory recursively:while IFS= read -r -d ” filename; do mv “$filename” “${filename#ABCD–}”done < <(find . -type f -name ‘ABCD–*’ -print0) … Continue reading
Posted in Linux
Comments Off on Cool Bash Commands
Resize a Volume Group in Linux
#Check size of Volume Groupdf -h -T | grep vg#Display volume group info. Check for free spacesudo vgdisplay#Display logical volume infosudo lvdisplay#Test runsudo lvextend -t -v -l +100%FREE /dev/ubuntu-vg/ubuntu-lv#Actual runsudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv#Resize logical volumesudo resize2fs /dev/ubuntu-vg/ubuntu-lv#Verifydf -h -T … Continue reading
Posted in Linux
Comments Off on Resize a Volume Group in Linux
Booting into Single User Mode from Grub
To boot into single user mode from the Grub menu: In Ubuntu, the Grub Menu should appear if you press and hold Shift while Grub is loading, if you boot using BIOS. If your Ubuntu system boots using UEFI, press Esc instead. You … Continue reading
Posted in Linux
Comments Off on Booting into Single User Mode from Grub
Calculate MySQL usage
Calculate MySQL Memory Usage – Quick Stored Procedure
Posted in Linux
Comments Off on Calculate MySQL usage
Useful Nmap Commands
To see what systems on the 192.168.11.0 network are listening on port 22:nmap -sV -p 22 192.168.11.0/24 To do an nmap ping scan on 192.168.11.0 network:nmap -sp 192.168.11.0/24 To scan the top five ports on 192.168.11.7:nmap –top-ports 5 192.168.11.7
Posted in Linux
Comments Off on Useful Nmap Commands
How to determine the Ubuntu version
Use the Linux Standard Base command as follows:lsb__release -a
Posted in Linux
Comments Off on How to determine the Ubuntu version