LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-24-2003, 05:59 AM   #31
Becker004
LQ Newbie
 
Registered: Jul 2003
Posts: 8

Rep: Reputation: 0

Quote:
Originally posted by MasterC
hda4 is an extended partition, it's shown there just to show you that it's there. The partitions hda4 is containing as logical partitions are hda5 and hda6 (hda6 is swap though). So if you want to mount hda4 in actuality you want to mount hda5 because that is the only usable partition in the hda4 extended partition.

Extended partitions aren't really partitions that you mount, they are like garages. You part your logical partititions inside the extended ones. You don't use/drive a extended partition/garage but you do use/drive a logical/car

If that helps at all

Cool
It says it mounted. But i do not see my files that i had from windows... i was thinking about converting that whole drive to a logical partition. would that be a bad move?
 
Old 07-24-2003, 06:06 AM   #32
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Other than losing all your data I don't see why not?

There is no benefit though either. If everything is logical (you'll need 1 primary to be extended anyway though) I guess it might be easier since all the numbers will start with 5 or more: hda5 and so on.

When it said it mounted, can you post up what:
mount
Shows you?

Just type "mount" without the quotes into a console and paste up what you get.

Cool
 
Old 07-24-2003, 06:14 AM   #33
Becker004
LQ Newbie
 
Registered: Jul 2003
Posts: 8

Rep: Reputation: 0
Quote:
Originally posted by MasterC
Other than losing all your data I don't see why not?

There is no benefit though either. If everything is logical (you'll need 1 primary to be extended anyway though) I guess it might be easier since all the numbers will start with 5 or more: hda5 and so on.

When it said it mounted, can you post up what:
mount
Shows you?

Just type "mount" without the quotes into a console and paste up what you get.

Cool
/dev/hda5 on / type ext3 (rw)
none on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
/dev/hda3 on /boot type ext3 (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
none on /dev/shm type tmpfs (rw)


I can no view my windows files and if i send a file to the mount i can not view it in windows.
 
Old 07-24-2003, 06:16 AM   #34
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Looks like your windoze drive (sorry for not noticing earlier) is hda2, so try hda2 instead:
mount -t ntfs /dev/hda2 /mnt/hda2
You'll need to create that directory first:
mkdir /mnt/hda2
Then mount it with the above command.

Which distro are you using?

Cool
 
Old 07-24-2003, 04:33 PM   #35
Becker004
LQ Newbie
 
Registered: Jul 2003
Posts: 8

Rep: Reputation: 0
Quote:
Originally posted by MasterC
Looks like your windoze drive (sorry for not noticing earlier) is hda2, so try hda2 instead:
mount -t ntfs /dev/hda2 /mnt/hda2
You'll need to create that directory first:
mkdir /mnt/hda2
Then mount it with the above command.

Which distro are you using?

Cool

error:
mount: fs type ntfs not supported by kernel

how can i tell my distro? i do not want to access the files on my NTFS i want to access my fat32 files. because windoze can access it as well..
 
Old 07-24-2003, 08:49 PM   #36
Becker004
LQ Newbie
 
Registered: Jul 2003
Posts: 8

Rep: Reputation: 0
rh

Its redhat 8 installed as desktop. Also i was playing with the basttel project...
 
Old 07-24-2003, 10:21 PM   #37
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Well if you are sure it's fat32, then it looks to be hdb1 rather (which would be your second hard drive):
mount -t vfat /dev/hdb1 /mnt/fat32
Of course, create the directory first:
mkdir /mnt/fat32
Then mount it with the above command. After you might search the boards for various ways of getting this to be accessible by a user and by making it automatically mount during bootup. If you have problems with that afterwards, feel free to post back

Cool
 
Old 07-26-2003, 06:51 AM   #38
Becker004
LQ Newbie
 
Registered: Jul 2003
Posts: 8

Rep: Reputation: 0
Quote:
Originally posted by MasterC
Well if you are sure it's fat32, then it looks to be hdb1 rather (which would be your second hard drive):
mount -t vfat /dev/hdb1 /mnt/fat32
Of course, create the directory first:
mkdir /mnt/fat32
Then mount it with the above command. After you might search the boards for various ways of getting this to be accessible by a user and by making it automatically mount during bootup. If you have problems with that afterwards, feel free to post back

Cool
a million thanks!!!! i maded it an icon on my desktop as well!
 
Old 07-26-2003, 07:03 AM   #39
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
You're welcome, I'm glad we got it all sussed out

Cool
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to format to FAT32, and how to mount my FAT32 partition. bonniehandi Linux - Newbie 16 03-05-2006 07:54 PM
external corrupt hdd -> formating to fat32 bobbens Linux - Software 7 01-01-2005 07:50 AM
How to format & mount 2nd hdd after FedCor1 has been installed on 1st hdd? clay394 Fedora 1 05-18-2004 01:50 PM
Problem formatting HDD with FAT32 rafi112 Linux - Newbie 5 02-19-2004 01:30 PM
Fat32 HDD mount problem. L3go1as Linux - Newbie 12 02-02-2004 12:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:42 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