05-09-2008
I've never used SCO. Systematic way goes as follows:
What gives the shell command "mount"? That will be some lines with (mountpoint, hardware, options) tupels to you. Have a look at the hardware part. In some way the SCSI ID will be part of device file. Alter that file to match the old drive. Mount it with "mount /dev/olddevice /mnt/dir_for_old_drive" (create dir before, act as root).
10 More Discussions You Might Find Interesting
1. UNIX for Advanced & Expert Users
HI ALL,
I need to backup HDD with SCO UNIX. I need to have a full functionaly backup of this hard disk. Does anybody have any tool or subsription how to do it. I tried some SW, but after when I tried to use this copy of my original disk "can not find a root directory". Thanks in advance. (1 Reply)
Discussion started by: jardas
1 Replies
2. SCO
Hi guys,
I have this quick question , is it posible to isntall SCO 5.0.7 on a serial ATA and if it is can you tell me how or maybe a website that has some info about this.
I'm not using any raid, just one HDD.
Thanks a lot (0 Replies)
Discussion started by: josramon
0 Replies
3. UNIX for Advanced & Expert Users
Hello,
I have a P4, 2.4GHz, 256MB ASROCK mainboard: I am trying to install sco 5.0.5 on an 80gb hdd IDE .
I have tried the following techniques:
1. using the updated wd btld image- no success
2. defbootstr biosgeom
3. use interactive divvy, make adjustments using dkinit/dparam during... (0 Replies)
Discussion started by: pude
0 Replies
4. Solaris
Hi Friends,
I am using VMware 6.0 and i want to transfer some files from External HDD so how to mount the Disk, and i am not able to assign any ip to my network card any one can help me how to set ip in VMware.
Thanks and Regards,
Venky.:b: (0 Replies)
Discussion started by: 1409.venkatesh
0 Replies
5. Windows & DOS: Issues & Discussions
Hi,
Unix based,
My harddrive won't boot and I'm looking for a reliable tool
that can mount a hdd on Windows XP and show me the files
stored on a NFS system.
I tried the tool: Ext2IFS but this didn't work.
I found a lot of tools on google to mount nfs share thru a network
but that's... (1 Reply)
Discussion started by: severt
1 Replies
6. Filesystems, Disks and Memory
I started on another thread and full story can be seen here: https://www.unix.com/security/91428-how-reset-root-password-old-unix-system-v.html
But my situation turned to land on this thread now.
I have old scsi HDD out of the UHC UNIX System V Rel. 4.0 Version 3.6 box. And need to read... (1 Reply)
Discussion started by: 82026
1 Replies
7. SCO
Hi all
I have read about mounting crashed HDD from a sco system in this forum. However this I received an image on raw format of the crashed system that was using an IDE HDD. Which method should I mount my image? IDE scsi or USB? The image is stores in an external connected through USB .
Also... (4 Replies)
Discussion started by: OrangeKenny
4 Replies
8. Solaris
I just installed Solaris 11.2 - and it is a bugger. How do I mount an extra HDD that is now formated to NTFS through gparted
it keeps telling me I don't have any ntfs on this laptop. it has two hdds, /dev/sda1 /dev/sdb1 (Linux lingo) Solaris is installed on primary hard drive back of it. then... (2 Replies)
Discussion started by: userx-bw
2 Replies
9. Fedora
once again, mounting another volume or hdd the fstab-file is giving me a headache. May someone could give me a hint how to configure the fstab-file properly to use the hdd.
The following
ls -l /dev/disk/by-uuidis giving me this
Thats the UUID for /dev/sdb1 with the name "save"... (6 Replies)
Discussion started by: 1in10
6 Replies
10. Emergency UNIX and Linux Support
rying it this way, because I can't handle the slices for the second hdd. If there is someone on this forum who can help me out of that misery, he would really save my digital life in this digital ocean.
So not giving up, reading several times the manual of gpart. But the best hint in all that... (0 Replies)
Discussion started by: 1in10
0 Replies
LEARN ABOUT SUSE
mount.crypto_luks
mount.crypt(8) pam_mount mount.crypt(8)
Name
mount.crypt - mount a dm-crypt encrypted volume
Syntax
mount.crypt [-nrv] [-o options] device directory
Options
-o options
Set further mount options. mount.crypt will take out its own options it recognizes and passes any remaining options on to the under-
lying mount program. See below for possible options.
-n Do not update /etc/mtab. Note that this makes it impossible to unmount the volume by naming the container - you will have to pass
the mountpoint to umount.crypt.
-r Set up the loop device (if necessary) and crypto device in read-only mode. (The mount itself will necessarily also be read-only.)
Note that doing a remount using `mount /mnt -o remount,rw` will not make the mount readwrite. The crypto and loop devices will have
to be disassociated first.
-v Turn on debugging and be a bit more verbose.
Mount options
cipher The cryptsetup cipher used for the encrypted volume. This option is mandatory. pmt-ehd(8) defaults to creating volumes with
"aes-cbc-essiv:sha256" as a cipher.
dm-timeout=seconds
Wait at most this many seconds for udev to create /dev/mapper/name after calling cryptsetup(8). The default value is 0 seconds.
fsck Run fsck on the container before mounting it.
fsk_cipher
The OpenSSL cipher used for the filesystem key.
fsk_hash
The OpenSSL hash used for producing key and IV.
fstype The exact type of filesystem in the encrypted container. The default is to let the kernel autodetect.
keyfile
The path to the key file. This option is mandatory for "normal" crypto volumes and should not be used for LUKS volumes.
remount
Causes the filesystem to be remounted with new options. Note that mount.crypt cannot switch the underlying loop device (if applies)
or the crypto device between read-only and read-write once it is created; only the actual filesystem mount can be changed, with lim-
its. If the loop device is read-only, the crypto device will be read-only, and changing the mount to read-write is impossible. Sim-
ilarly, going from rw to ro will only mark the mount read-only, but not the crypto or loop device, thus making it impossible to set
the filesystem the crypto container is located on to read-only.
ro Same as the -r option.
verbose
Same as the -v option.
Obsolete mount options
This section is provided for reference.
loop This option used to set up a loop device, because cryptsetup(8) expects a block device. The option is ignored because mount.crypt
can figure this out on its own.
pam_mount 2008-10-08 mount.crypt(8)