SHARE |
|
|
by Bill Degnan - 09/15/2026 18:04 |
|
first at the # (root) prompt give your computer a place to map the drive
mkdir /mnt/check_drive see if slice g is used: mount /dev/sd0g /mnt/check_drive (if not try a through h) when you get no errors, you found the right slice. next mount the drive mount /dev/sd0a /mnt/check_drive if that works, run a directory ls -la /mnt/check_drive see how much space is left on the scsi drive you just mounted df -k /mnt/check_drive check users ls -la /mnt/check_drive/users look for text files or docs ls -la /mnt/check_drive/etsdoc backup the storage drive to your scsi2SD drive (-rp preserves the original dates): mkdir /export/home/old_drive_backup cp -rp /mnt/check_drive/* /export/home/old_drive_backup/ unmount the drive when you're done so it does not get corrupted. cd / umount /mnt/check_drive power down or whatever, but if you want to do it again: mkdir -p /mnt/check_drive (this may already exist) mount /dev/sd0g /mnt/check_drive ls -la /mnt/check_drive Reply |
|