Red HatThis forum is for the discussion of Red Hat Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
first, do "fdisk -l" (as root) to be sure how the drive is seen by the system. (probably hdb_)
The normal place to mount internal drives is /mnt, but you can put it whereever you want. You may find that RHEL has already made an entry in /mnt (and also possibly mounted the drive)
If you do have to mount it yourself, first create a "mount point" (a directory)--eg "mkdir /mnt/mydata", then add an entry to /etc/fstab which looks soemthing like:
/dev/hdbX /mnt/mydata xxxx defaults 0 0
(replace X with the correct partition #, and xxxx with the filesystem type (eg ext3)) See man fstab for more info on the format of the entries.
You can now mount the drive using "mount /mnt/mydata" As written, it will also automatically mount on the next bootup.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.