March 29, 2024, 08:01:39 AM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: devices mounting  (Read 7626 times)

Offline arunkumar

  • New Member
  • Posts: 1
devices mounting
« on: October 31, 2003, 12:09:48 PM »

Mounting by means of double click for I/o devices

Offline dalek

  • LST CareTaker
  • Crescent
  • *****
  • Posts: 243
devices mounting
« Reply #1 on: October 31, 2003, 12:27:04 PM »
OK,  :?

What distro are you using?  Mandrake, Redhat what you got?

What are you trying to link to?  Hard drive maybe?

Give a bit of info and I'll help if I can.

Thanks

 :D  :D  :D

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
devices mounting
« Reply #2 on: October 31, 2003, 03:32:12 PM »
Mounting means relating a file or directory to a specified drive.
ie. If you wanna use your windoz C:\ drive in linux then u have to mount it under a file in linux. I usually make directory C in /mnt and mounts the drive C: under it.

Offline neo

  • Linux Learner
  • ***
  • Posts: 125
    • http://www.investorsgain.com
devices mounting
« Reply #3 on: October 31, 2003, 10:24:28 PM »
You may mount devices under linux by 3 ways:
1) If u have to regularly mount a particular device u can add it in /etc/fstab and it will be automatically mounted on startup.

2) u can also mount any device like a windows partition. For this u need to know the partion number ( eg: /dev/hda1 for 1st partion on the primary master) and the directory u want to mount it on ( Create a directory in /mnt/c if it is c: of windows)
give the command
Code: [Select]
mount /dev/hda1 /mnt/c
3) in the gui in RHL 9.0 i mount cdroms and floppy disks by right clicking on the desktop and then choosing disks then cd or floppy. an icon will be created on the desktop itself. double click on the icon and u can access the disk. it will be mounted in the directory /mnt/cdrom or /mnt/floppy. u can also unount it by right click for the command use
Code: [Select]
umount /mnt/c
u may be needing root for mounting a filesystem by using comands.