Installing Grub and grub-legacy side by side

Hello, I have Grub installed already in my arch machine. I need to install grub-legacy. Is there any way to install grub-legacy and both grub at a time? it's not needed that grub-legacy is active.
I don't want grub-legacy active. I just want it to installed in my machine, If it's installed as another name no problem. Why i needed to install is for cross compilation. I am cross compiling for another Embedded system.

arungupta2008 wrote:Can we download grub-legacy src files and then install it manually? by changing the names of bin. As ubuntu have done?
In Arch you should be using PKGBUILDs to compile and install packages. You need to edit https://aur.archlinux.org/packages/gr/g … y/PKGBUILD and apart from moving the files, you have to remove
conflicts=('grub')
too.

Similar Messages

  • Installed WinXP, lost GRUB [Solved]

    Okay, I recently installed windows XP after install Arch and Grub on my laptop, and lost Grub on the MBR, since Windows XP has the worst custom install EVER.
    Anyway, I've got an Arch 0.7 base install CD, and was wondering what the correct procedure AND correct, exact commands to reinstall grub on my system was. I know I have to mount sys and proc and stuff like that to get udev even running, but after a lot of trials and errors I kind of wanted to know how to do it. Pretty please?
    My / is on hda6, while my /boot is on /hda2.
    Thanks.

    apeiro wrote:Oh yea, and if you're not mounting devfs, you don't have to bother with the devfsd line either. 
    and this will work even though I don't use devfs on my install? I mean, I run udev (haven't gotten udev to work with this, though)

  • Installing Multiple Operating Systems with grub and Arch Linux

    NOTE: Please keep in mind that there are many different ways to achieve this same result using various loop and ramdisk methods, read this with a separate window to jot down your comments and suggestions... this is ongoing for me so any help would be appreciated!
    Read the full article at Install Multiple Os without cds
    This is my first post and I plan on making this topic an official HOWTO with www.tldp.org.
    I have been into the computer security scene since 1990, but I realized that I had very little experience with the various LInux, Unix, and alternative Operating systems out there.
    I have a CD-RW drive but being a struggling computer security researcher I had no money for blank cd-recordables.  What follows is how I managed to install various operating systems on my computer (1 hard drive) without having to burn to a CD the ISO and then boot from that.
    I first partitioned my 120GB harddrive into 10 partitions, the 2nd partition is a small swap and the last partition is extra large because it holds all the ISO images..
    I then wrote a small shell script to automatically download (I love wget!)  the following.
    OpenBSD
    IpCOP
    Libranet
    Arch-Linux
    Fire
    Local Area Security
    Packet Master
    Devil-Linux
    FreeBSD
    Knoppix
    Helix
    Gentoo
    Yoper-Linux
    NetBSD
    RedHat
    Slackware
    The script also downloaded Installation manuals and md5 checksums.. (let me know if I should post... its pretty unsophisticated
    I installed Slackware (personal favorite) on hda1 using my last blank CD-R, note that I do not have a separate boot partitino.  (Should I?).  I also installed grub on the MBR.  I love grub, if you read through the man pages and all info you can find about grub, you can learn a whole lot.  Grub has much more features and capability than lilo, even though lilo comes installed by default with slack.
    I organize my kernel situation as follows...  In my /boot directory, I mkdir KERNEL, CONFIG, MAP, INITRD and that is a good way for me to keep my kernels and everything organized..  Another good way is a separate dir for each new kernel. 
    Since Arch-Linux is a solid distro, I'll use that as a first example.
    Here is the Arch-Linux section of my shell script
    goge Arch-Linux
    $w http://puzzle.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.iso
    $w http://unc.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.md5sum
    $w http://www.archlinux.org/docs/en/guide/install/arch-install-guide.html
    md55
    cat arch-0.6.md5sum
    md5sum arch-0.6.iso
    md55
    The first thing to do is to mount the downloaded ISO image so we can use it as if it were an actual CD.
    mount -t iso9660 -o ro,loop=/dev/loop0 cdimage /mnt/cdrom
    Where cdimage= the ISO image.   EX. /usr/local/src/ISO/Linux/Arch-Linux/arch-0.6.iso
    This mounts the iso as /mnt/cdrom.
    Next you need to copy /mnt/cdrom to a separate partition for the booting process.  So mkfs.ext2 /dev/hda9.  ( I prefer reiserfs or even XFS to ext but if you use something other than ext2 you could run into some problems because some of the installation kernels and initrds don't include support for reiserfs and so can't recognize the files.  Although you could use mkinitrd to create a new initrd with reiserfs support, that might be pushin it IMO...   I use the 9th partition consistently for this.  I know there is a "right" way to copy the /mnt/cdrom files so everything stays the way it is supposed too, using tar or cpio, but I'm lazy so I just do cp -rp.   
    (What is the tar or cpio commands to copy with correct permissions etc??)
    So you mount the 9th partition as whatever, say /mnt/hd and then copy the files.  Now what?
    Now edit your /boot/grub/menu.lst file to include the specific options to boot arch-linux installation. 
    A good idea is to find the isolinux.cfg file somewhere on the distro cd, this will tell you what to include in the menu.lst.
    Here is the section in my menu.lst
    title Arch Install
    root (hd0,8)
    kernel /isolinux/vmlinuz load_ramdisk=1 prompt_ramdisk=0 root=/dev/rd/0
    initrd=/isolinux/initrd.img
    This should be self-explanatory.  The root (hd0,8) is pointing to partition 9.  So the rest of the commands start from partition 9. 
    When you experience problems, remember you can always edit the grub boot options by typing 'e' and then edit the section.  Also, a good idea is to include several variations in your menu.lst so you can easily try other ways to boot efficiently.  And, remember to read up on all the installation guides that come with your distro, specifically, hard-disk installs. 
    There are special cases, Gentoo, has a semi-new compressed filesystem called squashfs.  BTW, this is AWESOME, so check it out.  It has to be compiled into the kernel, so some work is in order, but use this recompile to optimize your kernel.  You can get the squashfs patch for almost any kernel.  I use the latest stable 2.6 kernel.  Squashfs is incredible and although I don't think you need it to install from ISO, you do need it to expand the livecd.squashfs filesystem that comes with the cd.
    Heres a sample Gentoo section from my menu.lst
    title Gentoo Install
    root (hd0,8)
    kernel /isolinux/gentoo root=/dev/ram0
    initrd=/isolinux/gentoo.igz init=/linuxrc acpi=off looptype=squashfs loop=/livecd.squashfs cdroot vga=791 splash=silent
    A nother' tip is the shell that is provided if you experience problems, typically busybox or ash.  The key tools to get you going from here is mount and chroot.  Sometimes you will need to manually create a simulated file system and then chroot into it.  For instance, you might have to create boot, etc, bin, directories on the target partition. 
    I generally install each OS onto the next partition (careful of the logical partition) and add it to my menu.lst after install.  A good idea is after installation, copy the kernel and initrd(if there is one) to the slackware(or whatever) boot partition on hda1.  I copy kernels to /boot/KERNEL/ and initrd's to /boot/INITRD, then menu.lst is more organized...
    You then need to add an updated section to your menu.lst (just comment out the install section for later)
    Here is the finished arch-linux section from menu.lst
    title Arch Linux 6
    root (hd0,2)
    kernel /boot/vmlinuz26 ro root=/dev/hdc3
    This doesn't use my convenient boot/KERNEL/vmlinuz26 as you can tell by setting the root to partition 3.
    ***NOTE: Make a backup of MBR using dd and save to floppy, also backup the partition table to floppy, using cfdisk or parted.  And boot disks (I use 1 with grub, and 1 with slack, and tomsbootdisk) will invariably come in handy.  Tomsbootdisk is recommended, and make the grub boot disk when you install grub.  install to floppy.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The final result after some fun experimenting, is when I boot, I have a cool grub boot screen come up with the option to boot into whatever OS I want, this is handy for multiple reasons.  One good thing to do after this is to port scan and vuln scan each OS, after you update of course.  Write this stuff down and you will know the weaknesses/strengths of the various OS's. 
    I can boot a custom Firewall, snort, or multiple honeypots using this procedure, as well as a graphical kde environment with a kernel optimized for graphics and my processor/architecture, or an environment devoted to forensics or even an environment suitable for programming.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    P.S. Some of the cooler alternative operating systems are BeOS 5, EOS, ER_OS, V2_OS, and my personal favorite Menuet.  Menuet is 100% assembly graphical operating system that fits on a floppy.  Its f'in money!
    This should be a good enough example to get you started, this kind of thing should be learned and not just copied... Knowing how to do this stuff could prove to be exceptionally useful...

    Start by reading all the articles built-in on your Mac - Help > Mac Help, search "printer sharing."
    http://desk.stinkpot.org:8080/tricks/index.php/2008/04/how-to-print-to-a-cups-se rver-from-mac-os-x/
    http://www.macosxhints.com/article.php?story=20080324224027152&query=share%2Bpri nter
    http://members.cox.net/18james/osxprintersharing.html
    http://ubuntuforums.org/archive/index.php/t-56940.html

  • Install JRE and OpenJDK Side-by-Side [Unecessary - So Solved]

    As far as I know this is impossible, but if there is a way to install JRE and OpenJDK side-by-side, that would be great.
    The reason I would like this is that there is a specific webserver I access that simply will not work with OpenJDK. It's a known issue that may or may not be fixed any time soon. On the other hand, I would like to install freeCAD, but this depends on OpenJDK and not JRE.
    So as of right now, there is no way for me to have freeCAD installed and access this webserver. Now if JRE and OpenJDK were installed side by side, then this wouldn't be a problem. The other option, is letting users install freeCAD with and OpenJDK or JRE dependency, whichever best suits them.
    Is anybody else in a similar boat as this?
    Last edited by fini_fly (2009-12-17 16:56:07)

    tdy wrote:
    fini_fly wrote:I would like to install freeCAD, but this depends on OpenJDK and not JRE.
    Where do you see this requirement?  I don't see anything that specifically depends on openjdk6.  The only java deps I see are in opencascade.  It depends on java-runtime and makedepends on java-environment, which can be satisfied by jre + jdk.
    When I went to install, it was forcing me to install OpenJDK and uninstall JRE.

  • Azure Tools and Templates Not Installed to VS2012 with VS2013 Side by Side Installation

    I have VS 2012 and VS 2013 Ultimate editions installed side by side and have installed Azure SDK 2.2 followed by 2.3. Until I started using BizTalk Services all my Azure work has been in VS2013.
    Going back to VS2012 for BizTalk Services stuff I soon noted I have no Azure node in Server Explorer and then looked and see that there are no Azure project templates either. I might guess the Azure SDKs just configure the latest VS instance.
    How can I get the Azure SDK to properly config VS2012 when I have VS2013 installed?

    hi,
    Thank you for sharing your solutions and experience here. It will be very beneficial for other community members who have similar questions. If you have any difficulty in future programming, we welcome you to post in forums again.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have a Mac 10.5.8 Dual. I cannot get any videos that I have stored to play. I have tried QT and then DL two out side players from apple site and then went to install and comp said can not be installed on this comp.

    I have a Mac 10.5.8 Dual. I cannot get any videos that I have stored to play. I have tried QT and then DL two out side players from apple site and then went to install and comp said can not be installed on this comp.

    When Microsoft decided not to support Windows Media any more, they made Flip4Mac available for free. If you have not taken advantage of that free download, this might be a good time.
    It may not completely solve the problem, but your Mac will play more with the free player. No need to pay for the Upgrades.
    http://www.telestream.net/flip4mac/

  • How to repair disc on second partition iMac 27? 10.6.8, but second is still 10.6.3.  Can I use the original 10.6.3 install disc to start, and then go to the side needing repair?

    Partitioned iMac 27, Sept. 2010.  Verify disc on HD2 says "corrupted,  needs repair," unspecified.  "Use install disc to repair."  HD2 is isolated from Internet since birth.  HD 10.6.8, but HD2 is still 10.6.3.  Can I use the original 10.6.3 install disc to start, and then go to the side needing repair, without a problem?
    Part 2:  After 4 years, suddenly when HD2 is revived from sleep, it makes an Internet connection, all settings are the same, Network shows Ethernet is unplugged, but the indicator from modem shows connection.  Maybe connected to first part of my question, but maybe not.
    Thank you.

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • If I want to delete Mac OS and only install windows 8, will there be ant side affects?

    I know this is crazy, but I want to buy a macbook pro with retina,
    and If I want to delete Mac OS completely and only install windows 8, will there be ant side affects?

    Mende 1,
    Thank you very much!!!
    But when you say windows support software, can you name it specifically?
    because I'm really scared that I will mess up on this.
    Or is it possible that I can ask one of the staff in the shop to do it for me when I'm buying the MacBook Pro with retina??
    Do they do such service even in Taiwan???

  • A little help with installing Windows and configuring GRUB

    I want to install Windows XP on my machine for various reasons. As I am writing this I am using an existing Archlinux. Now I wonder what I should take care of considering GRUB when installing Windows.
    I know that Windows likes to mess with the MBR and as I am not too proficient with such things I want to be careful.
    Alright, now I put in the Windows installation CD, choose a fitting partition and let it install. I assume that afterwards my GRUB will be gone... How do I take care of this?

    After windows has finished installing, re-insert you arch install cd and boot from it.
    Mount your arch Installation as below
    mount /dev/sdXY /mnt
    - change sdX for your arch / partition, also mount /boot if you have a seperate /boot partition.
    start the installer, and then just do the grub stage of the install again
    or issue the command
    grub-install /dev/sdX --root-directory=/mnt
    Last edited by gazj (2008-02-25 14:43:26)

  • [Solved...sort of]Changing grub and console resolution during boot

    I recently purchased a new monitor that runs at 1920x1080, my older monitor was at 1920x1200, and when I boot now I end up with a boxed output, black borders on each side. This influences how my grub looks and how my terminal looks at startup. I've changed the settings so my WM looks and works properly, but I am not sure how to change, or update, the resolution for my boot-up process. I could use some assistance. Thanks!
    EDIT:
    Well I found out that I can only change my resolution in grub based on what is shown in vbeinfo when booting with grub. The strange thing is that the resolution being used is 1920x1080x32, which is the recommendedd, and max resolution of my monitor. I also noticed my BIOS splash screen is also being shown with black borders on all sides.
    EDIT:
    Well it looks like this is problem with OCD on my monitor, and my NVIDIA card. Looks like it's pretty wide spread without any real solution. I'll mark this as solved since this has nothing to do with grub or linux settings.
    Last edited by barefly (2015-05-10 02:50:01)

    jasonwryan wrote:Did you regenerate your grub config?
    I just tried this by running grub-mkconfig without changing any settings in /etc/default/grub, and it didn't work. So I went ahead and modified /etc/default/grub on my next boot to another valid resolution and restarted. That had no effect either. The last thing I tried was manually adding the preferred resolution instead of leaving it at auto. None of the changes made any difference. It only changed the way my text was outputted, making it more or less scrunched really. I think the issue could be stemming from the monitor and bios are interacting, since my bios splash screen starts with the black border, and then grub inherits the screen properties, and then in turn linux inherits these settings before my video card finally kicks in after tty and x starts.
    Last edited by barefly (2015-05-10 02:46:25)

  • Hi, Just switched from CS6 to PS CC. I am used to using ACR in CS6 with it's preview checkbox in the upper  right-hand corner. I do not see that checkbox in PS CC. I see that they have added side-by-side, right and left and top and bottom before and after

    Hi,
    Just switched from CS6 to PS CC. I am very comfortable using ACR in previous versions. I liked to use the preview checkbox located in the upper right-hand corner to see before and afters. That checkbox is no longer in my version of PS CC. I see that they have side-by-side, top and bottom and right and left before and after options in the lower right-hand corner in this version. Is there anyway to get that legacy preview checkbox back so that I can use it?

    Hi Warunicorn,
    Thank you very much. I just could not find it on my own. I will have more questions as I get into it.
    Jim

  • A question about grub and USB

    Hi All
    I have a quick question about grub and USB that I can't quite find the answer to by searching.   Most of the FAQs discuss booting a full linux dristribution from USB. My situation is this.  I am getting a new computer with two drives, the second will be arch and the first will be Vista (for my wife).  I want the computer to boot the same way that my wife's machine boots at work so I don't want to install grub on the MBR.  So, is there a way to have all of the grub config files and kernels installed on the second drive and simply install to grub boot loader to the MBR of a USB stick?  My goal would be to simply plug the USB stick into the new PC and boot arch from the second drive. 
    Thanks
    Kev

    i cant say for hp's
    havent worked on any in a while
    recent machines have been coupleof dell's , vaio & emachine
    which dells do offer it at least the ones i tried , my laptop does(dell)
    all home pc's are built by me which do offer to boot individual drives
    what hp you getting it may tell in specs
    are both discs sata? if so it might not offer this option with 2 drives of same interface
    check your power supply alot of these preconfigured machines put cheap under reated power supplies in there
    & will burn your motherboard i just replaced PS(250 watt) & mobo(845gvsr) in an emachines <cheap stuff<
    i hope you researched the pc before buying ie : mobo, power supply are the biggest concerns
    i find it much more benificial to build my own machine gives me peace at mind. the cost is sometimes more in $ but not always , your biggest expense is time researching hardware
    if you live in usa the best places to start looking are bensbargains.net & pricewatch.com
    i am not affiliated with either & niether sell the hardware they are just advertisers a place to buy
    for costomized machines that i would trust is unitedmicro.com theyll asemble & test before shipping
    i have gotten 2 machines so far from them with NO PROBLEMS with hardware (knock knock)
    you may want to consider this in your next venture for pc

  • Camera Raw 6.7 and 7.4 side-by-side?

    Hello,
    I have a Create Suite 5 Web Premium installed, which includes Photoshop CS5 and Camera Raw 6.7.
    I just purchased InDesign creative cloud single product subscription, and downloaded InDesign CS6. The Adobe Application Manager is now offering to install Photoshop Camera Raw 7.4. I am not sure why, since I do not have Photoshop CS6, probably because InDesign comes with Bridge CS6…
    What will happen if I download Camera Raw 7.4? Will it replace the Camera Raw 6.7, or can I use them side-by-side?
    Will Camera Raw 7.4 be even fictional (since I do not have Photoshop CS6)?
    Thank you

    It is here (in the Camera Raw dialog, not Bridge):
    From the Help:
    The process version is the technology that Camera Raw uses to adjust and render photos. Depending on which process version you use, different options and settings area available to you in the Basic tab and when you make local adjustments.
    Process Version 2012
    Images edited for the first time in Camera Raw 7 use process version 2012. PV2012 offers new tone controls and new tone-mapping algorithms for high-contrast images. With PV2012, you can adjust Highlights, Shadows, Whites, Blacks, Exposure, and Contrast in the Basic panel. You can also apply local corrections for white balance (Temp and Tint), Highlights, Shadows, Noise, and Moiré.
    Process Version 2010
    Images edited in Camera Raw 6 used PV2010 by default. PV2010 offers improved sharpening and noise-reduction from the previous process version, PV2003.
    Process Version 2003
    The original processing engine, used by Camera Raw versions 5.x and earlier.
    To take advantage of the newer processing, you can update previously edited photos to the current process version. To update a photo to the Camera Raw 7 process (PV2012), do either of the following:
    Click the Update to Current Process button (the exclamation-point icon) in the lower-right corner of the image preview. In the Camera Calibration tab, choose Process > 2012 (Current).To apply an older process version to a photo, go to the Camera Calibration tab and choose Process > 2010 or Process > 2003.
    But, if can't launch Camera Raw, I guess this isn't much help.

  • "Side-by-side configuration is incorrect" when trying to install MS DirSync tool

    Apologies if this is the wrong thread, but it seems like every thread is the wrong thread for this one :)  Yes, I've checked all the other "side-by-side configuration" threads, but none of them seems to apply to this case.
    I have a SBS 2012 machine, acting as DC, AD DS and DNS, and our organization has recently signed up for Office 365 Online E1, and we've migrated our mail there.  Everything is set up, but now I'd like to sync our AD with MS Online.  I enabled directory
    sync in the admin user and group controls on the Office 365 site and as per instructions, I downloaded the latest version of DirSync from here:http://social.technet.microsoft.com/wiki/contents/articles/18429.microsoft-azure-active-directory-sync-tool-version-release-history.aspx.
    However, when I try to install it on the server, I get this error message:  "The application has failed to start because its side-by-side configuration is incorrect. Please run sxtrace or see the application event log for more detail."
    Sxtrace gives the following results:
    =================
    Begin Activation Context Generation.
    Input Parameter:
    Flags = 0
    ProcessorArchitecture = AMD64
    CultureFallBacks = en-US;en
    ManifestPath = N:\temp\dirsync.exe
    AssemblyDirectory = N:\temp\
    Application Config File = 
    INFO: Parsing Manifest File N:\temp\dirsync.exe.
    INFO: Manifest Definition Identity is (null).
    ERROR: Line 0: XML Syntax error.
    ERROR: Activation Context generation failed.
    End Activation Context Generation.
    Things I've tried:
    Other posts seem to indicate that it's often an issue with missing visual C++ libraries, but I installed both the 2008 and 2010 C redistributables for x86 and x64, and nothing has changed.  
    One solution for a similar message had a typographical error in an xml configuration file, however in this case the "Application config file" field is blank.  
    As several other (non TN threads) around the 'net recommend, I ran SFC.  It appears to work for others with the same error message.  It fixed some issues and spit out a huge log file, but the problem persists, and I don't know where in the log
    file to look, assuming anything in there is relevant (the file is over 700kb, so I'm not going to start spamming big chunks of it just yet unless I know what to look for).
    The problem seems to come up in the context of software development (another thread on this subject is about the user developing an application from scratch) but I have no background in software dev, and this is supposed to be an official tool from Microsoft,
    for crying out loud, not some homebrew thing I'm putting together.  
    This one issue is keeping us from moving ahead with our entire plan for user access, so any help would be
    much appreciated. Thanks!!!

    Hi AGrush,
    Based on your description, did you mean that attempt to install Microsoft Azure Active Directory Sync tool
    on Windows Server 2012 Essentials?
    The Azure Active Directory Sync tool should be installed on a computer which isn't a domain controller. For
    more details, please refer to the System requirements in the following KB.
    How to troubleshoot Azure Active Directory Sync tool installation
    and Configuration Wizard error messages
    In addition, I’m a little confused that why install DirSync (That is what the Windows Server Essentials Office
    365 integration is for) on Windows Server 2012 Eseentails.
    Manage Office 365 in Windows Server Essentials
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • TS3212 I get a side-by-side error when trying to install iTunes to Windows 7 64-bit???

    When trying to install iTunes to Windows 7 64-bit, I get a side-by-side error. Has anyone else seen this problem and were you able to resolve installing iTunes? If so, how did you resolve it?

    Hi
    Hope you are fine there!
    recommend that you attempt to resolve this issue by uninstalling iTunes and QuickTime, and then reinstalling the latest version of each. To do this, first ensure that you are logged in to an Administrator user account on your computer, then follow the instructions in the appropriate article:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7:
    http://support.apple.com/kb/HT1923
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows XP:
    http://support.apple.com/kb/HT1925
    Take care!

Maybe you are looking for

  • Is there a way to see who uses a database?

    I'm wondering if there is a way to do some kind of audit in SQL Server, so I can see who is logging into a database that I setup.  One client has the credentials that they need, and that's just fine.  I'm just curious to know if somewhere along the l

  • How can I stop a program until a button will be clicked

    I have a class that create a JTable and in this class I have two columns, the first culumns has the name of the variables an the second column has a checkbox to select the correponding variable.this JTable is created from a vector originating in othe

  • Remote desktop software

    Is there any iPod touch app to control yer pc like remote desktop on the pc? Also how do you stay logged in to this site? It keeps asking me to log in each time I come back and try to post. Is there anyway to have flash work the www?

  • Cannot connect to WPA network with non-ascii password

    In my office somebody thought it would be a good idea to encrypt the wireless network with a WPA password containing a non-ascii character. It is fine by the WPA2 standards, but the airport password prompt doesn't allow me to introduce suche characte

  • Backward- Forward  and Forward- Backward

    Hi, all! Can you explainfor me about +Backward- Forward  and Forward- Backward+ in General Setting-> Inventory tab-> Planning. I don'nt understand it, can you make clealy Thank you!