0

I created the USB with Universal USB Installer, I have an Intel i5-3570k and AMD Radeon HD 7800 card with two monitors plugged in. When I boot to the device, I see the normal menu then when I select install it just starts to go, I see the Ubuntu screen with the dots, and then it just goes away and the screens go black. I've tried everything I've seen out there, secure boot is disabled, I'm at a loss. Please help!!!

Andrew
  • 101
  • 1
  • Have you tried booting the LiveCD instead of installing? If you can get to the desktop, installing should be a lot easier to accomplish. I should also tell you that Windows 8 does NOT like it when you resize partitions, so if you plan to install it on your main windows drive, be as careful as possible, or you might get a bluescreen. – Ulincsys Jan 30 '15 at 04:29
  • Have you tried looking at this question? http://askubuntu.com/questions/221835/installing-ubuntu-on-a-pre-installed-windows-8-64-bit-system-uefi-supported/228069#228069 – No Time Jan 30 '15 at 04:52
  • @johnkieran i tried the option to just "Try Ubuntu without installing" but that didnt get me anywhere – Andrew Jan 30 '15 at 13:27
  • @NoTime I think I've tried everything in that thread, but ill go over it again and make sure. – Andrew Jan 30 '15 at 13:28
  • It usually is a problem with the Fastboot (or whatever windows 8 calls it). When windows 8 shuts down, it actually leaves some data behind, almost like a hibernate file, so that it can load faster. This interferes with anything else loading even previous versions of Windows. You probably need to go into your Windows OS and disable it (along with in EFI) http://winaero.com/blog/how-to-disable-or-enable-fast-startup-in-windows-8-1/. – No Time Jan 31 '15 at 00:16
  • @NoTime Hybrid shutdown (which is what windows 8 calls it) does not affect trying to load a LiveCD, because when using a live OS, the HDD is never mounted. This is a problem with the hardware or bios (or maybe the LiveCD). Andrew, have you tried re-downloading and burning a new iso, instead of using a USB drive, try a DVD. – Ulincsys Jan 31 '15 at 14:43
  • @johnkieran It does affect if you are trying to install Ubuntu though.The name is actually fast startup I guess (https://msdn.microsoft.com/en-us/library/windows/hardware/jj835779%28v=vs.85%29.aspx). The system actually acts like it is in hibernation mode we close the user sessions, but instead of closing the kernel session, we hibernate it. This often causes problems when trying to install ANY OS (including Windows 7 or lower). It might not be the reason but there is no problem trying either a new disk, or by disabling the fast startup. One of them should work. – No Time Jan 31 '15 at 23:43
  • @NoTime I dont even have fast startup as an option cause I have hibernate disabled on my pc. – Andrew Feb 01 '15 at 00:34
  • @NoTime The op (Andrew) has already stated that he can't even start the Live Ubuntu distro, which means this has absolutely nothing to do with "fast startup, or hybrid shutdown" he could even start Live Ubuntu WITHOUT a Hard drive. The problem is either with the installation media, or the downloaded ISO file. – Ulincsys Feb 01 '15 at 17:18

1 Answers1

1

Try the outlined solution(s) in this post

After I Select: 'Start or Install Ubuntu', it fails to boot

If you have arrived at this prompt, you have successfully booted from the CD. But if you can not get any further, you may want to try some optional bootParameters to get you running.

Press F6 for "Other Options." Try to apply boot parameters: BootParameters

Once you press F6, you can use this menu to set boot parameters.

enter image description here

F6. Other Options. ACPI (Advanced Configuration and Power Interface) and EDD (Enhanced Disk Drive) options which may help if your computer does not support or has problems with these systems. Highlight the selection and press the ENTER key or SPACE key to select it. An "X" will appear, indicating selection. Multiple items can be selected from this popup menu. Hit ESC to leave the popup menu. The selections are retained at the time the user presses the ESC key.

Changing the CD Boot Option Configuration Line

(This is only necessairy if, after using the popup menu options, Ubuntu still failed to boot.)

In addition to displaying a popup menu, the F6 key also activates in-line editing of the boot command. Pressing F6 brings up the popup menu. Pressing ESC, whether selections were made or not, removes the popup window but opens the boot command for editing. The phrase "Boot Options" is fixed on the left side of the screen. The command scrolls off to the left to leave the right end available for appending. The user may add additional inputs before or after the "-- ". Allow one space between each additional input.

The "-- " entry defines the boundary between options which are specific to the installer and ones that are copied to the target system. Often you would like to copy the boot option to the target system, so add the option at the very end of the line, after the "-- ".

  1. Editing the boot command line. enter image description here

  2. Press the F6 key.

    A. If desired, select one or more options with the arrow keys, then press ENTER or the SPACE key to select them.

    B. Any popup menu option enabled when ESC is pressed is retained.

  3. Press ESC to remove the popup screen. The boot command line is now available for editing and will remain so as long as no popup menu is visible.

  4. Leave a space following the "--" and add the desired option (A list of Common Boot Options which can be added to the command line is presented later on this page.). If entering multiple options leave a space between each entry.

  5. The command will be executed when ENTER is pressed and the boot sequence will begin.

  6. The F1-F6 keys will still respond and the user can make additional menu selections. The command line will be accessible for appending until ENTER is pressed.

  7. Pressing ENTER will start the boot sequence.

Example Entry

Above is an example of adding the vga=771 option to the end of the Boot Options line.

Note there is a space following "--" and before the added option. Ubuntu now uses Grub 2 as its bootloader. The "vga=" option shown in the example is deprecated in Grub 2 but will still work. After Ubuntu is installed on a system the user should make the appropriate graphics mode entries in the Grub 2 configuration files.

Ulincsys
  • 786