<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Linux Forums - Installation</title>
		<link>http://www.linuxforums.org/forum/</link>
		<description>Post here if you need help with Linux installation, boot loader, or dual-boot issues</description>
		<language>en</language>
		<lastBuildDate>Wed, 22 May 2013 03:48:10 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.linuxforums.org/forum/images/misc/rss.png</url>
			<title>Linux Forums - Installation</title>
			<link>http://www.linuxforums.org/forum/</link>
		</image>
		<item>
			<title>Unpartition before or during Ubuntu install?</title>
			<link>http://www.linuxforums.org/forum/installation/196602-unpartition-before-during-ubuntu-install.html</link>
			<pubDate>Mon, 20 May 2013 13:18:53 GMT</pubDate>
			<description>I have an old (10+ yrs) laptop partitioned with Windows XP(30GB) and Fedora 11(10GB) on which I would like to install only Ubuntu 10. 
 
I think...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>I have an old (10+ yrs) laptop partitioned with Windows XP(30GB) and Fedora 11(10GB) on which I would like to install only Ubuntu 10.<br />
<br />
I think Windows can un-partition, and it looks like Ubuntu can un-partition during install.  So which is better, un-partition using Windows, then install Ubuntu, or un-partition during Ubuntu installation?</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>MattQ</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196602-unpartition-before-during-ubuntu-install.html</guid>
		</item>
		<item>
			<title>Got Linux Mint 14 working, but broke Windows 7</title>
			<link>http://www.linuxforums.org/forum/installation/196594-got-linux-mint-14-working-but-broke-windows-7-a.html</link>
			<pubDate>Sun, 19 May 2013 19:53:29 GMT</pubDate>
			<description>Hello, 
 
I have Windows 7 and Linux Mint 14 installed on the same hard drive as follows: 
 
Code: 
--------- 
/dev/sda 
  /dev/sda2 ntfs (small 104...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>Hello,<br />
<br />
I have Windows 7 and Linux Mint 14 installed on the same hard drive as follows:<br />
<!-- BEGIN TEMPLATE: bbcode_code_printable -->
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">/dev/sda<br />
&nbsp; /dev/sda2 ntfs (small 104 MB Windows partition)<br />
&nbsp; /dev/sda3 ntfs (main Windows partition)<br />
&nbsp; /dev/sda5 swap (Linux swap area)<br />
&nbsp; /dev/sda1 ext4 (root Linux partition)</code><hr />
</div>
<!-- END TEMPLATE: bbcode_code_printable -->I originally had Windows 7 installed, then shrank the partition to install Linux Mint 14.<br />
<br />
From the Grub bootloader, I can successfully select and boot Linux Mint 14, but when I try Windows 7 I get:<br />
<!-- BEGIN TEMPLATE: bbcode_quote_printable -->
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			A disk read error occurred<br />
Press CTRL+ALT+DEL to restart
			
		<hr />
	</div>
</div>
<!-- END TEMPLATE: bbcode_quote_printable -->If I use my Windows 7 DVD to get to the recovery console, bootrec.exe /ScanOS finds no operating systems.<br />
<br />
On the Linux Mint 14 side, I can use the file browser to browse my Windows file system (C:\Windows, C:\Program Files, etc..), so I can see  everything is still there.<br />
<br />
My grub.cfg file (/boot/grub) looks like this:<br />
<!-- BEGIN TEMPLATE: bbcode_code_printable -->
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#<br />
# DO NOT EDIT THIS FILE<br />
#<br />
# It is automatically generated by grub-mkconfig using templates<br />
# from /etc/grub.d and settings from /etc/default/grub<br />
#<br />
<br />
### BEGIN /etc/grub.d/00_header ###<br />
if [ -s $prefix/grubenv ]; then<br />
&nbsp; set have_grubenv=true<br />
&nbsp; load_env<br />
fi<br />
set default=&quot;0&quot;<br />
<br />
if [ x&quot;${feature_menuentry_id}&quot; = xy ]; then<br />
&nbsp; menuentry_id_option=&quot;--id&quot;<br />
else<br />
&nbsp; menuentry_id_option=&quot;&quot;<br />
fi<br />
<br />
export menuentry_id_option<br />
<br />
if [ &quot;${prev_saved_entry}&quot; ]; then<br />
&nbsp; set saved_entry=&quot;${prev_saved_entry}&quot;<br />
&nbsp; save_env saved_entry<br />
&nbsp; set prev_saved_entry=<br />
&nbsp; save_env prev_saved_entry<br />
&nbsp; set boot_once=true<br />
fi<br />
<br />
function savedefault {<br />
&nbsp; if [ -z &quot;${boot_once}&quot; ]; then<br />
&nbsp; &nbsp; saved_entry=&quot;${chosen}&quot;<br />
&nbsp; &nbsp; save_env saved_entry<br />
&nbsp; fi<br />
}<br />
<br />
function recordfail {<br />
&nbsp; set recordfail=1<br />
&nbsp; if [ -n &quot;${have_grubenv}&quot; ]; then if [ -z &quot;${boot_once}&quot; ]; then save_env recordfail; fi; fi<br />
}<br />
<br />
function load_video {<br />
&nbsp; if [ x$feature_all_video_module = xy ]; then<br />
&nbsp; &nbsp; insmod all_video<br />
&nbsp; else<br />
&nbsp; &nbsp; insmod efi_gop<br />
&nbsp; &nbsp; insmod efi_uga<br />
&nbsp; &nbsp; insmod ieee1275_fb<br />
&nbsp; &nbsp; insmod vbe<br />
&nbsp; &nbsp; insmod vga<br />
&nbsp; &nbsp; insmod video_bochs<br />
&nbsp; &nbsp; insmod video_cirrus<br />
&nbsp; fi<br />
}<br />
<br />
if [ x$feature_default_font_path = xy ] ; then<br />
&nbsp;  font=unicode<br />
else<br />
insmod part_msdos<br />
insmod ext2<br />
set root='hd0,msdos1'<br />
if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1&nbsp; 65703582-6246-436c-b4ec-39f21f3f76f3<br />
else<br />
&nbsp; search --no-floppy --fs-uuid --set=root 65703582-6246-436c-b4ec-39f21f3f76f3<br />
fi<br />
&nbsp; &nbsp; font=&quot;/usr/share/grub/unicode.pf2&quot;<br />
fi<br />
<br />
if loadfont $font ; then<br />
&nbsp; set gfxmode=auto<br />
&nbsp; load_video<br />
&nbsp; insmod gfxterm<br />
&nbsp; set locale_dir=$prefix/locale<br />
&nbsp; set lang=en_US<br />
&nbsp; insmod gettext<br />
fi<br />
terminal_output gfxterm<br />
if [ &quot;${recordfail}&quot; = 1 ]; then<br />
&nbsp; set timeout=-1<br />
else<br />
&nbsp; set timeout=10<br />
fi<br />
### END /etc/grub.d/00_header ###<br />
<br />
### BEGIN /etc/grub.d/05_debian_theme ###<br />
set menu_color_normal=white/black<br />
set menu_color_highlight=black/light-gray<br />
### END /etc/grub.d/05_debian_theme ###<br />
<br />
### BEGIN /etc/grub.d/06_mint_theme ###<br />
set menu_color_normal=white/black<br />
set menu_color_highlight=white/light-gray<br />
### END /etc/grub.d/06_mint_theme ###<br />
<br />
### BEGIN /etc/grub.d/10_linux ###<br />
function gfxmode {<br />
&nbsp; &nbsp; &nbsp; &nbsp; set gfxpayload=&quot;$1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ &quot;$1&quot; = &quot;keep&quot; ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set vt_handoff=vt.handoff=7<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set vt_handoff=<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
}<br />
if [ ${recordfail} != 1 ]; then<br />
&nbsp; if [ -e ${prefix}/gfxblacklist.txt ]; then<br />
&nbsp; &nbsp; if hwmatch ${prefix}/gfxblacklist.txt 3; then<br />
&nbsp; &nbsp; &nbsp; if [ ${match} = 0 ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; set linux_gfx_mode=keep<br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; set linux_gfx_mode=text<br />
&nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; set linux_gfx_mode=text<br />
&nbsp; &nbsp; fi<br />
&nbsp; else<br />
&nbsp; &nbsp; set linux_gfx_mode=keep<br />
&nbsp; fi<br />
else<br />
&nbsp; set linux_gfx_mode=text<br />
fi<br />
export linux_gfx_mode<br />
if [ &quot;$linux_gfx_mode&quot; != &quot;text&quot; ]; then load_video; fi<br />
menuentry 'Linux Mint 14 Cinnamon 64-bit, 3.5.0-17-generic (/dev/sda1)' --class linuxmint --class gnu-linux --class gnu --class os {<br />
&nbsp; &nbsp; &nbsp; &nbsp; recordfail<br />
&nbsp; &nbsp; &nbsp; &nbsp; gfxmode $linux_gfx_mode<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod gzio<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod part_msdos<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ext2<br />
&nbsp; &nbsp; &nbsp; &nbsp; set root='hd0,msdos1'<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1&nbsp; 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; &nbsp; &nbsp; linux&nbsp; &nbsp; &nbsp; &nbsp; /boot/vmlinuz-3.5.0-17-generic root=UUID=65703582-6246-436c-b4ec-39f21f3f76f3 ro&nbsp;  quiet splash $vt_handoff<br />
&nbsp; &nbsp; &nbsp; &nbsp; initrd&nbsp; &nbsp; &nbsp; &nbsp; /boot/initrd.img-3.5.0-17-generic<br />
}<br />
menuentry 'Linux Mint 14 Cinnamon 64-bit, 3.5.0-17-generic (/dev/sda1) -- recovery mode' --class linuxmint --class gnu-linux --class gnu --class os {<br />
&nbsp; &nbsp; &nbsp; &nbsp; recordfail<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod gzio<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod part_msdos<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ext2<br />
&nbsp; &nbsp; &nbsp; &nbsp; set root='hd0,msdos1'<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1&nbsp; 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo&nbsp; &nbsp; &nbsp; &nbsp; 'Loading Linux 3.5.0-17-generic ...'<br />
&nbsp; &nbsp; &nbsp; &nbsp; linux&nbsp; &nbsp; &nbsp; &nbsp; /boot/vmlinuz-3.5.0-17-generic root=UUID=65703582-6246-436c-b4ec-39f21f3f76f3 ro recovery nomodeset <br />
&nbsp; &nbsp; &nbsp; &nbsp; echo&nbsp; &nbsp; &nbsp; &nbsp; 'Loading initial ramdisk ...'<br />
&nbsp; &nbsp; &nbsp; &nbsp; initrd&nbsp; &nbsp; &nbsp; &nbsp; /boot/initrd.img-3.5.0-17-generic<br />
}<br />
### END /etc/grub.d/10_linux ###<br />
<br />
### BEGIN /etc/grub.d/10_lupin ###<br />
### END /etc/grub.d/10_lupin ###<br />
<br />
### BEGIN /etc/grub.d/20_linux_xen ###<br />
<br />
### END /etc/grub.d/20_linux_xen ###<br />
<br />
### BEGIN /etc/grub.d/20_memtest86+ ###<br />
menuentry &quot;Memory test (memtest86+)&quot; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod part_msdos<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ext2<br />
&nbsp; &nbsp; &nbsp; &nbsp; set root='hd0,msdos1'<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1&nbsp; 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; &nbsp; &nbsp; linux16&nbsp; &nbsp; &nbsp; &nbsp; /boot/memtest86+.bin<br />
}<br />
menuentry &quot;Memory test (memtest86+, serial console 115200)&quot; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod part_msdos<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ext2<br />
&nbsp; &nbsp; &nbsp; &nbsp; set root='hd0,msdos1'<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1&nbsp; 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root 65703582-6246-436c-b4ec-39f21f3f76f3<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; &nbsp; &nbsp; linux16&nbsp; &nbsp; &nbsp; &nbsp; /boot/memtest86+.bin console=ttyS0,115200n8<br />
}<br />
### END /etc/grub.d/20_memtest86+ ###<br />
<br />
### BEGIN /etc/grub.d/30_os-prober ###<br />
menuentry 'Windows 7 (loader) (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-3E5477305476E9D3' {<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ldm<br />
&nbsp; &nbsp; &nbsp; &nbsp; insmod ntfs<br />
&nbsp; &nbsp; &nbsp; &nbsp; set root='ldm/ec852016-b735-11e0-bdac-001d60a1eb5f/Volume1'<br />
&nbsp; &nbsp; &nbsp; &nbsp; if [ x$feature_platform_search_hint = xy ]; then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root --hint-bios=hd0 --hint-efi=hd0 --hint-baremetal=ahci0 --hint='ldm/ec852016-b735-11e0-bdac-001d60a1eb5f/Volume1'&nbsp; 3E5477305476E9D3<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; search --no-floppy --fs-uuid --set=root 3E5477305476E9D3<br />
&nbsp; &nbsp; &nbsp; &nbsp; fi<br />
&nbsp; &nbsp; &nbsp; &nbsp; chainloader +1<br />
}<br />
### END /etc/grub.d/30_os-prober ###<br />
<br />
### BEGIN /etc/grub.d/30_uefi-firmware ###<br />
### END /etc/grub.d/30_uefi-firmware ###<br />
<br />
### BEGIN /etc/grub.d/40_custom ###<br />
# This file provides an easy way to add custom menu entries.&nbsp; Simply type the<br />
# menu entries you want to add after this comment.&nbsp; Be careful not to change<br />
# the 'exec tail' line above.<br />
### END /etc/grub.d/40_custom ###<br />
<br />
### BEGIN /etc/grub.d/41_custom ###<br />
if [ -f&nbsp; ${config_directory}/custom.cfg ]; then<br />
&nbsp; source ${config_directory}/custom.cfg<br />
elif [ -z &quot;${config_directory}&quot; -a -f&nbsp; $prefix/custom.cfg ]; then<br />
&nbsp; source $prefix/custom.cfg;<br />
fi<br />
### END /etc/grub.d/41_custom ###</code><hr />
</div>
<!-- END TEMPLATE: bbcode_code_printable -->Please help!<br />
<br />
P.S. I'm very much enjoying and impressed by Mint so far, but there are applications I need on the Windows side for work and school.</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>spencerw</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196594-got-linux-mint-14-working-but-broke-windows-7-a.html</guid>
		</item>
		<item>
			<title>Linux and virtualization</title>
			<link>http://www.linuxforums.org/forum/installation/196507-linux-virtualization.html</link>
			<pubDate>Mon, 13 May 2013 14:53:02 GMT</pubDate>
			<description>Hello.  
