From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-user+bounces-147803-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 607F11381F3 for <garchives@archives.gentoo.org>; Sun, 19 May 2013 07:28:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38536E093A; Sun, 19 May 2013 07:28:31 +0000 (UTC) Received: from mail-wg0-f51.google.com (mail-wg0-f51.google.com [74.125.82.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E69C7E090B for <gentoo-user@lists.gentoo.org>; Sun, 19 May 2013 07:28:29 +0000 (UTC) Received: by mail-wg0-f51.google.com with SMTP id b13so4361174wgh.30 for <gentoo-user@lists.gentoo.org>; Sun, 19 May 2013 00:28:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:reply-to:to:subject:date:user-agent:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; bh=fD0xGmo95c7DtpMF6BvM9ufCkwkCoWiEP7eNTubEvxw=; b=BXdygqXW3P/JKBSKES8PQzjYqD7Nu219q6trMRl9YFWugDN53VqRgkwNbasZYl6N91 4lTpExvSCkM7FAik3w0+LxP8VMhJ0gI14fVEnsUmyaPfoafvWaeRrAWtr0DiqZaY/nOo 0ZVxMUxzXlZlT7+fzrFZB8ABkDTOSPZOBKd1sihstz2aza/m0PLZNWbV8Gi8Dqnx0jjk DJYULml7xrjLl18hPZ+9QOOPSw1fE0kqDLTVEh9+Z7jUxTfqlAlb/n5kFuLGM5aCHpk5 CXI0qynfnrZospxPQN4rhCH1sBJgwHZdhxbmunLDUVzQ4FYGOtN0m2mY5fX415L0GzDQ OVVA== X-Received: by 10.180.21.242 with SMTP id y18mr4905977wie.7.1368948508398; Sun, 19 May 2013 00:28:28 -0700 (PDT) Received: from dell_xps.localnet (230.3.169.217.in-addr.arpa. [217.169.3.230]) by mx.google.com with ESMTPSA id d10sm6736585wik.0.2013.05.19.00.28.27 for <gentoo-user@lists.gentoo.org> (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 19 May 2013 00:28:27 -0700 (PDT) From: Mick <michaelkintzios@gmail.com> To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Booting LiveCD iso from hard drive with GRUB legacy Date: Sun, 19 May 2013 08:28:18 +0100 User-Agent: KMail/1.13.7 (Linux/3.8.13-gentoo; KDE/4.10.2; x86_64; ; ) References: <201305180916.19740.michaelkintzios@gmail.com> <20130518184615.GB5735@waltdnes.org> In-Reply-To: <20130518184615.GB5735@waltdnes.org> Precedence: bulk List-Post: <mailto:gentoo-user@lists.gentoo.org> List-Help: <mailto:gentoo-user+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-user.gentoo.org> X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2023444.cKjXCoQogi"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201305190828.20739.michaelkintzios@gmail.com> X-Archives-Salt: aa222830-0bb8-4290-b245-93635824dca6 X-Archives-Hash: 010a1d65c16b59d0803dc86ed5f70679 --nextPart2023444.cKjXCoQogi Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Saturday 18 May 2013 19:46:15 Walter Dnes wrote: > On Sat, May 18, 2013 at 09:15:44AM +0100, Mick wrote >=20 > > Hi All, > >=20 > > Is there a way of achieving this? >=20 > I don't think so. Can your system boot from a USB stick? If so, see > https://wiki.archlinux.org/index.php/USB_Installation_Media for > instructions on how to make a CD ISO bootable off a USB stick. Note > that this is for legacy boot. For UEFI boot, see > https://wiki.archlinux.org/index.php/UEFI#Create_UEFI_bootable_USB_from_I= SO >=20 > 1) If you haven't already done so "emerge sys-boot/syslinux" to get the > "isohybrid" command. >=20 > 2) Get a USB stick. *WARNING* all data on the stick will be erased >=20 > 3) Assume the ISO is install-amd64-minimal-20130516.iso Execute the > command >=20 > isohybrid install-amd64-minimal-20130516.iso >=20 > 4) Insert the USB stick. *DO NOT MOUNT IT*. Unmount it manually if you > have an automounter. >=20 > 5) As root, execute the command... >=20 > dd bs=3D4M if=3Dinstall-amd64-minimal-20130516.iso of=3D/dev/sdx >=20 > ...where sdx is the USB stick (e.g. sdb or sdc or whatever) > - be careful not to overwrite the wrong device > - yes, it's sdx, not sdx1 >=20 > 6) You now have a bootable USB stick Thank you for this useful and succinct info Walter. Although I don't want = to=20 use a bootable USB on this occasion, I'll keep this message as a reference = for=20 when I do. :-) =2D-=20 Regards, Mick --nextPart2023444.cKjXCoQogi Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) iQEcBAABAgAGBQJRmH8UAAoJELAdA+zwE4Ye928IAI4WGWyzTjn4arrsqVsVgwDp Go4pXHi1Ab7bSiPNajb4gB4UfZdSVv9ZkejUk8ZheOiV/U72qcKvrHfyQsI74RJg POGWqH9vDnReQyptEE839WuDYJXamZ2D1hD+sGw3/aBmw1BgjzfZEL23koSvgTL+ FoXyXxQ2AEUjdHiut/VqlzRtZ9BdjHP6Jp+7ZA3EPXh3nsMcLeOUtqVf5YwzL7of L/g6hZyrGTdUAH0ZAxDBgrn87VNYFfSbl8jQqEWPIPP6Ce5q4d1ZurB6W3W2QylT ZWOs5CkZBVr4Kyedw0cZ+ASIYlWpQ7yB3o5AVl9p6YtzpGITowqY4vab2haR1+w= =6IeV -----END PGP SIGNATURE----- --nextPart2023444.cKjXCoQogi--