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 |
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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
07-24-2003, 05:59 AM
|
#31
|
LQ Newbie
Registered: Jul 2003
Posts: 8
Rep:
|
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?
|
|
|
07-24-2003, 06:06 AM
|
#32
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
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
|
|
|
07-24-2003, 06:14 AM
|
#33
|
LQ Newbie
Registered: Jul 2003
Posts: 8
Rep:
|
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.
|
|
|
07-24-2003, 06:16 AM
|
#34
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
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
|
|
|
07-24-2003, 04:33 PM
|
#35
|
LQ Newbie
Registered: Jul 2003
Posts: 8
Rep:
|
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..
|
|
|
07-24-2003, 08:49 PM
|
#36
|
LQ Newbie
Registered: Jul 2003
Posts: 8
Rep:
|
rh
Its redhat 8 installed as desktop. Also i was playing with the basttel project...
|
|
|
07-24-2003, 10:21 PM
|
#37
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
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
|
|
|
07-26-2003, 06:51 AM
|
#38
|
LQ Newbie
Registered: Jul 2003
Posts: 8
Rep:
|
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!
|
|
|
07-26-2003, 07:03 AM
|
#39
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
You're welcome, I'm glad we got it all sussed out
Cool
|
|
|
All times are GMT -5. The time now is 02:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|