XMLP562 - new install - java.io.IOException - SOLVED

Hi,
I installed XMLP 5.6.2 on a w2000 server. I followed the differents steps of teh install manual. When I tried to execute the samples reports (all without exception), the following error occurs:
D:\oracle\XMLP_562\xmlpserver>"D:\oracle\XMLP_562\jdk\bin\java" -Xms256M -Xmx256
M -jar "D:\oracle\XMLP_562\oc4j\j2ee\home\oc4j.jar" -config "D:\oracle\XMLP_562
\oc4j\j2ee\home\config\server.xml"
2006-09-07 10:30:09.376 NOTIFICATION JMS Router is initiating ...
- Job execution threads will use class loader of thread: OC4J Launcher
- Quartz Scheduler v.1.5.1 created.
- RAMJobStore initialized.
- Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource fi
le in Quartz package: 'quartz.properties'
- Quartz scheduler version: 1.5.1
2006-09-07 10:30:10.478 NOTIFICATION Scheduler is paused. Starting up...
- Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
- Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
06/09/07 10:30:11 Oracle Containers for J2EE 10g (10.1.3.0.0) initialized
[090706_103259151][][EXCEPTION] java.io.IOException: Io exception: Invalid numbe
r format for port number
at oracle.apps.xdo.servlet.ui.UIX2Renderer.addChoiceBean(UIX2Renderer.ja
va:1495)
at oracle.apps.xdo.servlet.ui.UIX2Renderer.addParameters(UIX2Renderer.ja
va:987)
at oracle.apps.xdo.servlet.ui.UIX2Renderer.addTable(UIX2Renderer.java:68
7)
at oracle.apps.xdo.servlet.ui.UIX2Renderer.getPageTree(UIX2Renderer.java
:326)
at oracle.apps.xdo.servlet.ui.UIX2Renderer.renderParameters(UIX2Renderer
.java:137)
at oracle.apps.xdo.servlet.ui.UIX2Renderer.render(UIX2Renderer.java:122)
at oracle.apps.xdo.servlet.ReportImpl.renderReport(ReportImpl.java:41)
at oracle.apps.xdo.servlet.XDOServlet.handleRequest(XDOServlet.java:206)
at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:138)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
hain.java:64)
at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilt
er.java:52)
at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
stDispatcher.java:629)
at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
vletRequestDispatcher.java:376)
at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
estHandler.java:870)
at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
tHandler.java:451)
at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
stHandler.java:218)
at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
va:119)
at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
va:112)
at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
cketReadHandler.java:260)
at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
sableResourcePooledExecutor.java:303)
at java.lang.Thread.run(Thread.java:595)
Thanks for your help,
Cyryl
SOLVED - my mistake.
Message was edited by:
cbalmati

can u mail me on [email protected] thow did u solved the exception

