LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-04-2003, 08:11 AM   #1
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Question RH 9.0 and where is my Win Partitions?


Hi!!!

This is the first time I use RH and Win2k together in a dual boot. Or I use Redhat or Win-slow, but never in a dual boot.
I did it once though, with Mandrake and it was ok. The problem is... I cannot see my winslow partitions with Redhat, or I'm looking at the wrong place. In Mandrake, if I'm not mistaken, they were at:

/mnt/win_d and /mnt/win_c

What happened?

P.S: My win partitions are in Fat32 and perfectly working, once I boot win2k...

Any help about how to see and write to them would be great

Thanks
 
Old 06-04-2003, 08:18 AM   #2
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
type
mount
at the prompt and you can see where they are, if loaded.
 
Old 06-04-2003, 08:23 AM   #3
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
Thanks whansard

this is what I have.. I'm lost...

Code:
[alex@bonet alex]$ mount
/dev/hda7 on / type ext3 (rw)
none on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/hda8 on /home type ext3 (rw)
none on /dev/shm type tmpfs (rw)
I think hda1 is win_c, hda2 is win_d, but they are not visible... I dunno what to do
 
Old 06-04-2003, 08:34 AM   #4
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
if you want it the same as before
mkdir /mnt/win_c
mkdir /mnt/win_d
mount /dev/hda1 /mnt/win_c
mount /dev/hda2 /mnt/win_d

if that's how you want it, you can make fstab entries later
 
Old 06-04-2003, 10:00 AM   #5
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
whansard, you really are a Guru at this Thanks. It worked fine mounting the C drive, but I could not get D to work, returning this error message:

Code:
[root@Alex root]# mount /dev/hda2 /mnt/win_d
mount: error while guessing filesystem type
mount: you must specify the filesystem type
 
Old 06-04-2003, 10:02 AM   #6
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
I've got it... oddly, my D:\ partition is listed as hda5... strange...

Thanks a lot my friend
 
Old 06-04-2003, 10:42 AM   #7
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
thanks for the complement, but i don't think that deserves
it. do you think that your d drive is ntfs?
i don't know if your kernel supports that or not, but i think
you could download support for it without recompiling
your kernel.
it might be mount -t ntfs -o ro /dev/hda2 /mnt/win_d

you can post output from fdisk -l
that might reveal some other options
 
Old 06-04-2003, 11:05 AM   #8
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
My D drive was actually NTFS before, that's true. I then converted it with PQmagic 8 to FAT32, so I could safely write to D from Linux. That made my Linux locks up at the boot. I've just formated and installed Redhat in it's old Linux Partitions, but in a fresh install. So I'm sure that D:\ is FAT32 now .
Unless, Pqmagic did something odd at it :S.

Well, I hope you also understand about CDroms and DVDroms. I've another mounting problem. Mandrake had some useful mouting tools and with acid help I could fix it, but I cannot get it to work anymore.

I've a DVD rom, set as master and at my mnt/cdrom and a cd-r at my mnt/cdrom1.
I can mount it with

mount /dev/cdrom /mnt/dvd

but always when I try to play DVD movies I got an error:

Couldn't open DEVICE : /dev/dvd

I think I'm missing some link somewhere or not mounting it properly. My fstab has:

Code:
LABEL=/                 /                       ext3    defaults        1 1
none                    /dev/pts                devpts  gid=5,mode=620  0 0
LABEL=/home             /home                   ext3    defaults        1 2
none                    /proc                   proc    defaults        0 0
none                    /dev/shm                tmpfs   defaults        0 0
/dev/hda9               swap                    swap    defaults        0 0
/dev/cdrom              /mnt/cdrom              udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/cdrom1             /mnt/cdrom1             udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0                /mnt/floppy             auto    noauto,owner,kudzu 0 0
Sorry to ask those newbie stuff but I'm a newbie...hehe
Thanks a lot again
 
Old 06-04-2003, 11:10 AM   #9
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
ln -s /dev/cdrom /dev/dvd

then play the dvd
 
Old 06-04-2003, 11:26 AM   #10
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
That worked... I cannot believe how you guys can learn so much. Hope someday I can have this level with this wonderful thing Linux is
I did not undestand the code ln, but rocks

Thanks a lot my friend once again. Thanks to you I will watch tonight Lord of the Rings SE with my wife in my Linux Box .

Viva Linux!!!
 
Old 06-04-2003, 05:48 PM   #11
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
Thanks.
 
Old 06-05-2003, 01:31 PM   #12
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
Well, if you still reading this post and if I'm not annoying you I've one more newbie question.
How should I do to mount those partitions automaticaly at the boot up? I've added into fstab /dev/hda5 /mnt/win_d for exemple, but it was really wrong, I think

thanks again
 
Old 06-05-2003, 01:47 PM   #13
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
/dev/hda5 /mnt/win_c vfat user,noexec,nodev,suid,rw,umask=0 0 0

probably what you want
 
Old 06-05-2003, 03:19 PM   #14
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Original Poster
Rep: Reputation: 65
Thanks again man As always, it worked.

Well, I think I better print this page out to when I ever need to format my computer and update my changelog

Thanks again.
 
  


Reply



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
fc3 partitions read from Win XP eb2e2 Fedora 16 02-06-2005 05:16 PM
Help I can't open Win Partitions in Linux otacon 14112 Linux - General 2 04-07-2004 01:12 AM
how to view win partitions in linux sanjaya Linux - Software 4 02-19-2004 07:19 PM
Sharing Partitions between RH and Win Smooth Linux - Newbie 3 07-26-2003 06:50 AM
win partitions zovres Linux - Newbie 3 10-21-2002 05:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 12:28 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration