DNSUPP Support


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users DNSUPP Support
# 1  
Old 11-19-2008
DNSUPP Support

Hi,

Could anyone explain the term "DNSUPP" and what does it stand for? And something about Multi-Casting and "lower level" in UNIX.

Your help would be highly appreciated,

Thanks,

Shiraz
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

hp-ux support merced

hi all ! does anyone know what version hp-ux support VLIW Itanium (Merced) 733Mhz? thanks (2 Replies)
Discussion started by: ijj
2 Replies

2. Solaris

Levels of support

Hello, I have a simple question because I can not find the information at oracle.com I want to buy support for OS Solaris and Servers hardware. I need information what are the levels of support and how much they cost? I need a help. Have a nice day (3 Replies)
Discussion started by: bieszczaders
3 Replies

3. SuSE

openSUSE support

does Novell support openSUSE as it does for it's server packages, or is openSUSE's support the same as every other distribution of linux? (1 Reply)
Discussion started by: bcbotha
1 Replies

4. AIX

Phone support

We have a 7028 p series server that has a lapsed hardware service contract, and I was attempting to create a billable tech support phone call, and IBM said that they do on site billable only. Is anybody out there aware of reputable third party support companies I might be able to contact. I have... (7 Replies)
Discussion started by: markper
7 Replies

5. UNIX for Dummies Questions & Answers

Ntfs support

hello, I want to acces my other drives(NTFS) on my fedora 6......I had recomplied my kernel to 2.6.23....previously it was 2.6.18.... Also I had loaded driver for ntfs ie.......installed successfully ....fuse + ntfs-3g..... Now I am able to accces my other ntfs drives....... but what i need is... (11 Replies)
Discussion started by: arunchaudhary19
11 Replies

6. Solaris

DLT8000 Support in 2.5.1

Hi Guys, Old OS I know, but does anyone know the patch number (if indeed it is a patch) or know where I can get the drivers to get a HP DLT8000 working under Solaris 2.5.1. Any help, advice (other than upgrade :) ) appreciated. Thanks Marty (0 Replies)
Discussion started by: callmebob
0 Replies

7. Solaris

need to generate support id..

Hi, we bought a new sun ultra 45 workstation preloaded with solaris 10. Now i need to download the latest patch cluster from sunsolve. But it is asking for a valid service plan. Anybody can help how to generate a support id.. (2 Replies)
Discussion started by: sriram.s
2 Replies

8. UNIX for Advanced & Expert Users

sata support

i have a system which has two hard disks..one is sata and the other one is normal ata hard disk. i wish to install red hat enterprise linux WS(desktop edition) on my sata hard disk..but the installer shows me only my ata hard disk.. i searched the net..it says that a library-- libata will let it... (2 Replies)
Discussion started by: ankit.jss
2 Replies

9. UNIX for Dummies Questions & Answers

XML support

Does Unix or Linux support XML (1 Reply)
Discussion started by: usha4u
1 Replies

10. HP-UX

HP Support Plus media

Hi folks, i owe a HP 9000 E55 (antique...) server. I also owe the original version of the OS HPUX 11.0. Unfortenately i can't find the HP-Support Plus medium. During the instlallation i was asked to put it in, i always skip this one. But the system runs not very well. On HP's website you can... (8 Replies)
Discussion started by: FNORD
8 Replies
Login or Register to Ask a Question
ldd(1)							      General Commands Manual							    ldd(1)

NAME
ldd - List dynamic dependencies of executable files or shared objects SYNOPSIS
ldd [-rdV] filename OPTIONS
Prints warnings for any unresolved data symbol references that would occur as a result of filename being executed. (Checks references to only data objects, not functions.) Prints warnings for any unresolved symbol references that would occur as a result of filename being executed. (Checks references to both data objects and functions.) Displays the version of the ldd command. DESCRIPTION
The ldd command lists the dynamic dependencies of an executable file or shared object: If filename is an executable file, ldd lists the pathnames of all shared objects that would be loaded as a result of executing filename. If filename is a shared object, ldd lists the pathnames of all shared objects that would be loaded as a result of loading filename. The ldd command expects shared objects to have exe- cute permission, and if this is not the case, it will issue a warning before attempting to process the file. NOTES
The ldd command does not list shared objects explicitly attached by using dlopen(). The ldd command prints the record of shared object pathnames to stdout. The optional list of symbol resolution problems are printed to stderr. EXIT STATUS
If filename is not an executable file or a shared object, a non-zero exit status is returned. EXAMPLES
The following command lists the static dependencies of libXm.so: ldd /usr/shlib/libXm.so The following command lists the static dependen- cies of libXm.so as well as any unresolved symbol in libXm.so or any of its dependents: ldd -r /usr/shlib/libXm.so SEE ALSO
loader(5) ldd(1)