Sponsored Content
Operating Systems SCO Emergency boot floppy - second hard disk not seen Post 302875095 by hicksd8 on Monday 18th of November 2013 01:20:34 PM
Old 11-18-2013
The /dev/stand filesystem is mounted on /stand on the root filesystem.
Therefore if you boot into single user mode and then backup, you would automatically take /stand in addition to the root (/) filesystem.

Assuming a tape drive on /dev/rct0 (the default config):

Code:
find . -depth -print|cpio -ov -O /dev/rct0

You might also want to use -C and -K switches for block size and media capacity.

To restore in a DR situation..........

Boot from boot&root set (to # prompt) then

mount /dev/hd0root /mnt
cd /mnt
cpio -ivudlm -I /dev/rct0that being the current directory.

Yes, the backup is restored to /mnt

Having mounted /dev/d1250 on a directory you could specify a file, eg

Code:
 
mkdir /backup
mount /dev/d1250 /backup

You could then specify a file as the backup destination remembering to use the exclude switch to ensure the cpio does not try to backup the output file itself.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

boot floppy

hello , i have sun sparc machine with sunos2.7 , the machine has a cdrom but no floppy drive , it is networked with windows machine , from where i can use ftp and telnet. can i use floppy drive of windows machine and create a boot image(of unix) on that drive, using ftp? thanx raju (4 Replies)
Discussion started by: raju
4 Replies

2. UNIX for Dummies Questions & Answers

How to boot form hard disk

i installed caldera linux from CD and now without floopy its not booting, how do i write into MBR, uning lilo, i dont have any other OS , so i want to boot into linux always. pls help me out, thank you. (1 Reply)
Discussion started by: gops
1 Replies

3. UNIX for Dummies Questions & Answers

red hat linux installation boot floppy disk

Hi, My dear friends, I am trying to install red hat linux. I have downloaded its disc1. On the instructions page, the next stage is to make the boot disk, so that I can boot from the floppy. However, I am unable to locate the boot image iso file. I tried on google, but I got a few files which... (3 Replies)
Discussion started by: linuxpenguin
3 Replies

4. AIX

Boot Floppy

Dear Sirs, I would like to make a Boot Floppy for the RS6k F30. Somebody can help me? Spart (1 Reply)
Discussion started by: spartiate
1 Replies

5. SCO

Emergency boot

I need to boot an OpenServer 5.0.5 server but I don't have emergency boot disks for it. There are some boot disks of other servers. Can I use these disks, changing defbootstr ?. How ?. The fact is that administrator can't login as root and it seems to be a corrupted auth system issue. Other... (2 Replies)
Discussion started by: dags
2 Replies

6. AIX

During CD boot, hard disk does not get recognised

Hello, I have an AIX 5.1 server. Model : 7029-6E3. The users of this server have forgotted the root password and I am now supposed to reset it. I boot through the AIX 5.1 CD and try to go to the maitenance mode. But I am facing this issue, where, the hard disk does not recognised during this... (1 Reply)
Discussion started by: sjsowmya
1 Replies

7. SCO

steps to boot SCO server off emergency tape

I know how to create the bootable tape image by using emergency_rec, but I could not find any document to instruct me on how to boot off the tape, and detail steps I should go through, for instance, at what point the booting sequency would prompt me to enter bootable path, and what the path is...... (0 Replies)
Discussion started by: vkky2k
0 Replies

8. Linux

C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk)

Hi all, I'm kind of new to programming in Linux & c/c++. I'm currently writing a FileManager using Ubuntu Linux(10.10) for Learning Purposes. I've got started on this project by creating a loopback device to be used as my virtual hard disk. After creating the loop back hard disk and mounting it... (23 Replies)
Discussion started by: shen747
23 Replies

9. SCO

Need emergency boot floopy or 5.0.5 .iso file

We have old SCO Openserver 5.0.5. and its was running out of disk space on root disk - error 142 /2. I tried to move some files to another partition with space, but I ran into issue as I moved /opt/K and /opt/P. Now when the servers boots it fails and goes into debug mode. I don't have a... (4 Replies)
Discussion started by: grips03
4 Replies

10. SCO

Need emergency boot CD UNIXware 7.1.1 (or 7.1..4)

In my previous thread post (which is also the most recent on this SCO forum), I mentioned that we have an HP DL380G5 server running SCO Unixware 7.11 which has unable to boot with error “FATAL BOOT ERROR: Can't load stage 3”. .. Unfortunately no media is available for the machine and I think the... (1 Reply)
Discussion started by: BernP
1 Replies
MOUNT_FDESC(8)						    BSD System Manager's Manual 					    MOUNT_FDESC(8)

NAME
mount_fdesc -- mount the file-descriptor file system SYNOPSIS
mount_fdesc [-o options] fdesc mount_point DESCRIPTION
The mount_fdesc command attaches an instance of the per-process file descriptor namespace to the global filesystem namespace. The conven- tional mount point is /dev and the filesystem should be union mounted in order to augment, rather than replace, the existing entries in /dev. This command is normally executed by mount(8) at boot time. The options are as follows: -o Options are specified with a -o flag followed by a comma separated string of options. See the mount(8) man page for possible options and their meanings. The contents of the mount point are fd, stderr, stdin, stdout and tty. fd is a directory whose contents appear as a list of numbered files which correspond to the open files of the process reading the directory. The files /dev/fd/0 through /dev/fd/# refer to file descriptors which can be accessed through the file system. If the file descriptor is open and the mode the file is being opened with is a subset of the mode of the existing descriptor, the call: fd = open("/dev/fd/0", mode); and the call: fd = fcntl(0, F_DUPFD, 0); are equivalent. The files /dev/stdin, /dev/stdout and /dev/stderr appear as symlinks to the relevant entry in the /dev/fd sub-directory. Opening them is equivalent to the following calls: fd = fcntl(STDIN_FILENO, F_DUPFD, 0); fd = fcntl(STDOUT_FILENO, F_DUPFD, 0); fd = fcntl(STDERR_FILENO, F_DUPFD, 0); Flags to the open(2) call other than O_RDONLY, O_WRONLY and O_RDWR are ignored. The /dev/tty entry is an indirect reference to the current process's controlling terminal. It appears as a named pipe (FIFO) but behaves in exactly the same way as the real controlling terminal device. FILES
/dev/fd/# /dev/stdin /dev/stdout /dev/stderr /dev/tty SEE ALSO
mount(2), unmount(2), tty(4), fstab(5), mount(8) CAVEATS
No ~. and .. entries appear when listing the contents of the /dev/fd directory. This makes sense in the context of this filesystem, but is inconsistent with usual filesystem conventions. However, it is still possible to refer to both ~. and .. in a pathname. This filesystem may not be NFS-exported. HISTORY
The mount_fdesc utility first appeared in 4.4BSD. 4.4BSD March 27, 1994 4.4BSD
All times are GMT -4. The time now is 03:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy