How To Mount Files in Linux

Hi Everyone Today I have downloaded a .iso file in my linux OS . But I dont know how to open a image file in linux , I previously used daemon software for the windows OS . And I have got some new commands for linux to mount the .iso file same as daemon software.

1.  Make a directory to mount the files :

    mkdir -p /mnt/disk

2. Now mount the image file with the command:

    mount -o loop  .iso file name /mnt/disk

3. Now locate the directory to check whether it have been loaded

   cd /mnt/disk

   ls -l                         -----> here we could find the .iso images have been created.




No comments:

Post a Comment