Solaris 10 x86 coexist with Windows XP

Hi,
I can install Solaris 10 on my laptop (Toshiba Dynabook SSX) through jumpstart installation. After that, I boot up my laptop in Windows 98 boot disk to create and format a FAT32 partition. This partition used to install Windows XP in unattended mode. When I finish Windows XP installation. I reboot my laptop in Solaris 10. Durning the boot sequence, the system reports a lot of "BAD BLOCK" harddisk errors. I tried to fix this by "fsck -y". Since the partition is badly damage. there is no way to recover it. I guess it should be a bug for this beta release. I hope that someone in Sun can figure out this problem.

Sounds more like a Windows 98 or Windows XP problem, that thrashes other OS's fdisk partitions.
I'm not sure, but does Windows 98 properly support big (>32GB) IDE disks in LBA mode? I'd double check
the fdisk tables from Solaris with "fdisk -W - /dev/rdsk/....p0" after you've created and formatted the FAT32
partition from Windows 98, maybe the FAT32 partition overlaps the Solaris fdisk partition?

Similar Messages

  • Solaris 2.7 with Windows 2000

    My name is Per Persson and i'm a student from Sweden. I wonder if you know how to implement kerberos in Solaris 2,7 or if you know any good sites with information about it. I want to be able to connect to a Windows 2000 server from an account in a solaris 2,7. How do i use kerberos to get an secure login to my server. Both machines are in the same lockal network and they are the only two computers in the net.
    Thanks
    Per Persson      [email protected]

    Tim,
    you are perfectly right: that Vintela product is not certified (as SNC solution).
    But you are not quite right regarding the separate treatment. The major difference between that product and the SNC certified products (such as CyberSafe, Entrust, ...) is: Vintela uses different SNC libraries on the client side (=> our Windows SSPI wrappers, see <a href="http://service.sap.com/~iron/fm/011000358700000431401997E/352295">SAP note 352295</a>) and the server side (=> their own SNC library, not certified). And that is actually also one reason why that solution cannot be certified ...
    Well, those Windows SSPI wrappers provided by SAP (=> gsskrb5.dll, for example) are also not "SNC certified", but SAP provides support (being in contact with Microsoft). Well, as some people might know, there are also some interoperability issues between different Microsoft OS versions ... - resulting in reactive patches of our SSPI wrappers.
    I really do <u>not</u> want to promote <u>any</u> product - neither the one of Quest Software Inc., nor the one of <a href="http://www.cybersafe.ltd.uk/">CyberSafe Ltd</a>, nor <a href="http://www.entrust.com">Entrust Inc.</a>, nor <a href="http://www.secude.com/">SECUDE IT Security GmbH</a>, nor ...
    I do not even want to disencourage anyone from implementing his own Kerberos-based solution (or any other solution which provides an GSS API), provided that this person is able to help himself. Reason: if products of different vendors are used and interoperability problems occur the usual finger-pointing will start. In the end you'll not get support by anyone ... - as long as you are aware of this (and capable of helping yourself) you can go ahead. Some (known) universities are belonging to that group ... - but it might not be appropriete to the vast majority of customers.

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • Install Solaris 8 on Gateway Laptop with Windows XP

    I have Gateway laptop with Windows XP pre-installed. Now I want to install Solaris 8 without removing the Windows XP. I wanted to use dual boot option. Can any body advice me if there is any whit paper on this subject(with step by step insturctions). I have partition magic but it can only partition and format to NTFS, FAT, FAT32 and Ext2 (linux only).
    Thanks for your help.
    rambo

    It can be done but the biggest stump is the network interface. I've an Acer 350 series with a built-in NIC. I also use XFree86 because the Xsun doesn't recognize the video card. The biggest problem in getting Solaris x86 working is getting the network interface to work, since the PCMCIA support is horrible. You need to be sure the the components on your laptop conform to the HCL. As for X, just use XFree86.

  • Installing Solaris 10 with Windows XP

    Hi,
    I have an existing Windows XP installation, and want to install Solaris 10 on the same hard drive, for which I have created an extra primary partition. However, the installation seems to want to take over the whole hard drive, so I am a bit hesitant to proceed.
    Is there a simple guide to installing Solaris 10 to coexist with an existing Windows NT/2000/XP installtion?
    (If I am posting this to the wrong forum, please forgive my ignorance, and kindly point me to the correct one - it is my first time here)
    Thanks and Regards,
    Martin

    Having the partition at the end of the disk shouldn't be the big problem, I often place the partition at the begining as I used to do with linux...
    I really don't know if there is a restriction for the solaris loader to be at the first cilinders (maybe yes, that's why I put it at the begining)....
    but the point here is to have some unallocated space... so try it out... if for some reason the solaris loader doesn't work your system could be screwed up (no booting anywhere) but if that happens the solution is quite simple: to restore the MBR from Windows (recovery console booting from CD)....

  • Solaris 8 with Windows 98

    I am planning on installing the Solaris 8 media kit on my Windows 98, Pentium III computer. I would like to have both operating systems on the same hard drive. I am new to computers and am doing this for educational purposes - I would like to become a systems administrator. Please give any advice of what I need to do. If I have to partition my hard drive, how do I do this? What is the quickest way of backing up my hard drive?
    Is there any problems of having 2 OS on the same hard drive? If so, what is the best and cheapest way to do this?

    Hi,
    When you run the 2.6 install program, it will ask you which partition you wish to use. On disk1, all you need to do is to create another partition on your existing disk. You can use Solaris boot manager to boot Solaris x86, NT, and Win 9x (among other systems).
    To shrink an existing MS-DOS/MS Windows partition, if you need to make room, use something like Partition Magic.
    Problems have been reported inter-working with OS/2, however. Reportedly, the order in which you install things is very important. Solaris doesn't "share" computers and partitions really well. If you have problems, you may need to install Solaris first, on a partition towards the end, reinstall the boot manager and add the partition. ======================================================================
    On Solaris 2.x, use fdisk to find your disk partition table. For example, on an ATAPI drive, # fdisk /dev/rdsk/c0d0p0 would show something like the following:
    Total disk size is 524 cylinders Cylinder size is 16065 (512 byte) blocks Cylinders Partition Status Type Start End Length % ========= ====== ============ ===== === ====== === 1 Solaris 0 260 261 50 2 Active Solaris 261 522 262 50
    Where "Partition 1" was used for Windows 95. It was deleted and recreated with "Solaris" type. Make a ufs filesystem on the partition. (You can not subdivide this fdisk partition into Solaris slices). For example, # mkfs -F ufs /dev/rdsk/c0d0p1 4192965 where number 4192965 = 261 * 16065 is the total number of blocks on this partition, calculated as the cylinder length on this partition (261 from the above partition table) times the cylinder size (16065 blocks as shown in the header of the partition table.)
    Mount the filesystem as usual. For example: # mount /dev/dsk/c0d0p1 /export/home ====================================================================== If you have another Operating System installed, boot into the other operating system (usually Windows or Linux). Select the current (non-Solaris) partition as the "Active" partition. Reboot. If the computer boots into the other operating system without the Solaris boot menu, you can safely delete the Solaris partition.
    If you have no other Operating System installed, simply install another operating system over Solaris on the hard drive. Select "Entire disk" or similar during the installation. ======================================================================
    if you any further comments or questions, kindly revert backup or send mail.
    with thanks,
    Mohammed Abid Ali, slashsupport.com pvt.ltd. Email :[email protected]

  • Mounting a Solaris x86 CD/DVD from a remote Windows CD/DVD-ROM drive

    Greetings, all.
    Is it possible to mount a remote Windows CD/DVD-ROM drive? I have the Solaris 10x86 Companion Software DVD sitting in a CD/DVD-ROM drive that's installed on a Windows server on my network. It is shared-out (F:) and the two servers can ping each other. I've also confirmed the NFS services/daemons are running on the Solaris x86 machine. I've tried the following variations but, all have failed to produce successful results:
    # mount -F nfs x.x.x.x:/f /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F hsfs x.x.x.x:/f /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f
    # mount -F hsfs x.x.x.x:/F /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F
    [FYI: S10_106_SOFTWARE is the DVD's label as reported by Windows Explorer.]
    # mount -F hsfs x.x.x.x:/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/S10_106_SOFTWARE
    # mount -F hsfs x.x.x.x:/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/s10_106_software
    # mount -F nfs x.x.x.x:/S10_106_SOFTWARE /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F nfs x.x.x.x:/s10_106_software /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F hsfs x.x.x.x:/f/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f/s10_106_software
    # mount -F hsfs x.x.x.x:/F/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F/s10_106_software
    # mount -F hsfs x.x.x.x:/f/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f/S10_106_SOFTWARE
    # mount -F hsfs x.x.x.x:/F/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F/S10_106_SOFTWARE
    I've also tried mounting it at bootup by adding the appropriate entry in the /etc/vfstab file but, this does not work as well. I've tried Google'ing for an answer to my issue but, I haven't been able to find anything that applies directly to what I'm reporting. It's usually chatter about mounting from one UNIX server to another. Any advice from the community would be greatly appreciated.

    After three weeks, you deserve a reply. Windoze does
    not natively support NFS.Also deserves a decent answer...
    There are two ways to do this:
    Install Microsoft's free "Windows Services for UNIX," which includes a Windows NFS server; or
    Install the 'sharity' package (google for it); it provides Solaris systems the ability to mount Windows shares

  • Solaris x86 with card on-board

    Hi all,
    I got a problem when installing Solaris9 x86 on ibm NetVista Machine.
    I have installed 2 other machines with separated network card sucessfully. I can configure to connecto to my LAN network.
    But when install on 2 ibm NetVista machines (which include onboard network card ), It is fail to be configured to connect to the network in both following cases:
    Case 1: I choose proper driver as Sun suggest for Intel VE Pro(R) 10/100 : iprb. And the Solaris detect successfully. I checked by "ifconfig -a" and saw the network card active on "iprb0".
    Next, I following correct instructions to configure the network card to connect to the LAN. But when i ping IP (9.187.186.18) to other computer in our same subnet LAN,
    The system display eg: "No anwer from 9.187.186.18"
    I run the "snoop" command to view broadcasr ARP in an other terminal. The snoop terminal displays ARP signal boradcasting from the Solaris. However, it can nerver get ARPs from other computer in LAN.
    Case 2: I add 3COM network driver to the solaris ( onboard card is no loger used ). The system can auto-detected this card and i can configure to connect to the network. The problem remain unchange.
    Is there any special in IBM Netvista machine need to be configure under Solaris x86 or any particular configuarion for on-board network card. ???
    Can any boy help me to solve this problem ??
    Best regards,
    Thang,
    Vietsoftware Developer

    However, it can nerver get ARPs from other computer in LAN.Are you perhaps running "snoop" on a box different from the one that you're trying to ping, and are you using
    a switched ethernet? In that case it would be OK if you only see the ARP broadcast, because the ping target
    box will send the ARP reply directly to the MAC of the requesting station (i.e. there's no ARP broadcast reply),
    and an ethernet switch will send the ARP reply directly to the port where the station with the given destination
    MAC is connected - no other port should see the reply.
    If you're trying to ping 9.187.186.18 from the new Solaris x86 box, try to run snoop on the 9.187.186.18
    system. 9.187.186.18 should see the ARP broadcast from the LAN, and the 9.187.186.18 box should list the
    ARP response it sends back to the LAN.
    Is there any special in IBM Netvista machine need to be configure under Solaris x86 or any particular
    configuarion for on-board network card. ???I guess the interrupt handler for the NIC is not working, so the Solaris x86 sees no incomming packets.
    See the "troubleshooting" section on the following page:
    http://solaris-x86.org/documents/tutorials/rtls.mhtml

  • Telnet from Windows PC is very slow to Solaris x86, after Net linked

    (Sorry about the re-post. I posted in the wrong group earlier)
    I got the following info from this forum, in regards to configuring my Solaris x86 to link to the Net:
    # echo 192.168.0.1 > /etc/defaultrouter
    # route add default 192.168.0.1
    # echo nameserver 192.168.0.1 >> /etc/resolv.conf
    # cp /etc/nsswitch.dns /etc/nsswitch.conf
    So I did the above steps, reboot the Solaris, and my Solaris system can link to the Net fine afterwards. But ever since it had Net access, another problem is created.
    Whenever I telnet using a command line from a Windows XP computer, it takes a long time to telnet to this Solaris system. Before, I would see the Solaris login prompt for telnet in a few seconds. Now, it's about 1 minute. Plus, if I try to use an xterminal software from that PC to link to the Solaris x86, it hangs.
    So after I undo all the 4 commands above, reboot the Solaris computer, all these problems disappear. I can telnet from my Windows PC to this Solaris system very quickly. However, I no longer have Internet access from my Solaris.
    Anyone knows how I can fix this problem? Thanks.

    It sounds like a name resolution issue. Can you post the contents of your /etc/nsswitch.conf file for us?

  • Dual boot with Solaris 8.0 and Windows 98

    I am interested in Setting up my pc with with a Dual boot of Solaris 8 and Windows 98. I have a 60 GB hard drive that I am going to make two 30 GB primary Partitions on this hard dive. One with Windows 98 and one with Solaris 8 Intel Platform version. The question that I have, Is this particular Setup doable? And if so can you tell me what order they have to be installed and what partition software I should use for this procedure. Also if i missing procedure please be very detailed in explaining this to me. I read the message board was confused.
    If need be please email me at [email protected]

    Hey, goto http://math.uwb.edu.pl/~mariusz/dualboot/ and that will answer all your dual boot questions ?
    i2l2

  • Networking Solaris OS With Windows

    Hi guys, I am currently developing a java web application using the Solaris 10 OS. It is a Chat application so in other words, people using windows OS must be able to use my Chat application.
    My question is how do i network Solaris 10 with Windows so that people using windows OS can use my application which is developed on the Solaris.

    Part of the issue may be how often you log onto Virtual XP.  Since both W7 and XP are separate and independent operating environments, the both need to be updated with all Microsoft and other software updates.  The also operate with separate security applications (e.g., anti-virus).  Depending on your automatic system update settings, when you log into XP, you may automatically install and run the latest version of Microsoft Security Essentials, or AVG Antivirus, or some other such applications.  Or, you may be overdue for a scheduled system scan, so the scan is launched as soon as you start Virtual XP.  Systems such as these consume extremely large amounts of CPU time when they launch and do a system scan.  However, when they finish, CPU utilization drops to normal.
    If you don't constantly go back and forth between W7 and XP every day, you should expect that you will probably find very large CPU utilization from such scans if you have not logged into XP for some time.  In my experience, it will all go away.
    Also, remember that you should separately defrag both environments.  The W7 defrag may take hours, as Virtual XP actually exists as three very large files on your basic HDD, and defragging W7 does nothing to defrag all of the tens of thousands of individual Virtual XP files that are embedded in the huge system files (such as .vhd) which hold the XP environment.
    You might also want to check out the Auslogics Disk Defrag package.  It is freeware, and in my experience does a better job than Microsoft's systems.  Again, you would need to install separate copies of this package in each of the W7 and XP environments.
    T410 2522-K4U QuadCore Intel i7 Processor 8GB RAM 320GB SATA HDD
    64-bit Windows7 Pro, with Windows Virtual XP (as included under W7 license)
    D-Link 655 Wireless Network WEP encryption MAC Filtering
    -- Both 802.11b and g adapters on various network components

  • I get an error message when installing itunes with windows 8, error message is error occured while attempting to create the directory C:\program file(x86)\common files\apple\mobile device support\sync services\schemas\outlook.syncschema

    I keep getting an error message when installing iTunes with windows 8

    See the second box in Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Dual booting Solaris 8 with Windows

    Hello!
    I am going to build a machine for running both Solaris 8 and 98 SE. I may put each OS on a separate hardrive or just put them on different partitions/slices. Firstly, is this possible? and secondly how? Do I have to edit the etc/bootrc script???
    I'd appreciate some help on this one.
    Steve

    1. helpful group - yahoo groups -> solarisonintel
    2. stolen from a message in that group -> multiboot.solaris-x86.org/v/6.html

  • Help with evaluation for Solaris x86

    Hello,
    I would like to evaluate Oracle Identity Manager and Access Manager products at the latest version possible -- the host system(s) are Solaris x86 (SunOS .5.10) Unfortunately, I am having a bit of trouble compiling the list of packages/versions to achieve this for this platform. For instance, on the downloads page it appears that OIM is not available for Solaris x86, not even in older versions(?)
    Thank you in advance,
    Scott

    Hi Scott,
    I'm pretty sure that x86 Solaris is not yet certified to run the Identity Management suite. I've been involved in an evaluation process and we ran it all on RedHat Enterprise Server Release 4 Update 5, without too many problems.
    cheers,
    James

  • Help with oracle 10g install on solaris x86

    hi, i downloaded solaris 10 from oracle site (sol-10-u8-ga-x86-dvd.iso) and i have installed it on vmware. i was going through the installation guide for oracle 10 for solaris x86 and while on the pre-installation steps, i issued this command
    # /bin/isainfo -kv
    and it gave me
    # 64-bit amd64 kernel modules
    instead of
    # 32-bit i386 kernel modules
    as the guide expected.
    please what can i do, cos the guide says if i dont see the later, the installation cannot complete.
    thnx

    First check you Operating System Bit information whether it is 64 or 32 bit , for this first check any of the command path
    Example ls command
    $ which ls
    /usr/sbin/ls
    $ file /usr/sbin/ls
    It will show you whether your OS is 64 bit or 32 bit and accordingly download the software from below link ,if it is showing 64 bit os then you have to download 64 bit database software .
    http://www.oracle.com/technetwork/database/database10g/downloads/index.html

Maybe you are looking for

  • Is there a character limit for a field in CrystalReports?

    Is there a character limit for a field in CrystalReports? Hello, I'm trying to display a long text (+100.000 characters) stored in a MySql database in CrystalReports but CR is not showing the complete text. Is this because there is a length limit for

  • Is selecting from a view more efficient than selecting from multiple tables

    Hi heres the problem Lets say i created a view from 2 tables (person and info). both have a ID column create view table_view (age,name,status,id) as select a.age, a.name, b.status, b.id from person a, info.b where a.id=b.idif i want to select a given

  • End user and password change

    Hi. I have a small application running on 3.0. I created 10 end-users with a dummy password as "not developers" and "not administrators". Further I marked for change password at next logon. However, users are able to logon using the the link from the

  • Rollbacks and Commits

    I have a question. I'm writing a group of inserts for a database. In the event that one of those inserts fail due to a constraint issue, I want the whole group of inserts to roll back. How would I do that? Example: Begin Insert into table1 values ('1

  • HELP, urgently : SVM

    Hi, I really need a help because this is very urgent. to be honest, i still to learn how use solaris. But suddenly i got an urgent case where i need to install solaris new server exactly same from old server. The problem here is i still new with sola