- Dec 20, 2000
- 6,457
- 6
- 81
A friend wants a removable hard drive in his linux server.
his idea is that he can copy over important files and take it home at night. this way if "something bad" happens he doesn't lose his data.
I already have dual raid1 arrays on this file server, but he wants this.
he wants fat partiton so he could hook it up to his windows box at home to read the data if need be.
here's what I did.
install new HD in mobile rack, reboot (there goes my uptime:|).
fdisk /dev/hdc
create one partition(primary) label id fat32 (LBA)
wasn't sure if I need to format, I don't think fdisk does it for me?
is there a fat32 format command in linux? I can't find a reference to one. (like mke2fs).
mkdir /backup
added entry to /etc/fstab
/dev/hdc1 /backup vfat defaults 0 0
(I think this is correct)
when I try "mount /backup"
I get this
[root@redserver root]# mount /backup/
mount: wrong fs type, bad option, bad superblock on /dev/hdc1,
or too many mounted file systems
my thought is
1) I need to format (duh) but how can I create a fat partition in linux
2)/etc/fstab is wrong.
any ideas?
his idea is that he can copy over important files and take it home at night. this way if "something bad" happens he doesn't lose his data.
I already have dual raid1 arrays on this file server, but he wants this.
he wants fat partiton so he could hook it up to his windows box at home to read the data if need be.
here's what I did.
install new HD in mobile rack, reboot (there goes my uptime:|).
fdisk /dev/hdc
create one partition(primary) label id fat32 (LBA)
wasn't sure if I need to format, I don't think fdisk does it for me?
is there a fat32 format command in linux? I can't find a reference to one. (like mke2fs).
mkdir /backup
added entry to /etc/fstab
/dev/hdc1 /backup vfat defaults 0 0
(I think this is correct)
when I try "mount /backup"
I get this
[root@redserver root]# mount /backup/
mount: wrong fs type, bad option, bad superblock on /dev/hdc1,
or too many mounted file systems
my thought is
1) I need to format (duh) but how can I create a fat partition in linux
2)/etc/fstab is wrong.
any ideas?
