Appendix
Appendix
This chapter provides a brief overview of using the BioExcel Building Block (biobb) to prepare biomolecular systems for molecular dynamics simulations with GROMACS, starting from PDB file manipulation.
13 Introduction
Basic Linux Commands Useful for HPC: These commands are essential for navigating directories, managing files, and monitoring jobs on an HPC system.
File and Directory Management
pwd— show current directoryls— list filesls -l— detailed file listingcd directory_name— change directorycd ..— move up one directorymkdir folder_name— create a directoryrm file— delete a filerm -r folder— delete a directory (use carefully)
Viewing and Editing Files
cat filename— display file contentsless filename— view large files safelyhead filename— show first 10 linestail filename— show last 10 linesnano filename— edit file (beginner-friendly)vi filenameorvim filename— advanced editor commonly used on HPC
System and Job Monitoring
whoami— show your usernamehostname— show compute/login node nametoporhtop— monitor running processesdf -h— check disk usagedu -sh folder_name— size of a directory
Job Scheduler (examples — cluster dependent) Actual commands depend on the scheduler used on BigDawg, such as SLURM
sbatch job.sh— submit a jobsqueue -u username— check job statusscancel jobID— cancel a job
This post is licensed under CC BY 4.0 by the author.