Ako kontaš da ga vidiš iz linuxa i ako želiš M$-oliki filesystem, onda FAT32.
Ako ti treba samo za linux, onda preporučujem EXT3, a postoji i program preko kojeg bez problema ulaziš iz windows-a na ext2-3 particije: ext2ifs. rw privilegije i sve ostalo što ti je potrebno
jedina mana je što malko duže kasnije boot-uje linux
Dopuna: 23 Sep 2006 12:49
e da.
ako formatiraš iz linux-a, onda 'vako: recimo da je hard disk primary slave
pravljenje particije:
[root@linux]# fdisk /dev/hdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won't be recoverable.
The number of cylinders for this disk is set to 4865.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-4865, default 1): 1
Last cylinder or +size or +sizeM or +sizeK (1-4865, default 4865): 4865
Command (m for help): t
Partition number (1-4): 1
Hex code (type L to list codes): 83
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
format u ext3
[root@linux]# mkfs.ext3 -b 4096 /dev/hdb1
mke2fs 1.27 (8-Mar-2002)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
4889248 inodes, 9769520 blocks
488476 blocks (5.00%) reserved for the super user
First data block=0
299 block groups
32768 blocks per group, 32768 fragments per group
16352 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 36 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
pravljenje mount direktorijuma
[root@linux]# mkdir /disk2
u /etc/fstab dodaš liniju
/dev/hdb1 /disk2 ext3 defaults 1 1
pa zatim
[root@linux]# mount /disk2
a ako bude neki problem sa prilaženjem kao običan user onda:
[root@linux]# chown -R imekorisnika:users /disk2
kraj.
|