Can i have a Linux and a Windows Seven in my hdd on separate partitions and when i am on my Linux, run Windows Seven from my hdd in a vmware...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>Hello. <br />
Can i have a Linux and a Windows Seven in my hdd on separate partitions and when i am on my Linux, run Windows Seven from my hdd in a vmware or something like it ? <br />
Of course, I want to be able to boot on my Windows Seven with Grub.</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>opc0de</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196507-linux-virtualization.html</guid>
		</item>
		<item>
			<title>How do I run openSUSE 12.1 KDE Live on an external hard drive?</title>
			<link>http://www.linuxforums.org/forum/installation/196473-how-do-i-run-opensuse-12-1-kde-live-external-hard-drive.html</link>
			<pubDate>Sat, 11 May 2013 02:41:18 GMT</pubDate>
			<description>Hello everyone, I am new to this forum and any forum in general. I am also a super noob at Linux. So thats why I came here. 
 
Alright, so I know...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>Hello everyone, I am new to this forum and any forum in general. I am also a super noob at Linux. So thats why I came here.<br />
<br />
Alright, so I know theres a lot of forums already on this topic, but this is a more detailed question. <br />
<br />
I recently bought an external hard drive (Western Digital, My Passport, 300GB) and I want to put openSUSE LIVE on it. The reason is because DVDs and USBs have not enough space for my taste. I heard external HDD's act like USB's, so I tried the USB installer. I was still nervous to do it, so I tried to research it some more. I figured out that you can screw up the boot loader if you do it that way. What I'm trying to achieve is to make my external like a live USB or DVD. When you put in insert your USB or DVD, you have to go to the boot menu to select the device to boot to. You can run live USB's and DVD's on just about any computer without the hassle of the boot loader. I also figured out you have to disable your C:\ drive in order to do a full install of any Linux distro to external HDD. Let me make this clear before anybody gets ahead of me: <b>I do not want to install the full thing, I just want to run it live.</b><br />
<br />
So is there any way possible I can run openSUSE live from my external HDD without messing with the boot loader? <br />
<br />
Thanks in advance;<br />
<br />
Zyan~</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>Zyan_Binx</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196473-how-do-i-run-opensuse-12-1-kde-live-external-hard-drive.html</guid>
		</item>
		<item>
			<title><![CDATA[[all variants] LiveUSB not booting in (U)EFI mode]]></title>
			<link>http://www.linuxforums.org/forum/installation/196381-all-variants-liveusb-not-booting-u-efi-mode.html</link>
			<pubDate>Mon, 06 May 2013 15:23:31 GMT</pubDate>
			<description>Hey,  
 
