Thanks Janet. My results are below.
StephenHodgman
Connect your USB drive & show us output of
fdisk -l
[root@arthur /]# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 fd Linux raid autodetect
/dev/sda2 14 60801 488279610 fd Linux raid autodetect
Disk /dev/md2: 499.9 GB, 499998195712 bytes
2 heads, 4 sectors/track, 122069872 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Disk /dev/md2 doesn't contain a valid partition table
Disk /dev/md1: 106 MB, 106823680 bytes
2 heads, 4 sectors/track, 26080 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Device Boot Start End Blocks Id System
Disk /dev/sdb: 2000.3 GB, 2000398933504 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 243201 1953512001 83 Linux
ls -al /media
[root@arthur /]# ls -al /media
total 16
drwxr-xr-x 4 root root 4096 Jan 16 13:00 .
drwxr-xr-x 25 root root 4096 Jan 16 14:46 ..
drwxr-xr-x 3 root root 4096 Jan 16 16:52 backup
drwxr-xr-x 2 root root 4096 Jan 16 13:00 usbbackup
cat /etc/fstab
[root@arthur /]# cat /etc/fstab
#------------------------------------------------------------
# BE CAREFUL WHEN MODIFYING THIS FILE! It is updated automatically
# by the SME server software. A few entries are updated during
# the template processing of the file and white space is removed,
# but otherwise changes to the file are preserved.
# For more information, see
http://www.e-smith.org/custom/ and
# the template fragments in /etc/e-smith/templates/etc/fstab/.
#
# copyright (C) 2002 Mitel Networks Corporation
#------------------------------------------------------------
/dev/main/root / ext3 usrquota,grpquota,acl 1 1
/dev/md1 /boot ext3 defaults 1 2
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
/dev/main/swap swap swap defaults 0 0
Then do
mount /dev/sdb1 /media/backup
& show output of
df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/main-root
450G 293G 134G 69% /
/dev/md1 99M 25M 69M 27% /boot
tmpfs 501M 0 501M 0% /dev/shm
/dev/sdb1 1.8T 196M 1.7T 1% /media/backup
Then unmount with
umount /dev/sdb1