07-08-2015
There are three logical disks. It would seem to me that the best way forward would be to try to find the disk layout (partitions/slices and filesystem types) information of the 2 data/backup disks (for which we know the raw device names - c0b0t1d0 and c0b0t2d0.
Question is - what is the best way to get this info.
Once we have this and presuming the partitions/filesystems are intact, we could mount them and recover the data on them.
Your thoughts and ideas on this - as always - much appreciated
10 More Discussions You Might Find Interesting
1. Programming
dear all ,
iam trying to compile a progam using gcc compiler on a sun 280 R machine running solaris 9 .
iam getting an error in the last step when the compiler tries to link the objects , although the compiler executes some applicarions that contains no objects smoothly,
the error that... (1 Reply)
Discussion started by: ppass
1 Replies
2. UNIX for Dummies Questions & Answers
Hi
i have both Linux and Windows XP on my PC.
i used to use grub as a boot loader and everything was perfect, until
i reinstalled Windows.
apparently, Windows installer installed its own bootloader, that
doesn't recognize Linux.
i tried using a tool called GrubInstaller for Windows, and now... (4 Replies)
Discussion started by: shx2
4 Replies
3. Programming
Hi,
I just pulled out my code from source control, then I compiled, the compilation is successful at that time.
Then I modified one of the source file, Then I compiled, I got the following error
ld: fatal: Symbol referencing errors. No output written to ../../CM/bin/cato
Before... (1 Reply)
Discussion started by: sarwan
1 Replies
4. UNIX for Dummies Questions & Answers
zero experience Unix user here. Cannot boot our Sparc10.
Running:
SunOS release 5.3 Version Generic_Patch
message says:
(Can't load swapgeneric)
Program terminated
Tried to 'boot -s' , but this looks like a problem w/ Generic_Patch maybe?
At bootup, the devices come up fine and it... (0 Replies)
Discussion started by: man_of_action
0 Replies
5. Solaris
I modified the partitions on my Solaris 10 disk using format command in "boot cdrom -s" mode and then tried rebooting with "reboot". It said "Boot load failed".
Why does this happen?
I have faced this error before:( and I went in for a fresh installation of the OS.Can anyone tell me the reason as... (1 Reply)
Discussion started by: lydiaEd
1 Replies
6. SCO
hi
SCO Unix 5.0.6 doesn't boot due to this problem:
not a directory
boot not found
cannot open
stage 1 boot failure: error loading hd (40)/boot
Knows someone howto solve it? (16 Replies)
Discussion started by: ccc
16 Replies
7. Solaris
This is the error message that I am getting on a Solaris 10 sparc server
scsi: no major number
cannot load drivers for /pci@400.....
Can't load the root filesystem
Type 'go' to resume
{0} ok
Is there a way for me to correct this issue. It looks like I am missing a scsi driver to boot up... (5 Replies)
Discussion started by: trinityforce
5 Replies
8. Solaris
Dear all,
I Need your help,my server v240 with sun solaris 10 can't remote login.I try conncet via rsc and then go to OK prom....and i get the status :
{1} ok boot -a
FATAL: system is not bootable, boot command is disabled
{1} ok boot cdrom -s
FATAL: system is not bootable, boot command is... (2 Replies)
Discussion started by: fredginting
2 Replies
9. Solaris
I have M10-1. Installation OS 10 from cdrom external.
Here message from OK Prompt
{0} ok probe-scsi-all
/pci@8000/pci@4/pci@0/pci@2/pci@0/usb@4,1/cdrom@1
Unit 0 Removable Read Only device HL-DT-STDVDRAM GP65NB60 PF00
But..
{0} ok boot... (3 Replies)
Discussion started by: mbahjiman
3 Replies
10. What is on Your Mind?
Today, I noticed some errors in our SSL cert renewal log files, mostly related to domains where the IP address had changed. Concerned about this, rebuilt out SSL cert, which normally goes well without a hiccup.
However, for today, for some reason which I cannot explain, there was a PHP error... (0 Replies)
Discussion started by: Neo
0 Replies
LEARN ABOUT NETBSD
ldconfig
LDCONFIG(8) BSD System Manager's Manual LDCONFIG(8)
NAME
ldconfig -- configure the a.out shared library cache
SYNOPSIS
ldconfig [-cmrsSv] [directory ...]
DESCRIPTION
ldconfig is used to prepare a set of ``hints'' for use by the a.out run-time linker ld.so to facilitate quick lookup of shared libraries
available in multiple directories. ldconfig is only available on systems that use the ``a.out'' format for executables and libraries - on
ELF systems, all the work is done by ld.elf_so.
By default, it scans a set of built-in system directories, directories listed in /etc/ld.so.conf, and any directories specified on the com-
mand line (in the given order) looking for shared libraries and stores the results in the file /var/run/ld.so.hints to forestall the overhead
that would otherwise result from the directory search operations ld.so would have to perform to load required shared libraries.
The shared libraries so found will be automatically available for loading if needed by the program being prepared for execution. This obvi-
ates the need for storing search paths within the executable.
The LD_LIBRARY_PATH environment variable can be used to override the use of directories (or the order thereof) from the cache or to specify
additional directories where shared libraries might be found. LD_LIBRARY_PATH is a ':' separated list of directory paths that are searched
by ld.so when it needs to load a shared library. It can be viewed as the run-time equivalent of the -L switch of ld.
ldconfig is typically run as part of the boot sequence.
The following options are recognized by ldconfig:
-c Do not scan directories listed in /etc/ld.so.conf for shared libraries.
-m Merge the result of the scan of the directories given as arguments into the existing hints file. The default action is to build the
hints file afresh.
-r Lists the current contents of ld.so.hints on the standard output. The hints file will not be modified.
-s Do not scan the built-in system directory (/usr/lib), nor any directories listed in /etc/ld.so.conf for shared libraries.
-S Do not scan the built-in system directory (/usr/lib), for shared libraries. (Directories listed in /etc/ld.so.conf are still
scanned.)
-v Switch on verbose mode.
FILES
/var/run/ld.so.hints, /etc/ld.so.conf
SEE ALSO
ld(1), ld.so(1), ld.so.conf(5), link(5)
HISTORY
A ldconfig utility first appeared in SunOS 4.0, it appeared in its current form in NetBSD 0.9A.
SECURITY CONSIDERATIONS
Special care must be taken when loading shared libraries into the address space of set-user-ID programs. Whenever such a program is run,
ld.so will only load shared libraries from the ld.so.hints file. In particular, the LD_LIBRARY_PATH and LD_PRELOAD is not used to search for
libraries. Thus, the role of ldconfig is dual. In addition to building a set of hints for quick lookup, it also serves to specify the
trusted collection of directories from which shared objects can be safely loaded. It is presumed that the set of directories specified to
ldconfig is under control of the system's administrator. ld.so further assists set-user-ID programs by erasing the LD_LIBRARY_PATH and
LD_PRELOAD from the environment.
BSD
October 8, 2000 BSD