Command equal to Solaris devfsadm in linux

I attached a tape drive to sun fire x4170m3 server having operating system OEL5.8, need to add the driver to the kernel as we do in solaris devfsadm -c tape,,
I would like to ask if someone know about any equal command to the solaris devfsadm  so I can add driver module to the Linux kernel without rebooting the Server.
Thanks in Advance...
Owais Hyder.

To load and unload drivers in linux, you want to use the modprobe command. Chances are the scsi card (or fibre), is already loaded. You need to just load the scsi tape driver (st).
# modprobe st
You can check what scsi devices appear with:
# cat /proc/scsi/scsi
If the tape drive is not listed, then you may need to load additional drivers for the scsi card. In some cases, you may need to rescan the scsi bus. There are a couple of ways to do this. First see if the schell script rescan-scsi-bus.sh exists on the system. If not, just google around for rescanning the scsi bus.
Good luck
- David
Moderator Action:
Signature with embedded link has been removed.

Similar Messages

  • Does "top" command work in Solaris?

    Does "top" command work in solaris?
    # uname -a
    SunOS rac1 5.10 Generic_120012-14 i86pc i386 i86pc
    # top
    top: not found
    Edited by: user11936985 on Aug 29, 2011 8:44 AM

    Top has two sections, the summary information at the top of the screen which gives load averages, process counts, etc. and a bottom section which lists the "top processes". The prstat command standard report is similar to the bottom section of top. So if that is what you need, then prstat is an adequate substitute. It doesn't report the information in top's summary section. On the other hand, prstat is actually a much more powerful tool than top, especially is you use some of the other options. For example, "prstat -a" gives you the "top process" report plus a summary report of usage by user. If you use "prstat -J" you get a top process report with a summary by project and "prstat -Z" gives a top process report with a summary by zone. You can use options like -v or -m to get more information on each process in the "top process" section. There are other options mentioned in the manual page.
    Top works and works well on Solaris. You can get a copy form sunfreeware and probably other sources as well. It doesn't come from Oracle with Solaris 10 (but does come with Solaris 11). If you're a Linux shop you might want it because it is familiar. However, you may want to look at prstat as well because it can provide some useful information that top does not.

  • Changes to root_archive  command/scrip  in Solaris 11

    hi,
    There are changes to root_archive command/script in Solaris 11.
    Solaris 11 ./boot/solaris/bin/root_archive
    usage: root_archive pack <archive> <root>
    root_archive unpack <archive> <root>
    Solaris 10bash-3.00# ./boot/solaris/bin/root_archive
    usage: root_archive pack <archive> <root>
    root_archive unpack <archive> <root>
    root_archive packmedia <solaris_image> <root>
    root_archive unpackmedia <solaris_image> <root>
    I wish to use root_archive packmedia and unpackmedia option in Solaris 11 , how can we use it ?
    Thanks

    What problem are you trying to solve that leads to you believe you need to do this ?
    Have you looked at Distribution Constructor ?

  • Solaris 10 and Linux-like console navigation - e.g. pressing TAB,using arro

    I'm struggling navigating in the Solaris( 10on x86 ) xterm from CDE(oh and anywhere basically). I'm coming from Linux so I was wondering is this the way this really should be and is there any way to change it(found linux-like motions in the menu though not sure that this is the way or what to look for).
    By navigating I mean as in the topic and like in Linux- e.g. pressing TAB to see list of commands, to complete the name of the file I've already started writing, using the arrows to see most recent executed commands etc.
    It's just that sometimes I make a mistake and it's buggering me to re-write command again or copy/paste.

    Looks like you need to set (in /etc/passwd) your default shell to bash in order to have Linux-like navigation you've described or run 'bash' as first command in new terminal.

  • Solaris 10 for Linux Administrators

    I'm trying to decrease the slope of the Solaris 10 learning curve.
    I've worked with Linux for many years, and I know it's quirks.
    I'm very new to Solaris.
    Does there exist a good resource written from the perspective of a Linux administrator who wants to learn to properly administer Solaris?

    Go to docs.sun.com
    You will get lot of reading material. Both os are very similar , so you should not have any problem when you first work with solaris.
    Caution : Dont assume all commands and switches will work on Solaris if it works on Linux. I spend hours to make cvs web working on Solaris. But it works with very less effort on red hat linux.
    Best Luck.
    Mahendra Rajgude

  • Iptables in Solaris, like in Linux

    Hello!
    I wanted to check that like in Linux, is there any command like iptables, or any other adjacent command, performing the same function as of implementing a security firewall....??

    You only have ipfilter, aka ipf wich is the default FreeBSD network filter.
    You also have SunScreen from solaris, but I didn't like it.
    Go for ipfilter, it's different from iptables, but similar and quite nice.

  • Running a perl shell command through a java program on linux platform

    i'm trying to execute the following command in a java program "perl xxx.pl" using the runtime.getruntime method
    here is the piece of code
    String[] cmd={"perl","-c","AraMorph.pl",""};
    Process p = Runtime.getRuntime().exec(cmd,null,new File("/home/ahmed/buckwalter_morphan_1/data"));
    p.waitFor();
    BufferedReader in=new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line=in.readLine())!=null)
    System.out.println(line);
    but it doesn't output anything even if i tried to print the output to a file
    i'm trying to execute this program on linux platform but its working properly on a windows platform
    thx
    raar

    String[] cmd={"perl","AraMorph.pl"," </home/ahmed/in.txt"," >/home/ahmed/ast.txt"};
    Process p = Runtime.getRuntime().exec(cmd,null,new File("/home/ahmed/buckwalter_morphan_1/data"));
    BufferedReader in=new BufferedReader(new InputStreamReader(p.getErrorStream()));
    String line;
    while ((line=in.readLine())!=null)
    System.out.println(line);
    p.waitFor();
    String str2=p.getInputStream().toString();
    System.out.println("==================================="+str2);
    and it still outputs nothing but goes in something like infinite loop or as assumed in the article u suggested a deadlock but even all solutions to all pitfalls didn't succeed

  • How to know last command used in solaris

    Dear Friends,
    We have a Solaris 8 server. Someone changed ownership of files. Is there any way to find out who logged in the server & changed ownership ? ?
    last command is not giving much information . Since /var/adm/lastlog is in binary format I am not able to read it's contents.
    Requesting to help me out.
    Regards,
    Tejas J Raval

    You can also check the history of a particular user. By instance, if it use bash, check this file :
    ~/.bash_historyand check his :
    ~/bash_loginand :
    ~/.bashrcbecause he has perhaps some special feature, like to set his history in an other file by instance.

  • Restore solaris db on linux can't restore controlfile

    Hi all. Hope someone can help with this.
    I take my backups with this conf.
    configure controlfile autobackup on;
    configure controlfile autobackup format for device type disk to '/u02/backup/rman/<sid>/ctl_sp_bk_%F';
    I do full backups at 3:00 am and archive log backups every hour.
    I've copied my backups to the exact same locations on the new server.
    rman
    set dbid
    connect target /
    set controlfile autobackup format for device type disk to '/u02/backup/rman/<sid>/ctl_sp_bk_%F';
    restore controlfile from autobackup;
    no autobackup found or specified handle is not a valid copy or piece
    I can rename the file to just %F and copy to <ORACLE_HOME>/dbs and still same error.
    When I restored on a solaris box I was able to restore when I renamed the file to just %F and placed in the dbs folder but not on the linux box.
    Any suggestions or something I've left off?
    Thanks.

    You are in luck, with 10g you can utilize
    RMAN Cross-Platform Transportable Databases and Tablespaces to perform this operation.

  • Migrate Oracle Apps 11.5.10.2 from Sun solaris to RHE Linux 32 bit.

    We are migrating the Oracle Apps 11.5.10.2 from Solaris two node to Linux two node including the database Oracle 10.2.04 64 bit.
    Since the applications only support 32 bit we are not able to store CM tier in a 64 bit Linux so with this considerations we are going with the below plan.
    1. Install RHEL 5 as a 32 bit for two nodes ( One for DB/CM and FORMS/WEB)
    2. Migrate the applications and DB from Solaris to Linux as the same node configuration that is
    Node A:
    Oracle DB 10.2.0.4 64 bit ( SUN oS 10 64bit) -> Oracle 10.2.0.5 32bit (RHEL 5 32 bit)
    Oracle Apps CM 11.5.10.2 (SUN OS 10 64bit) -> Oracle apps CM 32 bit(RHEL 5 32 bit)
    Node B:
    Oracle apps 11.5.10.2 forms (sun OS 10) -> Oracle apps 11.5.10.2 forms ( RHEL 5 32bit)
    Oracle apps WEB 11.5.10.2 (SUN OS 10) -> Oracle apps WEB 11.5.10.2 ( RHEL 5 32 bit).
    Question : 1. Did you see any snag on this kind of migration
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux

    Hi,
    1. Did you see any snag on this kind of migrationWhy would you downgrade the db from 64 bit to 32 bit. As 32 Bit has lot of memory limitations.
    You could keep the database on 64 bit for linux too.
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux Please see
    Note 238276.1 - Migrating to Linux with Oracle Applications Release 11i
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    Notice to Oracle E-Business Suite Customers: Correction to Export/Import Notes [ID 1055539.1]
    EBS 11i Export/Import Fails On Admsc1020.sql Due To Missing Catmgdidcode.sql [ID 804665.1]
    Thanks
    Edited by: EBSDBA on Oct 25, 2011 5:30 PM

  • Solaris 10 and linux IB

    We have a linux cluster running RH5.3 with ofed1.4 using Mellanox MT25418. The cluster is attached to a sun solaris10.7 thumper box. The thumper box export a zfs filesystem via NFS. linux clients mount the filesystem via IPoIB.
    Under filesystem I/O load the subnet manager gets repeated path record requests from the sun solaris box. This can bring the SM and the fabric down. Any any one else had issue with solaris IB <-> Linux IB? Any insight into what could be causing the issue?
    Thanks,
    Mahmoud
    Oct 15 19:37: 59 952368 [41E02960] 0x08 -> PathRecord dump:
    service id ..............0x0000000000000000
    dgid .................... Oxfe80000000000000 : 0x00237dffff949819
    sgid .................... Oxfe80000000000000 : 0x0003ba000100d0a5
    dlid .................... 0
    slid .................... 0
    hop_flow_raw............ OxO
    tclass .................. OxO
    num_path_revers......... Ox81
    pkey .................... 0x0
    qos_class ............... OxO
    sl ......................OxO
    mtu .....................OxO
    rate .................... OxO
    pkt_life ................0x0
    preference .............. 0x0
    resv2 ................... OxO
    resv3 ................... OxO
    Oct 15 19:37:59 952376 [41E02960) 0x08 -> osm_pr_rcv_process: Unicast
    destination requested
    Oct 15 19:37:59 952382 [41E02960] 0x08 ->
    osm_pr_rcv_get_port pair_paths: Src port 0x0003ba000100d0a5, Dst port
    0x00237dffff949819
    Oct 15 19:37:59 952388 [41E02960] 0x08 ->
    osmpr_rcv_get_port_pair_paths: Src LIDs [2 - 2], Dest LIDs [67-67]
    Oct 15 19:37:59 952393 [41E02960] 0x08 ->
    osm prrcv_get_lid_pair_path: Src LID 2, Dest LID 67
    Oct 15 19:37:59 952399 [41E02960] 0x08 -> osmpr_rcv_get-path_parms:
    Path min MTU = 4, min rate = 6
    Oct 15 19:37:59 952408 [41E02960] 0x08 - > osmpr_rcv_get-path_parms:
    Path params: mtu = 4, rate = 6, packet lifetime = 18, pkey = OxFFFF, sl
    = 0
    Oct 15 19:37:59 952417 [41E02960] 0x08 - > osmpr_rcv_get_path_parms:
    Path min MTU = 4, min rate = 6
    Oct 15 19: 37:59 952423 [41E02960] 0x08 -> osm pr_rcv_get_path parms:
    Path params: mtu = 4, rate = 6, packet lifetime = 18, pkey = OxFFFF, sl
    = 0
    Oct 15 19:37:59 952428 [41E02960] 0x08-> osm_sa_respond: Returning 1
    records
    Oct 15 19:37:59 952433 [41E02960] 0x08 - > osm_vendor_get: Acquiring UMAD
    for p_madw = 0x2a9567f2c8, size = 120
    Oct 15 19:37:59 952439 [41E02960] 0x08 -> osm_vendor_get: Acquired UMAD
    0x2a9567f390, size = 120
    Oct 15 19:37:59 952455 [41E02960] 0x08 - > osm_vendor_put: Retiring UMAD
    0x2a9567f390
    Oct 15 19:37:59 952460 [41E02960] 0x08 -> •.osm_vendor_send: Completed
    sending response or unsolicited p_madw'"j= Ox2a9567f2b0
    Oct 15 19:37:59 952466 [41E02960] 0x08 -> osm_vendor_put: Retiring UMAD
    0x724520
    ===============
    Loading IBDIAGNET from: /usr/1ib64 / ibdiagnetl.2
    -W- Topology file is not specified.
    Reports regarding cluster links will use direct routes.
    Loading IBDM from: /usr/lib64 / ibdml.2
    - I- Using port 1 as the local port.
    - I- Discovering ... 103 nodes (7 Switches & 96 CA- s) discovered.
    -I ---------------------------------------------------
    - I- Bad Guids /LIDs Info
    -I -------------------------------------------------- -
    -I- No bad Guids were found
    -I -------------------------------------------------- -
    -I- Links With Logical State = INIT
    -I -------------------------------------------------- -
    -I- No bad Links (with logical state = INIT) were found
    -I ---------------------------------------------------
    -I- PM Counters Info
    -I -------------------------------------------------- -
    -I- No illegal PM counters values were found
    -I ---------------------------------------------------
    -I- Fabric Partitions Report (see ibdiagnet.pkey for a full hosts list)
    -I ---------------------------------------------------
    -I- PKey:Ox7fff Hosts:97 full:97 partial:0
    -I -------------------------------------------------- -
    -I- IPoIB Subnets Check
    -I ---------------------------------------------------
    -I- Subnet: IPv4 PKey:Ox7fff QKey:Ox00000blb MTU:2048Byte rate:lOGbps
    SL:OxOO
    -W- Suboptimal rate for group. Lowest member rate:20Gbps > grouprate:
    lOGbps
    -I ---------------------------------------------------
    -I- Bad Links Info
    -I- Errors have occurred on the following links
    (for errors details, look in log file / tmp/ibdiagnet.log):
    -I ----------------------------------------------------
    Link at the end of direct route "1,11,23"
    -I- Stages Status Report:
    STAGE
    Bad GUIDs /LIDS Check
    Link State Active Check
    Performance Counters Report
    Partitions Check
    IPoIB Subnets Check
    Link Errors Check
    Errors Warnings
    0 0
    0 0
    0 0
    0 0
    0 1
    0 0
    Please see /tmp/ibdiagnet.log for complete log
    - I- Done. Run time was 6 seconds.

    Hi, I am trying the same thing at least where I have windows xp, solaris 10 and Ubuntu Linux on one hard drive. I am also trying to configure Solaris to work like that too. Here is a link that I got from another forum that might help with that.
    http://www.opensolaris.org/jive/thread.jspa?threadID=44130&tstart=0

  • Question on top command output in solaris

    Platform : Solaris 5.10
    In the top output, if you look at the CPU colum, you can see that one process (2415) is consuming 95.84 % of CPU, another process (28533) is consuming 91.81%. How can this happen ? If one process is consuming 95.84 , then less 5% of CPU is available to all other processes . Right?
    load averages:  4.24,  4.02,  3.89;                    up 57+10:17:11     14:36:35
    252 processes: 245 sleeping, 1 zombie, 6 on cpu
    CPU states: 40.7% idle, 46.7% user, 12.6% kernel,  0.0% iowait,  0.0% swap
    Memory: 16G phys mem, 1002M free mem, 31G swap, 31G free swap
       PID USERNAME LWP PRI NICE  SIZE   RES STATE    TIME    CPU COMMAND
      2415 oracle     1   0    0 6267M 6182M cpu     45.7H 95.84% oracle   -------- ???
    28533 oracle     2   0    0 5245M 5166M cpu     88:23 91.81% oracle   -------- ???
    12062 oracle     2   0    0 5245M 5166M cpu    194:39 82.03% oracle
      3459 oracle     1   0    0 1380K  996K cpu      9:55 73.00% gzip
      2276 oracle     2  35    0 5244M 5165M sleep    0:16 12.84% oracle
    13629 oracle     2  33    0 5244M 5165M sleep    4:51 12.44% oracle
      7784 oracle     2  32    0 5349M 5270M sleep    1:51 11.85% oracle
      5217 oracle     1 100  -20 5248M 5154M sleep   17.5H  3.05% oracle
      5225 oracle     1 100  -20 5248M 5154M sleep   17.3H  2.87% oracle
    14569 oracle     1 100  -20 6273M 6175M sleep   28.0H  1.61% oracle
    14565 oracle     1 100  -20 6271M 6173M sleep   28.8H  1.56% oracle
      1052 root      44  59    0   61M   36M sleep  319:29  1.41% crsd.bin
    15734 oracle     3   0    0   33M   12M sleep  591:32  1.11% tnslsnr
      5237 oracle     2  59    0 5275M 5181M sleep   79:47  0.51% oracle
      5235 oracle     2  59    0 5271M 5177M sleep   81:17  0.44% oracle

    I think you are right. This machine has 8 CPUs and there are 15 lines in the output . May be each line in the top result is for each core.
    Result of psrinfo showing the number of CPUs
    $ /usr/sbin/psrinfo
    0       on-line   since 04/12/2011 09:19:34
    1       on-line   since 04/12/2011 09:19:42
    2       on-line   since 04/12/2011 09:19:44
    3       on-line   since 04/12/2011 09:19:46
    4       on-line   since 04/12/2011 09:19:48
    5       on-line   since 04/12/2011 09:19:50
    6       on-line   since 04/12/2011 09:19:52
    7       on-line   since 04/12/2011 09:19:54Edited by: Tadeusz on Jun 8, 2011 8:13 AM

  • Solaris 10 and Linux dual boot

    I currently have Linux installed and would like to install Solaris 10 on the same system via a different H-drive. I would like to have both OS fully functional.
    I have loaded Solaris 10 CD1 but unable boot into solaris to complete installation.
    I have edited linux /boot/grub/menu, syntax outlined below.
    title solaris in hdc1 known to grub as (hd1,0)
    root (hd1,0)
    chainloader +1
    Still unable to boot up solaris getting error: 21
    Here's my hardware configuration
    Primary Mstr: 1 ide H-drive - Linux
    Primary slave: n/a
    Secondary mstr: 1 ide H-drive - Solaris 10
    Slave: DVD
    Thanks to all in advance!

    OK, folks, I have solved it and here are my last words on the subject.
    First of all, my verdict is to use the Solaris GRUB to boot all the other OS's, just because the Linux GRUB "cannot mount the partition", where Solaris kernel is. The Solaris GRUB can do it all.
    I can absolutely boot my Linux (hd1,0) partition from my SXDE GRUB installation on (hd0),
    for that I use the following section in */boot/grub/menu.lst*:
    title SuSE-10.3-GM
    root (hd1,0)
    kernel /boot/vmlinuz root=/dev/sdb1 vga=0x31a splash=silent ht=on showopts
    initrd /boot/initrd
    map (hd0) (hd1)
    Yes, "*map ...*" string is important, for GRUB starts the counting from the drive it is installed in. It seems, the author of the original post is missing this string in his bootloader configuration; his Linux is on (hd0) and Solaris on (hd1), so he needs to use the "map" string.
    I must also add to this, that when I booted last time into my Linux (SuSE10.3), I took care to install it's own GRUB bootloader into the Linux installation partition(must be set bootable). You have different ways of doing it, basically you can log into GRUB shell and do this:
    grub> root (hd1,0) --- my linux partition
    setup (hd1,0) -- the partition I wanted to install GRUB into(which IS my linux bootable partition).
    This helps when you've got your first drive MBR corrupted, and need to boot your linux somehow; then you "chainload" from the boot partition.
    However, the example shown above boots my SuSE right away, without chainloading into the GRUB installed into the Linux partition. Yes, Solaris GRUB does that without complain, and I added this section manually to the menu.lst when logged in after the SXDE installation was complete. My homage to the Solaris version of GRUB in this case, which is more capable, than the Linux version. Thanks to you developers!
    If GRUB couldn't boot linux kernel directly, I'd have to use chainloader string (which is also known to work) like this:
    root (hd1,0)
    chainloader +1
    map (hd0) (hd1)
    And the problem I had with installation and partitioning was solved by formatting the whole drive into Solaris. In fact, there had been a lot of partition deletion/creation by me, so the Linux fdisk could see one partition configuration, while Solaris fdisk saw it all different. Well, I can see that disk partitioning in itself is a bit more complicated process, than the end-user wants to think.
    Excuse me for such long letters, I just tried to give a thorough account on the matter. Hope this would help somebody out there.
    Cheers,
    Kostya
    Edited by: kostya_berger on Mar 28, 2008 9:56 PM
    Edited by: kostya_berger on Mar 28, 2008 10:02 PM
    Edited by: kostya_berger on Mar 28, 2008 10:15 PM

  • Solaris 10: A linux-user's attempt

    seeing as how Sun has released Solaris as open source now, I figured I would give it a shot. I like to think of myself as very open-minded and since I support linux because I tried it and found it to be better, there is no reason to not try other Operating Systems and continue to assess the pros/cons to each.
    After downloading the 4 cds and burning all the ISO images, I began to reboot so I could see how the install goes. I have seen from my google searches that Solaris does not like to co-exist with linux on the same physical drive, so i have my /dev/hdb ready to go!
    I had some questions about adding Solaris to my grub entry, but I can always worry about that later.
    During the bootup process from the Solaris install cd, it just stops. It begins to boot off of the install cd, but then after stating "Running Configuration Assistant..." I have nothing at all.
    It just hangs. I litterally get 5 seconds into the bootup before it stops.
    Does anyone have any advice? Maybe I have a corrupt ISO? Something has to be wrong, because I know people have been able to install Solaris 10 x86
    System information:
    AMD 2600
    256 MB DDR (2700) RAM (ya, i know...)
    Integrated Lan (traditionally eth1), Sound, Video (but not used), usb, ect.
    Linksys 10/100 Lan card (traditionally eth0)
    Nvidia Geforce 4 Ti 4200 (128mb)
    17" Monitor (traditionally at 1024x768)
    hda: 160gb [hda1: 70gb, hda3: 30gb, hda4: 1gb, hda5: 50gb]
    hdb: 80gb [hdb1: 70gb]
    hdc: +/- DVD RW
    hdd: DVD/CDRW
    Wireless mouse/keyboard (wired set on hand incase solaris does not support)
    OS's: Fedora Core III (hda1), Win2k (hda3), Suse 9.1 (hda5)
    anything else that you think might help?

    Perhaps a little belated: two things.
    1) grub entry and disks: a "makeactive" and "chainloader +1" generally work well for booting the partition with solaris (x86) on it, as with *BSD.
    Solaris 8 and 9 worked ok on the same disk as other systems but made the annoying demand that solaris should get the first dos partition on the disk. It would be nice if this is no longer necessary, but I'd guess it is...
    2) "seeing as how Sun has released Solaris as open source now,"
    I'd be very happy if this were so, but the last I heard was that a few parts had been made open source, although there were statements that all would be in the end.
    So, I don't see how the "open source" promise is going to make it more reasonable for you to try solaris x86 now than it would have been previously (unless it's the ethics of claimed intention rather than the practicality that interests you).
    If you want to play with different systems than linux, try the BSDs (from which root Solaris came). FreeBSD has excellent hardware support and much less hurdle-filled installation than solaris, and has an easy system for adding any of hundreds of free software packages. Solaris x86 may be useful for ensuring uniformity with solaris on existing sparc architectures, but it just isn't as easy to get lots of recent free software installed for every day use; and much proprietary software that supports solaris supports only the sparc version (and possibly linux x86) so you don't get that either by using solaris x86.

  • Solaris Express on Linux Ubuntu (Gutsy)

    I am trying to install SDXE on my VAIO laptop. It passed the compatibility tests, so there should be no problem.
    But, despite I have a 12 GB primary partition available, the installer tells that there is a problem with Linux FDisk partitions, which can not coexist with Solaris FDisk partitions.
    I have read that it is possible to have a multiboot computer with Solaris/Linux(Ubuntu 7.10 in my case) and Windows.
    But the installer does not go further.
    Or should I get rid of my Ubuntu Linux?
    thanks in advance for any advice on this.

    Finally, after three shots, I got Solaris in my notebook.
    Now, I am struggling with WPA for my wireless network. Where does Solaris store WPA keys?
    After a couple of hours, I decided to move to my router and wire my notebook :(
    But it is ok. May be somebody could help me with this.
    Also, is there a stand-by / hibernate option?
    best regards from Lima, Peru
    Sergio

Maybe you are looking for

  • Time capsule goes for "sleep mode" ?

    Hey Guys, Im using a Time Capsule (called TC below) 2 TB, the latest version, mostly for two things; I download files to directly to the TC harddrive and i also store some of my music on it. The first problem is that when i download files directly to

  • Problem with task to object status mapping

    Hi, There is a task 'Create User' on which on completion changes the object status to provisioned. There is a subsequent task named 'Update form' which on rejection should change the object status back to provisioning. I have implemented this logic i

  • How do I get Favourites to appear on my page?

    Using Mozilla for the first time and going to Hotmail, I have Bookmarks, whatever that is, but no access to My Favorites. That is what I need otherwise it is useless

  • Port Number visible in Siebel URL

    Hi all, We have just finished deploying our Siebel Application in Production. It is a standard multi-server environment with Clustering and Load Balancing. However, we see that Siebel is automatically appending the Network Port Number (:8000), when a

  • Firefox is stuttering

    Hi, My firefox has suddenly started stuttering for some reason. I havent installed or uninstalled any add-ons or software to my computer. I did a full restart of my computer and used the browser in safe mode but it didnt help. In the resource monitor