LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mandriva one -- cant see other partitions (https://www.linuxquestions.org/questions/linux-newbie-8/mandriva-one-cant-see-other-partitions-576887/)

micro_xii 08-13-2007 09:27 PM

mandriva one -- cant see other partitions
 
Greetings:

I have the ff:

WinXP - first boot
others:
Kubuntu
Mandriva One

My Kubuntu can see the other partitions but my Mandriva Cant. Why?

what software do I need to install? Pls give me some ideas.

thnks

pixellany 08-13-2007 09:43 PM

Various distros have their own ways of detecting and mounting drives. first look in /mnt or /media to see if it is automatically setting up mount points---also see if there are entries in /etc/fstab.

fdisk -l will tell you all the partitions that the system can see. Let's assume you want to mount /dev/hda3. If there is an entry in /etc/fstab, and a mountpoint somewhere, then you could simply enter:

mount /dev/hda3
OR
mount <name_of_mountpoint>

Otherwise:
mkdir /mnt/hda3 (or any name you want to give it)
mount /dev/hda3 /mnt/hda3

micro_xii 08-14-2007 12:24 AM

cant see the ntfs and no permission
 
Quote:

Originally Posted by pixellany (Post 2858039)
Various distros have their own ways of detecting and mounting drives. first look in /mnt or /media to see if it is automatically setting up mount points---also see if there are entries in /etc/fstab.

fdisk -l will tell you all the partitions that the system can see. Let's assume you want to mount /dev/hda3. If there is an entry in /etc/fstab, and a mountpoint somewhere, then you could simply enter:

mount /dev/hda3
OR
mount <name_of_mountpoint>

Otherwise:
mkdir /mnt/hda3 (or any name you want to give it)
mount /dev/hda3 /mnt/hda3

[root@localhost dev]# fdisk -l

Disk /dev/hda: 164.6 GB, 164696555520 bytes
255 heads, 63 sectors/track, 20023 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 5099 40957686 7 HPFS/NTFS
/dev/hda2 5100 20023 119877030 f W95 Ext'd (LBA)
/dev/hda5 5100 10198 40957686 7 HPFS/NTFS
/dev/hda6 10199 20023 78919281 7 HPFS/NTFS

Disk /dev/hdb: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdb1 1 1726 13864063+ 7 HPFS/NTFS
/dev/hdb2 1727 4865 25214017+ f W95 Ext'd (LBA)
/dev/hdb5 1727 1759 265041 82 Linux swap / Solaris
/dev/hdb6 * 1760 2815 8482288+ 83 Linux
/dev/hdb7 2816 4041 9847813+ 83 Linux
/dev/hdb8 4042 4865 6618748+ 83 Linux


Ok I finishing mounting it, BUT the Windows NTFS CANT be seen in konqueror in Mandriva. But When I go to konsole: it displays..

[root@localhost mnt]# cd hda1 ---> i make dir name hda1
[root@localhost hda1]# ls --> this is my Windows Files
ATI/ Downloads/ menu.lst PcSx/ sqmdata01.sqm t2rg
AUTOEXEC.BAT dump_dvd.vob MOVIES/ Program Files/ sqmdata02.sqm tlinux6/
boot.ini grldr MSDOS.SYS PromoPlugin.log sqmnoopt00.sqm $VAULT$.AVG/
boot_ini.tl6 hiberfil.sys mybackup.bkf RECYCLER/ sqmnoopt01.sqm WINDOWS/
Brother/ img1-001.raw MySites/ sample.txt sqmnoopt02.sqm YServer.txt
cheaters.log IO.SYS My Web Sites/ SAVE/ System Volume Information/
Config.Msi/ libSRTP_log.txt NTDETECT.COM SIERRA/ t1ts
CONFIG.SYS linux.jpg ntldr sierria/ t258
Documents and Settings/ logs/ pagefile.sys sqmdata00.sqm t2cc

Questions:
1.Why is't my NTFS partition cant be seen in konqueror but I can see it in my konsole. And how to make it work?
2.How to give permission to my NTFS files to make it accessible to Mandriva or to other distro?
3.Also, I mounted the kubuntu in my Mandriva (in /mnt/hd)but also I have no Permission. Lets say I want all my files in kubuntu to be accessible in Mandriva do I need to command this in my kubuntu files: (chmod 777). :D

ubuntora 08-14-2007 12:36 AM

ok, first install ntfs-3g.
then

#mkdir /media/xp
#gedit(or any other tex editor) /etc/fstab

and add

/dev/hda1 /media/xp ntfs-3g defaults 0 0

(btw just press tab between columns) save, then

#mount -a

then go to /media/xp in konqueror and you should have permissions

pixellany 08-14-2007 06:04 AM

On my system (PCLOS 2007 / KDE), the windows folders are visible in Konqueror after I mount the partition)
Quote:

ok, first install ntfs-3g.
How would the files be visible in the terminal without having an NTFS driver installed??

jay73 08-14-2007 09:38 AM

Quote:

3.Also, I mounted the kubuntu in my Mandriva (in /mnt/hd)but also I have no Permission. Lets say I want all my files in kubuntu to be accessible in Mandriva do I need to command this in my kubuntu files: (chmod 777).
That is one way of achieving what you want. However, it amounts to setting the doors wide open to anyone. It may be easier and it certainly is safer to ensure that you have the same user and groups IDs on both systems.


All times are GMT -5. The time now is 05:22 PM.