Linux Command Line - part 2

Smd SohailSmd Sohail
2 min read

Exploring the Filesystem.

  1. Tree

  • The tree command is a good way to get a bird’s-eye view of the filesystem tree.

  • Use tree -d to view just the directories.

tree #listing all the file system including files and directories in the tree view.
tree -d #list all the directories alone in tree view.
  • syntax is ln (original file path) (new file path).

  • The link is between the filename and the actual data stored on the filesystem. Creating an hard link to a file means :

    First, you create a new filename pointing to the exact same data as the old filename. This means that the two filenames, though different, point to identical data.

  • For example, if I create file /home/sohail/file1and write hello world in the file, I have a single hard link between the file name file1 and the file content hello world.

      # Suppose that file1 already exists. 
      # A hard link, called file2, is created with the command:
    
      $ ln file1 file2
    

    Note that two files now appear to exist. However, a closer inspection of the file listing shows that this is not quite true.

  • if i create another hardlink we can see that both are having the “same inode no” and the integer count in the output increased from (1 to 2).

      $ ls -li file1 file2
    

    Hard links are very useful and they save space, but you have to be careful with their use, sometimes in subtle ways.

  • For one thing, if you remove either file1 or file2 in the example, the inode object (and the remaining file name) will remain, which might be undesirable, as it may lead to subtle errors later if you recreate a file of that name.

  • Soft (or Symbolic) links are created with the -s option, as in:

      $ ln -s file1 file3
      $ ls -li file1 file3
    

    here, Notice file3 no longer appears to be a regular file, and it clearly points to file1 and has a different inode number.

  • Symbolic links take no extra space on the filesystem (unless their names are very long). They are extremely convenient, as they can easily be modified to point to different places.

"HAPPY LEARNING - HAPPY SCRIPTING"

More Commands in next blog till then Cyaaaaaa, Have a good day :)

Quote Of The Day~~

"Do something today that your future self will thank you for."

0
Subscribe to my newsletter

Read articles from Smd Sohail directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Smd Sohail
Smd Sohail

Hey, I'm Smd Sohail a passionated Engineering Grad👨‍💼, dedicated to showcase my talents and knowledge on technology. I'm skilled in Python, Sql and Data, also proficient in CRM tools "Odoo". I have actively contributed as a core team member of the GDSC student club In my college, where I have collaborated the growth within the tech community ⭐. My passion, is especially in areas like Cloud, Data, Product👨‍💻🏃is undefined. I am eager to learn and explore these technologies in the future and eagerly awaiting for the opportunities so, this interest drives me to continuously explore new 🌎 🚀 possibilities on future technology everyday. I like to solve problem in structured way, where I always believe in making efforts to achieve extraordinary achievements. im a planner, team player and i enjoy leadership management and always open to suggestions. during my free time i will explore different tech tools that are present in the market to make my work easier and i also share insights through blogging when free, check it out 📕.