Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > Your Distro > Redhat / Fedora Linux Help
Reload this Page Help!! Can't Mount my Hard disk!
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Redhat / Fedora Linux Help Help and discussion related to Redhat and Fedora Linux.

Reply
 
Thread Tools Display Modes
Old 10-19-2004   #1 (permalink)
Just Joined!
 
Join Date: Oct 2004
Location: Canada Eh!
Posts: 21
Help!! Can't Mount my Hard disk!

Hiyall!! I need help on how to mount my hard disk. I have WinXP and RH9. WinXp is on my C drive (hda) and my RH9 is on my other drive (hdb5). I want to access my data drive (which is the first partition on my hdb) which is shown from browsing the hardware as hdb1. I went to etc/fstab and added a line to mount it but after rebooting the system it will say mountpoint cannot be found.

Please help!
__________________
It\'s all about humanity..
Drool King is offline   Reply With Quote
Old 10-19-2004   #2 (permalink)
Linux Newbie
 
Join Date: Oct 2004
Location: Manchester, England
Posts: 165
Send a message via MSN to FyberOptyx
did you create the directory that the mount point refers to ?
FyberOptyx is offline   Reply With Quote
Old 10-19-2004   #3 (permalink)
Just Joined!
 
Join Date: Apr 2003
Posts: 3
Check the type of file sytem you are mounting i.e it is EXT2 ,EXT3 or FAT.Since Windows XP may be in FAT or NTFS file system.
specify the correct file system to be mounted in the /etc/fstab
__________________
Karan Murali
karanmurali is offline   Reply With Quote
Old 10-19-2004   #4 (permalink)
Just Joined!
 
Join Date: Oct 2004
Location: Canada Eh!
Posts: 21
Karanmurali - I tried this

mount -t vfat /dev/hdb1 /mnt/dos (vfat)
and this
mount -t auto /dev/hdb1 /mnt/fat32 (vfat)

But I still cannot access the drive

Fyber - I also went to my /etc/fstab and added this

/dev/hdb1 /mnt/dos vfat defaults 0 0

and it still would not mount

I dont know why because when I run the Gnome Hardware Browser all the hardisk are seen (hda1 - WinXp and hdb1 (data) and hdb5 my RH9).

My RH9 is on the same HD as the one that I'm trying to mount. Please help...
__________________
It\'s all about humanity..
Drool King is offline   Reply With Quote
Old 10-19-2004   #5 (permalink)
Linux Newbie
 
Join Date: Oct 2004
Location: Manchester, England
Posts: 165
Send a message via MSN to FyberOptyx
do you actually have a directory called /mnt/dos ?
FyberOptyx is offline   Reply With Quote
Old 10-20-2004   #6 (permalink)
Just Joined!
 
Join Date: Oct 2004
Location: Canada Eh!
Posts: 21
Fyber - there is no directory /mnt/dos. But isn't it that you're suppose to mnt that hd/partition because it is formatted in winxp (/mnt/dos). I looked (used df) and found that the drive/partition that I'm trying to access has an * on it . Is this because it is on the 1st track of my hard disk (my RH9 is on the same hd but on a different partition - it is tagged as hdb5.

I thank you guys for taking the time out to help me.

DK
__________________
It\'s all about humanity..
Drool King is offline   Reply With Quote
Old 10-21-2004   #7 (permalink)
Linux Newbie
 
Join Date: Mar 2004
Posts: 119
You need a directory called /mnt/dos.
tuubaaku is offline   Reply With Quote
Old 10-21-2004   #8 (permalink)
Linux User
 
Join Date: Oct 2004
Location: /dev/random
Posts: 404
Quote:
Originally Posted by Drool King
Fyber - there is no directory /mnt/dos. But isn't it that you're suppose to mnt that hd/partition because it is formatted in winxp (/mnt/dos). I looked (used df) and found that the drive/partition that I'm trying to access has an * on it . Is this because it is on the 1st track of my hard disk (my RH9 is on the same hd but on a different partition - it is tagged as hdb5.

I thank you guys for taking the time out to help me.

DK
Well, the way it goes is you always mount a partition onto an EXISTING directory in the filesystem.

UNIX traditionally has been designed to treat all things as files - be it a device (which are called as special files in UNIX terminology), a directory (which becomes a directory special file) or a normal file.

So, when you mount a partition, it becomes accessible as part of the unform filesystem and you can use the same tools - like cp, ls etc - on it.

Linux derives from this same philosophy.

So, you see, you need to have the mountpoint (the directory where you want to mount the partition) already created.
__________________
The Unforgiven
Registered Linux User #358564
the_unforgiven is offline   Reply With Quote
Old 10-21-2004   #9 (permalink)
Linux Newbie
 
Join Date: Oct 2004
Location: Manchester, England
Posts: 165
Send a message via MSN to FyberOptyx
lets split this up:
mount -t vfat /dev/hdb1 = what to mount
/mnt/dos (vfat) = where to mount it, ie. where is can be accessed
to be able to mount /mnt/dos it needs to exist
Code:
mkdir -p /mnt/dos
same for any other mounts, create the directory
FyberOptyx is offline   Reply With Quote
Old 10-23-2004   #10 (permalink)
Just Joined!
 
Join Date: Oct 2004
Location: delhi
Posts: 6
Send a message via Yahoo to ankit_iiita
As fyberoptyx said first u want to create a directory in the
/mnt directory
mkdir /mnt/dos would do
check your hard drive type
redhat do not support NTFS partition
u need a software for that
after this as root type
mount /dev/hda1 /mnt/dos
check if its mounted then u need to make it permanent by editing the /etc/fstab file
instead of writing vfat try auto it worked for me and do properly save the file i hope this solves your problem
__________________
MAY THE PENGUIN BLESS U ALL
ankit_iiita is offline   Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
 

Free Magazines
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 09:43 AM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0