Basic Linux Commands Useful for EEC 281

EEC 281 homework projects are done using CAD tools runing on the Red Hat Enterprise Linux operating system.

A few useful linux commands

Check size of directories in your account (size in MB):

   cd
   du -s -m *              # size of files/directories not beginning with "."
   du -s -m .[a-zA-Z0-9]*  # size of files/directories beginning with "."
   man du                  # manual page with more information
Using -h instead of -m gives results with variable units.



EEC 281 | B. Baas | ECE Dept. | UC Davis
Written by Bevan Baas

Updates

2018/03/12  Written