Similar Messages

  • How to solve java.io.IOException: Corrupt form data: premature ending

    hei evryone!
    Does anyone knows how to solve this bug?
    java.io.IOException: Corrupt form data: premature ending
    Im using Oreilly's cos.jar MultipartRequest
    here is my form :
    <FORM METHOD="POST" NAME="uploadform" action="mbbfile" ENCTYPE="multipart/form-data">
    <TR>
    <TD>Select a File:</TD>
    <TD><INPUT TYPE="FILE" NAME="srcfile" style="width:400px"/></TD>
    </TR>
    <TR><TD><INPUT TYPE="SUBMIT" VALUE="Send"/></TD></TR>
    </FORM>
    HERE IS mbbfile which is a servlet :
    package mbb.servlet;
    import java.io.IOException;
    import java.sql.Connection;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.oreilly.servlet.MultipartRequest;
    import org.jconfig.Configuration;
    import org.jconfig.ConfigurationManager;
    public class MBBFileServlet extends HttpServlet{
         private static final Configuration conf = ConfigurationManager.getConfiguration("ConfigFile");
         public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
              String filePath = conf.getProperty("FilePath", "", "test");
              try{
              MultipartRequest multi = new MultipartRequest(req,filePath,5*1024*1024);
              }catch(Exception e){
                   System.out.println("MBBFileServlet Exception ---> "+e.getMessage());
         public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
              doGet(req,res);
    Sometimes it works meaning the file is uploaded in the directory without any exception, sometimes the file is uploaded but with exception on the log saying "MBBFileServlet Exception ---> Corrupt form data: Premature Ending". and sometimes the files is not uploaded at all and when i check the error is : "MBBFileServlet Exception ---> Corrupt form data: Premature Ending". Can anyone please help me on this matter. Thx!
    Your response would be deeply appreciated.
    br,
    TAC

    Hi all!
    Since I've spent some days now trying to figure out what was wrong with my file upload in Struts 1.1, I would like to share my solution with the rest of you in order to spare you for the same amout of wasted time I've spent :-)
    My platform is Resin 3.0.8 and Struts 1.1. My problem was that JPEG's got corrupted when arriviving at the server. After a few days searching on the net, I tried with a plain servlet and the O'Reilly package, and the app worked perfect.
    Here is my servlet:
    package no.yourcompany.yourapp.servlet;
    import com.oreilly.servlet.multipart.MultipartParser;
    import com.oreilly.servlet.multipart.Part;
    import com.oreilly.servlet.multipart.FilePart;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.ServletException;
    import javax.servlet.ServletContext;
    import javax.servlet.RequestDispatcher;
    import java.io.IOException;
    import java.io.ByteArrayOutputStream;
    public class ImageUpload extends HttpServlet {
    private static final String PAGE_RECEIPT = "/popImageUploadReceipt.do";
    private static final int MAX_FILE_SIZE_IN_BYTES = 10000000; // 10 M
    * Extracts image from request and puts it into person form.
    * @see HttpServlet#doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    // custom beans from my project, not defined here
    PersonRegistrationForm personRegistrationForm = null;
    PortraitImage portraitImage = null;
    ByteArrayOutputStream outputStream = null;
    Part currentPart = null;
    FilePart currFilePart = null;
    personRegistrationForm = (PersonRegistrationForm) request.getSession().getAttribute(DsnSessionKeyConstantsIF.KEY_PERSON_FORM);
    portraitImage = personRegistrationForm.getPortraitImage();
    try {
    MultipartParser parser = new MultipartParser(request, MAX_FILE_SIZE_IN_BYTES);
    while ((currentPart = parser.readNextPart()) != null) {
    if (currentPart.isFile()) {
    currFilePart = (FilePart) currentPart;
    outputStream = new ByteArrayOutputStream();
    currFilePart.writeTo(outputStream);
    // portraitImage is just a bean for encapsulating image data, not defined in this posting
    portraitImage.setContentType(currFilePart.getContentType());
    portraitImage.setImageAsByteArray(outputStream.toByteArray());
    portraitImage.setOriginalFileName(currFilePart.getFileName());
    break;
    } // if (currentPart.isFile())
    } // while ((currentPart = parser.readNextPart()) != null)
    } catch (IOException ioe) {
    // noop
    // redirect to receipt page
    ServletContext servletContext = this.getServletContext();
    RequestDispatcher requestDispatcher = servletContext.getRequestDispatcher(PAGE_RECEIPT);
    requestDispatcher.forward(request, response);
    } // doPost
    } // ImageUpload
    AND ADD THIS TO YOUR WEB.XML
    <servlet>
    <servlet-name>ImageUpload</servlet-name>
    <servlet-class>no.yourcompany.yourapp.servlet.ImageUpload</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ImageUpload</servlet-name>
    <url-pattern>imageUpload.do</url-pattern>
    </servlet-mapping>
    AND THE HTML-FORM IS HERE
    <form action="/yourapp/imageUpload.do" method="post" enctype="multipart/form-data" accept="image/*">
    <p>
    <input type="file" name="portraitImage" />
    </p>
    <p>
    <input type="image" src="/dsn/img/btn_last_bilde.gif" border="0">
    </p>
    </form>

  • I have a brand new iMac, Yosemite 10.10.1, Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    I have a brand new iMac, Retina 5K, Yosemite 10.10.1, with Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    Java should be downloaded directly from Apple:
    Java for OS X 2014-001

  • Java.io.IOException: Error writing to server after installing SP17

    After installing SP17 in production, we are seeing message in AE failing with com.sap.aii.af.ra.ms.api.RecoverableException: java.io.IOException: Error writing to server.
    The messages don't make it to IS and are stuck in AE.
    We've checked pipeline url / sm59 entry for INTEGRATION_DIRECTORY_HMI using user - XIISUSER, we did a full cache refresh.
    They all appear to be set correctly.
    We'll take any ideas and suggestions.
    Thank you.

    Yes...we have been working all night on this. The FM did create an entry but it does no look like its recognising.
    This is what we see in the Adapter messaging tool.
    2006-09-18 13:28:24 Error Returning synchronous error notification to calling application: Received HTTP response code 401 : Unauthorized.
    2006-09-18 13:28:24 Error Transmitting the message using connection http://host:8176/sap/xi/engine?type=entry failed, due to: Received HTTP response code 401 : Unauthorized.
    2006-09-18 13:28:24 Error The message status set to FAIL.
    2006-09-18 13:28:24 Error Returning to application. Exception: Received HTTP response code 401 : Unauthorized
    Any help?

  • Transformer.transform(xmlIn, new StreamResult(out)) throws java.io.IOExcept

    Hi,
    While doing xsl transformation of xml, I am getting IO Exception in windows alone.
    The code looks like:
    import javax.xml.transform.Transformer
    OutputStream out = new ByteArrayOutputStream();
    Transformer.transform(xmlIn, new StreamResult(out));
    where xmlIn is the source. source is right. It works fine in iSeries and Unix. However in Windows, it gives java.io.IOException stream closed.
    Please let me know whether any changes must be done with out parameter or how can I resolve the problem. Is any modification done in jdk1.4 with regard to this problem.
    Thanks & Regards,
    Nasrin.N

    I have tried to replace code
    transformer.transform(xmlSource, new StreamResult(output));and separate tasks and Used FileoutputStream (i was using FileWriter before)
    with code
    File outputFile = File.createTempFile("table_report_by_month_and_media", ".xml", SnapshotLookup.instance().getTemporaryFileDirectory());
    FileOutputStream fout = new FileOutputStream(outputFile);
    StreamResult rs = new StreamResult(fout);
    // Assamble and send the output to 'output'          
    transformer.transform(xmlSource, rs);but there is no progress in transformation time reduction. Now what to do?

  • New install of Vibe - where to get Java 6 ?

    I need to do new install of Vibe
    Latest Vibe docs mention Oracle Java 6 but this is not available on Oracle /Sun site
    Do I install Java 7
    if so what path do I enter for Java simply /usr (where Java is installed)
    or /usr/java/j.xxxx ?

    Originally Posted by bhrt60
    I need to do new install of Vibe
    Latest Vibe docs mention Oracle Java 6 but this is not available on Oracle /Sun site
    Do I install Java 7
    if so what path do I enter for Java simply /usr (where Java is installed)
    or /usr/java/j.xxxx ?
    With my latest Vibe 3.4 installs I've used the Java 7 version without issues.
    The rpm I last used is "jdk-7u65-linux-x64.rpm" (downloaded from the Oracle site). Just run that and it installs automatically.
    And I've set the JAVA_HOME path in /etc/profile.local as follows:
    Code:
    vibe:/usr/install # cat /etc/profile.local
    export JAVA_HOME=/usr/java/jdk1.7.0_65
    Cheers,
    Willem

  • I descarguei these new versions adobe creative Cloud, y uninstalled for removing the trash, why did not interest me, then appearing me sigue to update something that I have not already installed, how do I solve this problem?

    I descarguei these new versions adobe creative Cloud, y uninstalled for removing the trash, why did not interest me, then appearing me sigue to update something that I have not already installed, how do I solve this problem?

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/

  • My macbook started crashing on startup. The startup tone wavers. I got it going with the option start keystroke. Is this apt to be software or hardware? I ordered new system software to see if a new install will solve.

    My macbook started crashing on startup. The startup tone wavers. I got it going with the option start keystroke. Is this apt to be software or hardware? I ordered new system software to see if a new install will solve.

    when you install the disc, do it with the machine powered off. Place the disc in the the slot, push it in while holding the power switch tp poer it up, while holding the "C" key down till the gear starts spinning. After the gear starts spinning you can release the C key and wait. This takes much longer than normal longer, then create a new account. Be ready to wait.
    USE YOUR ORIGINAL INSTALL DISC!

  • FF is not opening even uninstalled Java, Flash, Shockware and new install of firefox. It is still crashing. Crash ID: bp-86f02078-e5d6-4a3c-8b97-7df152130129

    Each time I try to start firefox (FF), it crashes. I tried reinstalling new version couple of times, it is still crashing. I uninstalled:
    J2SE Runtime Environment 5.0 Update 11
    Jave 7 Update 9
    Adobe Flash Player Plugin
    Adobe Flash ActiveX
    Adobe Shockware Player 11.6
    After new install, FF is still crashing.
    Crash ID: bp-86f02078-e5d6-4a3c-8b97-7df152130129
    Crash ID: bp-6db32472-b5d3-4f25-af10-3e8f72130129

    The report for first Crash ID: bp-86f02078-e5d6-4a3c-8b97-7df152130129 is
    https://crash-stats.mozilla.com/report/index/86f02078-e5d6-4a3c-8b97-7df152130129
    Firefox 18.0.1 Crash Report [@ nsPrefBranch::GetIntPref(char const*, int*)
    Related Bug:
    [https://bugzilla.mozilla.org/show_bug.cgi?id=828184 828184] REOPENED --- startup crash in nsPrefBranch::GetIntPref with QIPCAP.dll (Websense Endpoint)
    (The second Crash ID: [https://crash-stats.mozilla.com/report/index/6db32472-b5d3-4f25-af10-3e8f72130129 bp-6db32472-b5d3-4f25-af10-3e8f72130129] has the same signature and related bug)
    QIPCAP.dll is a DLL that belongs to Websense Endpoint software https://www.websense.com/content/Home.aspx
    '''Try Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    * You can open Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut and just use "'Start in Safe Mode"''
    '''''If Firefox no longer crashes when you start in Firefox Safe Mode''''', your problem is probably caused by an extension related to Websense Endpoint software.
    If Firefox still crashes in Safe Mode, you will need to contact Websense Endpoint support or else disable or uninstall that software and use another security product.

  • After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If th

    After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If this is recommended, I would need complete instructions on doing this. I have there serial number for the product.

    using migration assistant is problematic.
    at this point yes, you should uninstall everything migrated, clean and then reinstall properly using the installation files.
    cleaner:  Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    installation files:
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • Installing java on my new vista(this)

    Hi
    When i got this new computer (with vista) i installed java sdk.
    I know java programming, i used to create some simple games on my old computer.
    But when i try to compile something using javac in Command promt i get the error Javac is not recognized or something.
    I had this on my XP too but i added a line to Autoexec.bat and it worked.
    Now, i have tried to edit Autoexec, no succses.
    Tried to set environment variables, no succses.
    Any guesses?
    Maybe its my antivirus Norton 360 that blocks me from changing in Autoexec?
    Please if anyone have done this on vista respond with some few steps on how to do this.
    I really want to program java on my vista without having to type the hole path to Javac when i want to compile.
    Thanks in advance.
    JavaGuy

    But when i try to compile something using javac in Command promt i get the error Javac is not recognized or something.you need to set the PATH environment variable
    I had this on my XP too but i added a line to Autoexec.bat and it worked. whoah! that brings back some memories
    did MS go back to autoexec.bat?
    i think we stopped using that around 8-10 years ago :)

  • New install from ftp and cd no sound SOLVED

    Hi,
    I've done everything I can find to get sound on this new ftp install but can't get sound to work with the 2.6.23 kernel.
    I've updated a couple of other systems to the new kernel and it has kept sounds working fine but not this new install. I've unmuted everthing and raised levels etc.
    modprobe .conf has this from running alsaconf
    # --- BEGIN: Generated by ALSACONF, do not edit. ---
    # --- ALSACONF version 1.0.15 ---
    alias snd-card-0 snd-intel8x0
    alias sound-slot-0 snd-intel8x0
    # --- END: Generated by ALSACONF, do not edit. ---
    Please can you give me some tips. I've a feeling it's something silly I've not got quite checked off right in alsamixer.
    /etc/rc.d/alsa start is done and alsa is in my rc.conf daemons.
    Thanks
    Regards
    edit;
    I've done another install from cd this time and said no to update to kernel 2.6.23 so now I've got 2.6.22 and sound still does not work. I've done many Arch installs before and never had this problem. what could I have overlooked? xmms with streamtuner is receiving signal but no sound. No system sounds either.
    Last edited by drum (2007-10-23 12:25:08)

    Nope no errors from VLC or Rhythmbox.
    Though i noticed in the volume mixer, i now have 2 devices, which i don't think i had before...
    Usually i'd have my webcam or usb headset plugged in, but they're not atm, just my soundcard.

  • [SOLVED] iptables - New install, existing conf

    I copied my /etc/iptables/iptables.rules to my new install but the rules arn't being read.
    [root@host ~]# iptables -nvL
    Chain INPUT (policy ACCEPT 76 packets, 5793 bytes)
    pkts bytes target prot opt in out source destination
    Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
    pkts bytes target prot opt in out source destination
    Chain OUTPUT (policy ACCEPT 68 packets, 8988 bytes)
    pkts bytes target prot opt in out source destination
    GNU nano 2.2.6 File: /etc/conf.d/iptables
    # Configuration for iptables rules
    IPTABLES_CONF=/etc/iptables/iptables.rules
    IP6TABLES_CONF=/etc/iptables/ip6tables.rules
    First few lines of my rules file...
    GNU nano 2.2.6 File: /etc/iptables/iptables.rules
    # Generated by iptables-save v1.4.12.1 on Tue Sep 20 08:26:18 2011
    *filter
    :INPUT ACCEPT [0:0]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [40:5840]
    -A INPUT -i lo -j ACCEPT
    -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    -A INPUT -p icmp -j ACCEPT
    I've rebooted a few times since and restarted the iptables service but still no joy.  Any ideas?
    Last edited by Swarfega (2013-02-06 20:13:30)

    Well not sure if you meant to, but the loaded rules are technically identical to your rules file. You forgot to change:
    :INPUT ACCEPT [0:0]
    to
    :INPUT DROP [0:0]
    Could just be that netfilter is being smart and leaves out "extra" rules.

  • [Solved] Grub Error 15 at boot on new install.

    So I was trying to avoid asking for help, but I honestly can't see what's wrong with my new install of arch.  I followed the beginner's guide all the way up to the part where you reboot and remove the liveCD.  It all went swimmingly until I rebooted and got:
    GRUB Loading stage1.5.
    GRUB Loading, please wait...
    Error 15
    I don't know what's going on.  Error 15 is supposedly "file not found," but I don't know what file it's looking for since I have a grub.cfg that I created from the steps posted on the guide.  Any help is greatly appreciated.
    --Wes
    EDIT:
    Just to be clear I followed the BIOS motherboard steps for GRUB.
    Last edited by Wesman26 (2012-11-09 01:25:38)

    Xacky wrote:Which instructions did you follow? This would normaly do it when chrooted (during install).
    Wat your disk en partition lay-out?
    -One or more harddisks?
    -Partitions? Everything on / or separate /home /boot (/var)?
    I'm following the beginner's guide instructions for a BIOS install.  After chroot I used the following:
    # pacman -S grub-bios
    # grub-install --target=i386-pc --recheck --force --debug /dev/sdb
    # cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
    # grub-mkconfig -o /boot/grub/grub.cfg
    Aside from the warnings (that I think most people ignored) of a few files not existing during the installation of grub-bios, it all went fine.  The harddrive is definitely sdb (fdisk -l shows sda as my windows drive, not to mention I just formatted and partitioned sdb).  My partitions are laid out exactly as the guide tells me to (/ on /dev/sdb1 and /home on /dev/sdb2).  They are the only partitions on sdb.
    DSpider wrote:Lol... a full reinstall wasn't needed. This mentality is typical to a Windows user.
    I don't appreciate your condescension.  These forums have (up to this point) always been really helpful and friendly to me; just because I'm posting in the newbie corner doesn't mean I'm not familiar with linux, and even if I were unfamiliar with linux I would hope that you could show more respect and compassion for someone who needs help than to ostracize them and laugh about their problem.  I posted here because I figured I didn't need to waste the time of the mods and users who offer help in the installation subforum with something that I assumed would be a trivial fix.  I expected courteous, thoughtful responses.  I was apparently wrong to assume.
    I reinstalled because I didn't know what else to do, and figured that there might have been a chance that I made a mistake.  Since your previous advice was literally getting me nowhere I figured the 10 minutes of my time reinstalling took up would be worth the potential of fixing my problem. 
    To answer your questions that are actually helpful:
    I don't have grub installed on another drive and my drive and partition layout is detailed above.  As for boot priority, it hasn't changed since I first installed linux in 2006 and it's worked ever since; I'm performing this operation to clear what was once a drive cluttered with a few other distros that I've abandoned since 2007 when I found Arch (yes I am actually that lazy).
    Is it possible that my old installation of grub might have stayed on the drive even after I rid it of the old partitions (since it's stored in MBR)?  If so does the installation of grub2 I'm performing not get rid of it?
    Hope this helps,
    --Wes
    Last edited by Wesman26 (2012-11-08 20:53:27)

  • New Install -- X Won't Work [SOLVED]

    I have to migrate to a new hard drive, and am doing a new install of Arch. I installed from net to have up-to-date packages...
    I installed X and what I think are the necessary packages, namely:
    ati-dri, libgl, mesa, xf86-input-evdev, xf86-input-synaptics, xf86-video-ati, xorg, hal, and dbus
    I start hal with /etc/rc.d/hal start and do a startx but it replies:
    error setting MTRR (base = 0xc0000000, size = 0x04000000, type = 1) Inappopriate ioctl for device (25)
    I am really stressing out because I need this new hard drive up and running like the old one, so I may be missing something major. Please, please help me get the bottom of this! Configuring xorg in my previous two installs for this computer have been a breeze but this time is killing me.
    EDIT:
    Okay so the culprit was really stupid and quite annoying! Apparently a default .xinitrc was placed in my home directory. Removing it allowed me to test xorg by having twm load. For some reason I wasn't expecting a default file to placed by Arch of all distros. GRR... got a bit frantic for no reason. I will probably add a note to the wiki so no one else hits this snag.
    Last edited by egan (2010-01-07 03:58:32)

    Perhaps I do not understand what you are doing but I would expect that if you want to use X in a graphical mode you need xorg.conf be it that you use hal to create it for you or you create it by other means.
    I know that if I use KDE I can run it without an X configuration file these days but I'm not sure if that is the same for plain old X.
    R.
    Edit: This is what I was able to find:
    Starting with version 7.4, Xorg can use HAL to autodetect keyboards and mice. The sysutils/hal and devel/dbus ports are installed as dependencies of x11/xorg, but must be enabled by the following entries in the /etc/rc.conf file:
    hald_enable="YES"
    dbus_enable="YES"
    Edit 2: Also notice this:
    The automatic configuration may fail to work with some hardware, or may not set things up quite as desired. In these cases, manual configuration will be necessary.
    Last edited by ralvez (2010-01-07 02:42:01)

Maybe you are looking for

  • How do I find and remove a spyware  that was placed on my iPod touch 4?

    HELP!!!! My ex has spy phoned my iPod touch 4, he is getting all my outgoing and incoming texts from Pinger. And he straight told me he did it. So how can I find this spyware and remove it?????

  • Images not displaying correctly in IE

    I have developed a site using Adobe CS4 Flash and Dreamweaver. My image looks great in the SWF, FireFox, and in the studio. But when IE gets a hold of it, the image distorts. The WN logo is the distorted one. http://www.wilsonneal.com/ - site. And th

  • GOP / UEFI Vbios request R9 290x Gaming 4G - Please

    Hi, Could you please provide me an updated BIOS for my graphic card ? S/N: 602 - V308 - 14SB1404007564 Current Bios: 1https://drive.google.com/file/d/0B3gJrRAdyd5WOFdNb0NiU3BlUHc/edit?usp=sharing1 (Remove the 1 on each side) Thank you.

  • JDeveloper 11g & ADF: supported version of svn server/client question

    Hi all, I would like to setup a repository for our dev team, we are coming from jdev 10g with svn server 1.3.2 and tortise svn 1.4.8. After reading through John Stegeman's ADF Development Essentials documents, I noticed this article was published bac

  • Work flow for Leave request without ESS

    Dear All, For one of our client, we have configure workflow for leave request, first is it possible to do tht? If so how to do it?, here we dont have ESS/MSS. Is there any standard workflow available? Thanx