RE: access extended partition

2003-11-07 Thread MPAREDES

Hi Jason:

In my /etc/fstab I have

# DeviceMountpoint  FStype  Options Dump
Pass
/dev/ad0s1  /Disco-Cmsdos   rw,noauto   0
0
/dev/ad0s3  /Disco-Dmsdos   rw,noauto   0
0

When I try to mount I get the next error

[EMAIL PROTECTED] ~ mount /Disco-D
msdos: /dev/ad0s3: Invalid argument

The device exist, which is the invalid argument?

[EMAIL PROTECTED] ~ ll /dev/ad0s3
crw-r-  2 root  operator  116, 0x00040002 Sep 22 00:46 /dev/ad0s3

-TIA
maps

-Mensaje original-
De: Jason [mailto:[EMAIL PROTECTED]
Enviado el: Sábado, 06 de Diciembre de 2003 06:59 p.m.
Para: Paredes Sánchez Martín A.
Cc: [EMAIL PROTECTED]
Asunto: Re: access extended partition


[EMAIL PROTECTED] wrote:

Hi:

I have 3 partition in my hard disk, the first an the third are for
windows, so the first (C:) is FAT32 and the third has only one logic
unit (D:) and has FAT32.

how can I access D:?

maps

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]

  

Add them to /etc/fstab.  The handbook has details to walk you through
it.


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: access extended partition

2003-11-07 Thread MPAREDES

Hi Konstantin:

The line you are suggesting is for a first slice in the master
hard disk in the second controller, I only have 1 disk.

If you are familiar with MS, the slice are called partition in
MS, but only 1 primary partition can exist in windows, so the
rest of the disk has to be assigned to a extended partition, and
inside this extended partition, you can create logical units
(like partitions in FreeBSD).

In my case, the entire extended partition is used by D:

maps

-Mensaje original-
De: Konstantin Gritsenko [mailto:[EMAIL PROTECTED]
Enviado el: Viernes, 07 de Noviembre de 2003 11:10 a.m.
Para: Paredes Sánchez Martín A.
Asunto: Re: access extended partition


you need add following line in /etc/fstab

/dev/ad2s1   /mountpoint   msdos   rw,noauto   0   0

On Thu, Nov 06, 2003 at 06:17:53PM -0700, [EMAIL PROTECTED] wrote:
 
 Hi:
 
 I have 3 partition in my hard disk, the first an the third are for
 windows, so the first (C:) is FAT32 and the third has only one logic
 unit (D:) and has FAT32.
 
 how can I access D:?
 
 maps
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]


Best regards

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: access extended partition

2003-11-07 Thread Kent Stewart
On Friday 07 November 2003 08:38 am, [EMAIL PROTECTED] wrote:
 Hi Konstantin:

 The line you are suggesting is for a first slice in the master
 hard disk in the second controller, I only have 1 disk.

 If you are familiar with MS, the slice are called partition in
 MS, but only 1 primary partition can exist in windows, so the
 rest of the disk has to be assigned to a extended partition, and
 inside this extended partition, you can create logical units
 (like partitions in FreeBSD).

 In my case, the entire extended partition is used by D:

The logicals start at s5. With W2K and XP , you can have 4 primary partitions.

Kent


 maps

 -Mensaje original-
 De: Konstantin Gritsenko [mailto:[EMAIL PROTECTED]
 Enviado el: Viernes, 07 de Noviembre de 2003 11:10 a.m.
 Para: Paredes Sánchez Martín A.
 Asunto: Re: access extended partition


 you need add following line in /etc/fstab

 /dev/ad2s1   /mountpoint   msdos   rw,noauto   0   0

 On Thu, Nov 06, 2003 at 06:17:53PM -0700, [EMAIL PROTECTED] wrote:
  Hi:
 
  I have 3 partition in my hard disk, the first an the third are for
  windows, so the first (C:) is FAT32 and the third has only one logic
  unit (D:) and has FAT32.
 
  how can I access D:?
 
  maps
 
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to

 [EMAIL PROTECTED]

 
 Best regards

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: access extended partition

2003-11-07 Thread Jason
[EMAIL PROTECTED] wrote:

Hi Jason:

In my /etc/fstab I have

# DeviceMountpoint  FStype  Options DumpPass
/dev/ad0s1  /Disco-Cmsdos   rw,noauto   0   0
/dev/ad0s3  /Disco-Dmsdos   rw,noauto   0   0
 

to have the drives auto mounted at boot try:
   /dev/ad0s1  /Disco-C  msdos 
rw 00

When I try to mount I get the next error

[EMAIL PROTECTED] ~ mount /Disco-D
msdos: /dev/ad0s3: Invalid argument
 

make sure you have created the directory /Disco-D on your bsd file 
system then try:
$mount_msdosfs /dev/ad0s3 /Disco-D

You should no longer need to manually mount the drive after you reboot 
if the fstab entry is right.

The device exist, which is the invalid argument?
 

the invalid argument is /Disco-D, that should be last, it want 
/dev/ad0s3 where /Disco-D is.

[EMAIL PROTECTED] ~ ll /dev/ad0s3
crw-r-  2 root  operator  116, 0x00040002 Sep 22 00:46 /dev/ad0s3
-TIA
maps
-Mensaje original-
De: Jason [mailto:[EMAIL PROTECTED]
Enviado el: Sábado, 06 de Diciembre de 2003 06:59 p.m.
Para: Paredes Sánchez Martín A.
Cc: [EMAIL PROTECTED]
Asunto: Re: access extended partition
[EMAIL PROTECTED] wrote:

 

Hi:

I have 3 partition in my hard disk, the first an the third are for
windows, so the first (C:) is FAT32 and the third has only one logic
unit (D:) and has FAT32.
how can I access D:?

maps

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


   

Add them to /etc/fstab.  The handbook has details to walk you through it.

 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


access extended partition

2003-11-06 Thread MPAREDES

Hi:

I have 3 partition in my hard disk, the first an the third are for
windows, so the first (C:) is FAT32 and the third has only one logic
unit (D:) and has FAT32.

how can I access D:?

maps

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: access extended partition

2003-11-06 Thread Jason
[EMAIL PROTECTED] wrote:

Hi:

I have 3 partition in my hard disk, the first an the third are for
windows, so the first (C:) is FAT32 and the third has only one logic
unit (D:) and has FAT32.
how can I access D:?

maps

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

Add them to /etc/fstab.  The handbook has details to walk you through it.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]