aarinfantasy's YAOI Collection

Results 1 to 1 of 1
  1. #1
    Yaoi Amateur
    Join Date
    Aug 2014
    Location
    /dev/null
    Posts
    63
    Points
    0
    Savings
    0


    Post How to mount .ISO files on *NIX Systems

    You need
    • Your Terminal Emulator (konsole, gnome-terminal..etc)
    • Root Permissions
    • A little knowledge how to use the Terminal (cd, ls)


    1) Open a Terminal and switch to root by typing:
    Code:
    sudo -i
    Some distros don't support sudo / or you might not be in the /etc/sudoers file, if that's the case just use:
    Code:
    su
    You'll be aasked for your password (sudo) / the root's password (su)
    2) navigate to the location of your iso (using cd).
    Then type:
    Code:
    mkdir -p /mnt/iso && mount -o loop YourISOFile.iso /mnt/iso
    (Of course you have to replace YourISOFile.iso with the filename of your iso)
    Your iso is now mounted at /media/iso
    3) If you don't need your iso file any more just unmount it like that:
    umount /mnt/iso && rm -r /mnt/iso
    Hope this helps.


 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •