INSTALLING SSH IN SOLARIS 8

Hello,
I�m trying to install openssh in a Solaris 8 machine. I followed these setps:
1.- Install the patch 112438-03 and boot -r
2.- pkgadd -d openssh-4.4p1-sol8-sparc-local
pkgadd -d openssl-0.9.6i-sol8-sparc-local
pkgadd -d zlib-1.2.3-sol8-sparc-local
3.- mkdir /var/empty
chown root:sys /var/empty
chmod 755 /var/empty
groupadd sshd
useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd
4.-modify /usr/local/etc/sshd_config (making reference to /usr/local/libexec/sftp-server)
5.-implement the files /etc/hosts.allow and /etc/hosts.deny
6.- NOW I HAVE TRIED THE FOLLOWING ACCORDING WITH THE INSTRUCTIONS IN INSTALL.openssl document:
$ ./config
PROBLEMS: WHERE IS THE "config" script localted? I get the message "ksh: ./config: not found"
Please, help me! How can I follow from this point. I don`t know from where execute the config script.
thanks

Follow this steps recently i did it in a solaris 8 box
hope this will solve your issue
Ssh installation for Solaris 8
Introduction:
Secure shell (SSH) is a protocol that provides a secure, remote connection to any device with ssh support. SSH is a substitute to Berkeley r-tools like telnet, rlogin, rsh and rcp which are not secure. SSH provides more security to any data that is being transported to the Internet by providing more authentication, encryption and authorization procedures. There are currently two versions of SSH available, SSH Version 1 and SSH Version 2
openssh
openssl (SSL)
prngd (Psuedo Random Generator Daemon)
zlib (Z library)
Installation:
#pkgadd -d openssl-0.9.6c-sol8-sparc-local
The following packages are available:
1 SMCosslc openssl
(sparc) 0.9.6c
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]:
#pkgadd -d prngd-0.9.23-sol8-sparc-local
The following packages are available:
1 SMCprngd prngd
(sparc) 0.9.23
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]:
#pkgadd -d zlib-1.1.4-sol8-sparc-local
The following packages are available:
1 SMCzlib zlib
(sparc) 1.1.4
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]:
#pkgadd -d openssh-3.1p1-sol8-sparc-local
The following packages are available:
1 SMCossh openssh
(sparc) 3.1p1
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]:
Note:- If you are facing any problem like PRNG is not seeded please apply 112438-01 patch and reboot the system and create a symbolic link
ln -s /devices/pseudo/random@0:random /dev/random
ln -s /devices/pseudo/random@0:urandom /dev/urandom
This is because of missing /dev/random
Create SSHD account and directory
# mkdir /var/empty
# chown root:sys /var/empty
# groupadd sshd
# useradd -g sshd -c "SSHD Admin" -d /var/empty �s /bin/false sshd
Startup Scripts:
Create a startup script for the ssh daemon.
/etc/init.d/sshd
#! /bin/sh
# start/stop the secure shell daemon
case "$1" in
'start')
# Start the ssh daemon
if [ -f /usr/local/sbin/sshd ]; then
echo "starting SSHD daemon"
/usr/local/sbin/sshd &
fi
'stop')
# Stop the ssh deamon
PID=`/usr/bin/ps -e -u 0 | /usr/bin/fgrep sshd | /usr/bin/awk '{print $1}'`
if [ ! -z "$PID" ] ; then
/usr/bin/kill ${PID} >/dev/null 2>&1
fi
echo "usage: /etc/init.d/sshd {start|stop}"
esac
Make the script executable and create a startup script on run level 2.
#sh sshd start
#chmod +x /etc/init.d/sshd
#ln �s /etc/init.d/sshd /etc/rc2.d/S99sshd
Create a startup script for the pseudo random generator daemon.
/etc/init.d/prngd
#! /bin/sh
# start/stop the pseudo random generator daemon
case "$1" in
'start')
# Start the ssh daemon
if [ -f /usr/local/bin/prngd ]; then
echo "starting PRNG daemon"
/usr/local/bin/prngd /var/spool/prngd/pool&
fi
'stop')
# Stop the ssh deamon
PID=`/usr/bin/ps -e -u 0 | /usr/bin/fgrep prngd | /usr/bin/awk '{print $1}'`
if [ ! -z "$PID" ] ; then
/usr/bin/kill ${PID} >/dev/null 2>&1
fi
echo "usage: /etc/init.d/prngd {start|stop}"
esac
Make the script executable and create a startup script on run level 2.
#chmod +x /etc/init.d/prngd
#ln �s /etc/init.d/prngd /etc/rc2.d/S99prngd
# /etc/init.d/prngd start
starting PRNG daemon
Info: Random pool not (yet) seeded
Could not bind socket to /var/spool/prngd/pool: No such file or directory
# mkdir -p /var/spool/prngd
#/etc/init.d/prngd start
starting PRNG daemon
# Info: Random pool not (yet) seeded
Next is to start the actual ssh daemon,
# /etc/init.d/sshd start
starting SSHD daemon
Could not load host key: /usr/local/etc/ssh_host_key
Could not load host key: /usr/local/etc/ssh_host_rsa_key
Could not load host key: /usr/local/etc/ssh_host_dsa_key
Disabling protocol version 1. Could not load host key
Disabling protocol version 2. Could not load host key
sshd: no hostkeys available -- exiting.
The errors above are due to the fact that we didn't create any key pairs for our ssh server.
Create a public key pair to support the new, DSA-based version 2 protocol
# /usr/local/bin/ssh-keygen -d -f /usr/local/etc/ssh_host_dsa_key -N ""
Generating public/private dsa key pair.
Your identification has been saved in /usr/local/etc/ssh_host_dsa_key.
Your public key has been saved in /usr/local/etc/ssh_host_dsa_key.pub.
The key fingerprint is:
00:91:f5:8a:55:7c:ac:ff:b7:08:1f:ce:23:aa:f2:79 root@solaris8
Create a public key pair to support the old, RSA-based version 1 protocol
# /usr/local/bin/ssh-keygen -b 1024 -f /usr/local/etc/ssh_host_rsa_key -t rsa -N ""
Generating public/private rsa1 key pair.
Your identification has been saved in /usr/local/etc/ssh_host_rsa_key.
Your public key has been saved in /usr/local/etc/ssh_host_rsa_key.pub.
The key fingerprint is:
8e:b0:1d:8a:22:f2:d2:37:1f:92:96:02:e8:74:ca:ea root@solaris8
Edit ssh daemon configuration file /usr/local/etc/sshd_config, enable protocol 2 and 1
Uncomment the line, that says
protocol 2,1
# /etc/init.d//sshd start
starting SSHD daemon
Thnaks
RK

Similar Messages

  • Ssh in solaris 10

    Hi all
    I have installed a new Solaris 10 1/06 on sunV480. I am not able to login with ssh in this server, both rlogin and telnet is working.If you have any solution for this please update
    Thanks
    RPS

    svcs -l ssh
    fmri svc:/network/ssh:default
    name SSH server
    enabled true
    state offline
    next_state none
    state_time Thu 03 Aug 2006 06:09:24 PM IST
    restarter svc:/system/svc/restarter:default
    dependency require_all/none svc:/system/filesystem/local (online)
    dependency optional_all/none svc:/system/filesystem/autofs (online)
    dependency require_all/none svc:/network/loopback (online)
    dependency require_all/none svc:/network/physical (maintenance)
    dependency require_all/none svc:/system/cryptosvc (online)
    dependency require_all/none svc:/system/utmp (online)
    dependency require_all/restart file://localhost/etc/ssh/sshd_config (online)

  • Help regarding SSH on solaris 8

    Hi Guys,
    I have installed SSH package on server as well as clients.
    I think I need to these steps next.( We do not have proper docs for SSH)
    Login as root on the server.
    1) ssh-keygen -b 1024 -t rsa -f /etc/ssh_hosts_key.pub -N " "
    Login to root as the user.
    2)ssh_keygen -b 1024 -t rsa
    Enter the phrase
    Basically this create 2 files in dir /home/<user_name>/.ssh. Copy id_rsa.pub as authorised_keys.
    Copy this 3 files to the client machine in user directory
    Login to client as root.
    3) ssh-agent $SHELL
    4)ssh-add <pahrase>
    Is this correct? (Actually i dont properly know that these commands do)
    Just wanted to check before i start expirementing on production boxes.
    I am working solaris 2.8 on E6500.
    Please help.

    Hi
    Step1 for just conencting thro ssh
    ps -ef|grep ssh (to make sure the daemon is running)
    Modify the sshd_config file and make rhe required changes
    some of them
    PasswordAuthentication
    PermitRootLogin
    StrictModes
    PermitEmptyPasswords
    once you make these changees stop and start the sshd daemon,now try to connect from your pc (thro putty or other ssh client tools ,it should connect
    step2
    password less login (using key exchange)
    Generate the key as you have mentioned on system 1
    ftp the .pub file over to system 2
    go to system 2 do a ssh to the system and terminate (this will create a .ssh directory)
    put the .pub from the system 1 here and also create a file called authorized_keys or the other way is cat the *.pub >authrozed_keys
    make the same kind of chanegs to the sshd_config file on this system(system 2) and recycle the sshd daemon
    Now try ssh from system 1 to 2 it should login with out asking for a password.
    Hope this helps
    Rgds
    Gopih

  • Getting mad trying to install studio11 on solaris 8

    Hello,
    I know I have to install J2RE or J2SE before but every time I try to download J2RE self-extracting archives I never get the same file length neither the same sum. Obviously, the script aborts when checking file integrity.
    I wonder, what I am doing wrong. Here are the results of several attempts under windows and freebsd, using SDM or not. I was unable to install SDM on Solaris for the same reason.
    Downloaded under FreeBSD with Firefox:
    -rw------- 1 1000 1000 14808913 Feb 14 19:47 j2re-1_4_2_10-solaris-sparc.sh
    -rw------- 1 1000 1000 4713087 Feb 14 19:46 j2re-1_4_2_10-solaris-sparcv9.sh
    MD5 (j2re-1_4_2_10-solaris-sparc.sh) = 94644bee76b3845dfc627846a3666185
    MD5 (j2re-1_4_2_10-solaris-sparcv9.sh) = 3e389244f432b1a669ec1bfb737c5b4c
    Downloaded under windows with SDM:
    -rw-r--r-- 1 1000 1000 14808740 Feb 14 14:28 j2re-1_4_2_10-solaris-sparc.sh
    -rw-r--r-- 1 1000 1000 4713056 Feb 14 14:28 j2re-1_4_2_10-solaris-sparcv9.sh
    MD5 (j2re-1_4_2_10-solaris-sparc.sh) = 065c076bcdc3fcbb7f4b09975246ac72
    MD5 (j2re-1_4_2_10-solaris-sparcv9.sh) = bac6ee9e7e34a84cb7f3e100a97518fa
    Downloaded under window without SDM:
    -rw-r--r-- 1 1000 1000 14808743 Feb 14 15:50 j2re-1_4_2_10-solaris-sparc.sh
    -rw-r--r-- 1 1000 1000 4713054 Feb 14 15:47 j2re-1_4_2_10-solaris-sparcv9.sh
    MD5 (j2re-1_4_2_10-solaris-sparc.sh) = ad93b2618b02585b5bd3fbf7a3758252
    MD5 (j2re-1_4_2_10-solaris-sparcv9.sh) = 36f7e29cc615cfe05174f692481f8274
    I just want to compile basic C code within some SSH sessions. Does some guru have a clue about this ?
    Thanks.

    Well, I gave up trying to get studio11 installed under 5.8
    A mount of a 5.9 /opt is ok.

  • How to install Dual OS(solaris 10 and Windows XP)?

    I have got a 80 gb sata hard disk and i am not able to install Dual OS(solaris and Windows XP ) on it.My Partitions are as follows:
    Primary partition-5GB
    Remaining are extended Partition.
    Extended partition details
    8 gb NTFS partition(installed windows XP)
    7 gb NTFS partiton(No data in it)
    20 gb NTFS partition(No data in it)
    20 gb NTFS partiton(has data in it)
    15 gb RAW partiton
    I first installed Windows xp on 8 gb Extended partiton.Then when i installed Solaris i could see only 2 partitons.One with the 5 gb and the other with the 71 gb.I actually wanted to install my solaris on the 15 gb Raw partition.Since i could not see the partition(15 gb Raw) i installed solaris on the 5 gb partition.Now when the comp boots it goes to solairs os only.i dont have the option to choose windows at all.
    could any one of you explain me how the partitions are supposed to be and how could i make it as a Dual OS.
    Saravanan
    Message was edited by:
    SaravananMandala

    Windows uses the primary partiton for boot, too, even if you installed it on the NTFS volume in the extended partition. Wherever you install Windows, it will need the primary partition for booting. You can never boot from Windows extended partitions
    As for the 15Gb raw partition, it look like what you call 'RAW partition' is actually just a small little part inside the extended partition. All your NTFS partitions (and your RAW partiton) are logical volumes and they all reside inside the extended partition. Even though Windows sees them as separate drives, each with its own drive letter, just as it sees the primary partition.
    You may try do use Windows fdisk or diskpart to delete the last logical volume in the extended partition, and then get the ntfs resize tool from Linux, or the CD1 from the Debian Linux install CDs, which has it included and accessible with a nice user interface, and resize your extended partition.
    I don't know if it works, I only used it to also resize some logical volume inside the partition. ntfs resize tool might not be easy to work with, you will need to read its documentation, but it does resize NTFS partitions (I have seen it).
    If it works, then you will have your 15Gb as unallocated space available for a new partition. Let the Solaris installer create this new partition automatically during install.
    Timothy Madden,
    Romania

  • Cant install agent11g on Solaris 9

    Hi
    I do have problem installing agent on solaris 9 64 bit.
    I tried tree ways - pushing agent from OMS, downloading agent using agentDownload and cloning agent from almost identical machine.
    Installation script start failing on the linking step giving errors about not being able to link. All prerequisites for agent are met.
    The third solution works until starting agent.
    Agent doesn't start throwing an error:
    emctl start agent
    ld.so.1: /export/home/oracle/agent11g/perl/bin/perl: fatal: attempt to open file with null name
    Killed
    If I execute this being in AGENT_HOME directory but using emctl.pl:
    bash-2.05$ perl ./bin/emctl.pl start agent
    Can't locate lib.pm in @INC (@INC contains: ../lib/5.10.0/sun4-solaris-thread-multi-64 ../lib/5.10.0 ../lib/site_perl/5.10.0/sun4-solaris-thread-multi-64 ../lib/site_perl/5.10.0 ../lib/5.10.0 ../lib/5.10.0/sun4-solaris-thread-multi-64 ../lib/site_perl .) at ./bin/emctl.pl line 201.
    BEGIN failed--compilation aborted at ./bin/emctl.pl line 201.
    If I go to perl/bin directory and execute the same, adjusting paths:
    bash-2.05$ cd perl/bin
    bash-2.05$ perl ../../bin/emctl.pl start agent
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/sysman/emSDK/conf/TargetInstaller (Unsupported major.minor version 50.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:509)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:246)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:54)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:322)
    EM Configuration issue. not found.
    Can someone help me with this?
    Thanks
    EDIT: during linking I get this error:
    INFO: ld: fatal: library -lclntsh: not found
    Edited by: Jarek Jozwik on 10-Feb-2011 08:50
    I do also get those errors:
    INFO: /export/home/oracle/agent11g/bin/genoccish
    INFO: ld: fatal: relocation error: file /export/home/oracle/agent11g/lib/libocci11.a(occiSQLExceptionImpl.o): section .rela.text: invalid
    relocation type: 0x52
    INFO: ld: fatal: relocation error: file /export/home/oracle/agent11g/lib32/libocci11.a(occiSQLExceptionImpl.o): section .rela.text: inval
    id relocation type: 0x52
    INFO: /export/home/oracle/agent11g/bin/genagtsh /export/home/oracle/agent11g/lib/libagtsh.so 1.0
    INFO: ld: fatal: relocation error: file /export/home/oracle/agent11g/lib/shoc.o: section .rela.text: invalid relocation type: 0x52
    INFO: ld: fatal: relocation error: file /export/home/oracle/agent11g/lib32/shoc.o: section .rela.text%shocodat_os_date_to_julian: invalid
    relocation type: 0x52
    Edited by: Jarek Jozwik on 10-Feb-2011 08:59

    Hi Jarek,
    I do not know to much about Solaris but this note (the truss command) cold give you a clue what is going on: 11g Grid Agent: Executing emctl Fails with 'Segmentation Fault' on Solaris 5.9 (Update 2) [ID 1140615.1]
    Also: 11gR1 on Solaris failing at relink phase with errors like "ld: fatal: relocation error" and then "ld: fatal: library -lclntsh: not found" [ID 848700.1] could be of help regarding the link (lclntsh) error.
    Eric

  • Installing 11i on Solaris and migrating 8.0.5 to new 8.1.6 database

    I've installed 11i (several times) on a new Sun solaris server. I also selected it to install a fresh database. On another server we have 11.0 and 8.0.5 database. We are using a new server to install 11i and we want to move our database over. I managed to transfer all database files over to the new server and upgrade to 8.1.6 (succeeded)
    How do I proceed now to get the 11i applications to use the database i've transferred over. Is this possible??? Can't find any clear documentation on how to merge this database into the applications 11i.
    Thanks
    null

    Gina, I am attempting something similar... but it involves moving an exisiting installation from HP-UX to Solaris, so I cannot move the datafiles... If I run into a method that helps both of us, I will let you know... as of now, I am installing fresh on Solaris and going to try to run upgrade scripts on existing 10.7 and exp/imp into the new instance on 11i (Solaris).
    Let me know of anything you find out that could help me, and I will do the same...
    thanks
    dns

  • SSH from solaris 10 to RHEL 5

    Hi,
    I want to do passwordless ssh from solaris VM to linux server.
    Kindly tell me the complete steps.

    On the machine attached to the screen in front of you:
    <pre>
    mkdir -p ~/.ssh
    chmod 700 ~/.ssh
    rm -f ~/.ssh/id_dsa
    ssh-keygen -t dsa -N "" -f ~/.ssh/id_dsa
    ssh username@remote_host "mkdir -p .ssh; chmod 700 .ssh"
    ssh username@remote_host "echo "$KEY" >> .ssh/authorized_keys; chmod 644 .ssh/authorized_keys"
    ssh username@remote_host
    (should log you right in without prompting for password)
    </pre>

  • Need 11gr2 RAC install Guide on Solaris 10 x86 using containers and NFS

    I'm looking for an 11gr2 RAC install Guide on Solaris 10 x86 using 2-3 containers. I need to have the NFS server reside in the global zone or on a 3rd container visable to the two rac containers.
    Please share me installation guide!
    Thank you!
    PS - I currently have run into an install issue -
    Can't change ownership on /oracle/products/11.2.0/ocr/: not owner at /oracle/app/11.2.0/grid/crs/install/crsconfig_lib.pm line 5014.
    I suspect the NFS share params from the NFS server in the global zone are not 100% correct to the two rac zones/containers.

    Have you visited Oracle Support Services website (formerly metalink) to determine if your desired configuration is supported?
    Last time I looked it was not.
    That said Oracle database installation guides are fully documented online.
    http://www.oracle.com/technetwork/database/enterprise-edition/documentation/database-093888.html

  • Oracle 9i install failing on Solaris 10

    Oracle 9i install on Solaris 10 fails at the Database creation stage with Ora error "Out of Memory"
    I have a Ultra 10 with 1GB RAM, 2GB swap and lot of space in the filesystem where I am installing Oracle
    The oracle release notes asks for increased value for shmmax, shmmni etc by editing /etc/system and according to Solaris 10, it is not required as kernel dynamically allocates those values. It looks like it is NOT. How can I verify?
    rcladm talks about shmmax values only with projects. How can I verify that all my applications running on a this box has a higher SHMMAX values and not on per project basis.
    In older versions, sysdef could tell us the current SHMMAX values. Is there any comparable commands in Solaris 10.
    I am not that comfortable with the rcladm features. Can some one show some examples.
    Is anyone successful in installing Oracle9i on Solaris 10. I heard Oracle patch set 9.2.0.5 and 9.2.0.6 is certified with Solaris 10. Does it mean the original version of 9.2 does not install on Solaris 10?

    'Net Configuration Assistant is failing" from installation. I tried twice and got the same problem. I tried to run 'netca' from the command line and got the same problem - Java runtime problem. I tried to install patch and could not find Oracle patches for Solaris 10 and the patches are for Solaris 9.
    Does anyone have suggestion?
    $ ./netca
    ld.so.1: /usr/ora/920/oracle.swd.jre/bin/sparc/native_threads/jre: fatal: relocation error: file /usr/ora/920/oracle.swd.jre/bin/../lib/sparc/native_threads/libawt.so: symbol XShmQueryExtension: referenced symbol not found (/usr/ora/920/oracle.swd.jre/bin/../lib/sparc/native_threads/libawt.so)
    ld.so.1: /usr/ora/920/oracle.swd.jre/bin/sparc/native_threads/jre: fatal: relocation error: file /usr/ora/920/oracle.swd.jre/bin/../lib/sparc/native_threads/libawt.so: symbol XShmQueryExtension: referenced symbol not found (/usr/ora/920/oracle.swd.jre/bin/../lib/sparc/native_threads/libawt.so)
    java.lang.NullPointerException
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Compiled Code)
    at oracle.net.ca.NetCA.<init>(Compiled Code)
    at oracle.net.ca.NetCA.main(Compiled Code)

  • Can EM12c Cloud Control agent be installed in a solaris zone?

    Can EM12c Cloud Control agent be installed in a solaris zone?
    If so, are Solaris 8 and Solaris 9 zones supported?
    thanks

    Yes we can...
    Solaris 9 is supported...I have installed agents on solaris 9 and 10

  • Install oracle10g at solaris 10 x86 platform ORA-07445 error occured

    I meet a problem when install oracle10g at solaris 10.when create database, the dbca display infomation:
    ora-03113 "end-of-file on communication channel"
    ora-03114 ORACLE not available
    Perhaps someone can give me some advices ?
    Its very urgent
    Thanks and Best Regards
    Dillon.xu
    OS: solaris10g
    # showrev
    Hostname: v40-1
    Hostid: 24ea10ed
    Release: 5.10
    Kernel architecture: i86pc
    Application architecture: i386
    Hardware provider:
    Domain: test.com
    Kernel version: SunOS 5.10 s10_74
    v40-1# prtconf |grep Mem
    Memory size: 2048 Megabytes
    database: oracle10g 10.1.0.3
    Oracle trace file info:
    export/home/oracle/product/10.0/rdbms/log/ora10g_ora_1759.trc
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /export/home/oracle/product/10.0
    System name: SunOS
    Node name: v40-1
    Release: 5.10
    Version: s10_74
    Machine: i86pc
    Instance name: ora10g
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    1759
    kstwlb: SGA is no longer mapped
    Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x
    59fffff4
    *** 2005-02-22 14:20:07.861
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [SIGSEGV] [Address not mapped to obj
    ect] [1509949428] [] [] []
    Current SQL information unavailable - no session.
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)

    10g on Solaris 10 isn't yet supported. It is announced for March 2005.

  • Docs needed for installing siebel in solaris 10 x86, Urgent..!!!!!!!!

    Docs needed for installing siebel in solaris 10 x86
    Thanks
    Kishore
    Edited by: Kishore P on Aug 11, 2010 6:03 PM

    If it's documentation you're after, always go straight to Siebel Bookshelf!
    http://download.oracle.com/docs/cd/E14004_01/books/SiebInstUNIX/SiebInstUNIXTOC.html

  • HOW TO INSTALL ROUTING IN SOLARIS 10

    I have already installed my Solaris 10 Server, I was tryin to implement the routing in the file /etc/init.d/inetsvc (/etc/rc2.d/S98inetsvc) as in Solaris 8.
    !! this file does not exists!!
    How install routings in Solaris 10 6/06 ??
    thanks

    I have already installed my Solaris 10 Server, I was
    tryin to implement the routing in the file
    /etc/init.d/inetsvc (/etc/rc2.d/S98inetsvc) as in
    Solaris 8.
    !! this file does not exists!!
    How install routings in Solaris 10 6/06 ??It depends on what your routing script does. Solaris 10 introduces persistent routing, so you may just need to add the route once (persistently), then let the system take care of it.
    Darren

  • Installing gcc on solaris 10

    hi,
    i have a problem when trying to install gcc on solaris 10.
    my path:
    PATH=/usr/sbin:/usr/bin:/usr/sfw/bin:/usr/sfw/lib:/usr/sfw/libexec
    # gcc test.c
    gcc: installation problem, cannot exec `as': No such file or directory
    i don't know what the problem is, please help
    thks

    i have a problem when trying to install gcc on solaris 10.Solaris 10's bundled gcc in /usr/sfw/bin/gcc?
    my path:
    PATH=/usr/sbin:/usr/bin:/usr/sfw/bin:/usr/sfw/lib:/usr/sfw/libexec/usr/sfw/lib and /usr/sfw/libexec can probably be deleted from
    $PATH, the executables are in /usr/sfw/bin.
    # gcc test.c
    gcc: installation problem, cannot exec `as': No such
    file or directory/usr/sfw/bin/gcc needs the GNU assembler, and it should be
    install as /usr/sfw/bin/gas. Do you have the Solaris 10 package
    SUNWbinutils installed?
    % pkgchk -l -p /usr/sfw/bin/gas
    Pathname: /usr/sfw/bin/gas
    Type: regular file
    Expected mode: 0555
    Expected owner: root
    Expected group: bin
    Expected file size (bytes): 613844
    Expected sum(1) of contents: 49903
    Expected last modification: Jan 23 02:53:41 2005
    Referenced by the following packages:
    SUNWbinutils
    Current status: installed

Maybe you are looking for

  • Cannot add apps from itunes

    Hi there, after connecting my ipad to my mac and syncing, all apps on the ipad are gone. They're still in the section 'apps' of my itunes library but whenever I try to do INSTALL or drag one to one of the screens on the ipad, it appears there, but af

  • How to display value withing some range?

    Hi, I am trying to display months name using map and my results are as below:- 1)January 2)February 3)March 4)April 5)May 6)Jun Now I want to display the result in some range i.e. display from 2) to 5) or from 4) to 9); whatever user inputs the range

  • HT1338 Updating iMovie in App Store

    I am the second user of my macbook air (boss got a new pro). His apple id is needed to update imovie in the app store. I have signed in on the App Store but i am still prompted to use his apple id to install the update. I don't need iMovie but I am f

  • Search in multiple fields

    I have a form an I want to search in multiple fields of same data block,but with OR condition (not AND condition).How can I do this?

  • Developer Vs Programmer Vs Engineer

    I wondered if anyone would know a precise difference between a developer, a programmer and a software engineer.