I am trying to install Ubuntu 13.04 Raring Ringtail 64-bit, on my Dell Inspiron 15z laptop that came pre-installed with Windows 8. I wish to...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>Hey, <br />
<br />
I am trying to install Ubuntu 13.04 Raring Ringtail 64-bit, on my Dell Inspiron 15z laptop that came pre-installed with Windows 8. I wish to dual-boot Windows 8 and Ubuntu 13.04 without formatting my existing OEM Windows 8 in the (U)EFI mode. I have disabled the SecureBoot option in the (U)EFI system, but every time I try to boot the LiveUSB (which I used made bootable using LinuxLive USB Creator), it shows the GRUB2 Bootloader, but the screen just simply blanks out right after I choose any option from the GRUB menu. Nothing happens after that; the indicator on my USB pendrive also becomes steady. I tried leaving the system as is for as long as 7hrs (when I went off to sleep), but nothing happened. It was the same blank screen. It always freezes at the same point.<br />
<br />
The reason why I prefixed this thread with &quot;[all variants]&quot; is because I don't think this issue is limited to any one Linux distro/flavour<br />
<br />
If anyone has any solutions to suggest that would help me solve my problem, that would be great and appreciated.</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>divine_shine</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196381-all-variants-liveusb-not-booting-u-efi-mode.html</guid>
		</item>
		<item>
			<title><![CDATA[GUI software can't locate printer configued in CUPS]]></title>
			<link>http://www.linuxforums.org/forum/installation/196190-gui-software-cant-locate-printer-configued-cups.html</link>
			<pubDate>Wed, 24 Apr 2013 15:59:07 GMT</pubDate>
			<description><![CDATA[I have CUPS using my Epson printer fine, but when I'm in a GUI, like Iceweasel, it only shows that I can print to a file. So I have to get a terminal...]]></description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>I have CUPS using my Epson printer fine, but when I'm in a GUI, like Iceweasel, it only shows that I can print to a file. So I have to get a terminal window up, go to that directory and 'lp' it to print.   <br />
<br />
I originally tried to install a network printer on this (Debian Wheezy) and it gave me a list of software that was required.  I don't need a spooler and all that, I just want it to dump it to the printer over the network.  So I think that direction is much to complicated when it works fine this way.  At least via lp.<br />
<br />
Any idea how to tell the GUI part of Debian that a printer is there and to use it?  Seems like this would be easy???<br />
<br />
Thanks<br />
<br />
Jack<br />
<br />
P.S. Hope this is the correct forum for this question...</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>jkwilborn</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196190-gui-software-cant-locate-printer-configued-cups.html</guid>
		</item>
		<item>
			<title>installation of centos 6.4</title>
			<link>http://www.linuxforums.org/forum/installation/196167-installation-centos-6-4-a.html</link>
			<pubDate>Tue, 23 Apr 2013 15:38:07 GMT</pubDate>
			<description>hello,  
i have a laptop using amd processor of 32 bit. i have installed centos 6.4 x86_64. is it ok or will there be any problem while installing...</description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>hello, <br />
i have a laptop using amd processor of 32 bit. i have installed centos 6.4 x86_64. is it ok or will there be any problem while installing packages and applications? if yes, is there any method to solve? kindly suggest</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>anshuman_nist</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196167-installation-centos-6-4-a.html</guid>
		</item>
		<item>
			<title>Creating a Linux based USB bootable, not for Windows.</title>
			<link>http://www.linuxforums.org/forum/installation/196151-creating-linux-based-usb-bootable-not-windows.html</link>
			<pubDate>Tue, 23 Apr 2013 01:58:27 GMT</pubDate>
			<description><![CDATA[I'd like to create a Linux based USB bootable drive for my laptop.  I tried the using the Universal USB Pen Drive installer, but it didn't work. 
...]]></description>
			<content:encoded><![CDATA[<!-- BEGIN TEMPLATE: postbit_external -->
<div>I'd like to create a Linux based USB bootable drive for my laptop.  I tried the using the Universal USB Pen Drive installer, but it didn't work.<br />
<br />
Basically all I have on my laptop is Fuduntu.<br />
What I'd like to be able to do is install either Ubuntu or Mint, but it seems like 99% of the installers out there are made to be Windows bootable USB keys.<br />
<br />
<br />
Is there any simple way to create a USB bootable via linux for linux?<br />
<br />
Thanks.</div>


<!-- END TEMPLATE: postbit_external -->]]></content:encoded>
			<category domain="http://www.linuxforums.org/forum/installation/">Installation</category>
			<dc:creator>kooba</dc:creator>
			<guid isPermaLink="true">http://www.linuxforums.org/forum/installation/196151-creating-linux-based-usb-bootable-not-windows.html</guid>
		</item>
	</channel>
</rss>
