You are not logged in.

#1 2015-06-30 18:52:33

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

[SOLVED] Unable to create a bootable USB-live from Arch

I'm dd-ing a USB-stick (actually i've tried 9 of my sticks) with another distro (Funtoo) to install on the other computer but it fails to boot.
I use $ sudo dd if=/home/arch/isos/systemrescuecd-x86-4.5.0.iso of=/dev/sdb && sync
I've tried without the " && sync" option as well. No luck.
When burning to a DVD it works like charm, but unfortunately that target computer doesn't have a DVD, just USB.
I've googled around and tried "everything" except unetbootin or what it's called.
For the record, all the files has been copied to my USB-stick(s), but it's simply not bootable on any of my computers.
When trying a USB-stick with Fedora it works right out of the box. But that USB-image is created in Win7 @ work (SUSE imagewriter).
And it's not mounted when i'm "creating" the live USB-stick and i "eject" it before removing the USB-stick.

Am i missing something fundamental here, being new to Arch? (I've read the arch wiki about creating live USB-media)

Last edited by dockland (2015-06-30 21:05:27)


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#2 2015-06-30 18:58:47

Malkymder
Member
Registered: 2015-05-13
Posts: 258

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Post the following

sudo fdisk -l

Offline

#3 2015-06-30 19:04:58

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Malkymder wrote:

Post the following

sudo fdisk -l

It looks identical on those USB-sticks i've tried.

[arch@Arch ~]$ sudo fdisk -l
[sudo] password for arch: 
Disk /dev/sda: 953.9 GiB, 1024209543168 bytes, 2000409264 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 4194567C-62EA-425D-B16D-F85702CFBEF3

Device          Start        End    Sectors   Size Type
/dev/sda1        2048    1050623    1048576   512M EFI System
/dev/sda2     1050624  105908223  104857600    50G Linux filesystem
/dev/sda3   105908224 1775028223 1669120000 795.9G Linux filesystem
/dev/sda4  1775028224 1807796223   32768000  15.6G Linux swap

[b]Disk /dev/sdb: 3.8 GiB, 4013948928 bytes, 7839744 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes[/b]

I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#4 2015-06-30 19:12:59

Malkymder
Member
Registered: 2015-05-13
Posts: 258

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Try formatting it then re-dd your iso

sudo mkfs.vfat /dev/sdb -I

Offline

#5 2015-06-30 19:13:19

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Are you sure that the Funtoo iso is able to be used as a USB image?

You can't just dd any old iso to a USB stick and expect it to work, it has to follow a special 'hybrid iso' specification.


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#6 2015-06-30 19:16:14

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Malkymder wrote:

Try formatting it then re-dd your iso

sudo mkfs.vfat /dev/sdb -I

I'll try that immediately.


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#7 2015-06-30 19:17:15

Malkymder
Member
Registered: 2015-05-13
Posts: 258

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Could also use 'bs=4M'

sudo dd bs=4M if=/home/arch/isos/systemrescuecd-x86-4.5.0.iso of=/dev/sdb && sync

Offline

#8 2015-06-30 19:17:34

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED] Unable to create a bootable USB-live from Arch

Further to my previous post...

http://www.funtoo.org/LiveUSB


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#9 2015-06-30 19:18:21

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

slithery wrote:

Are you sure that the Funtoo iso is able to be used as a USB image?

You can't just dd any old iso to a USB stick and expect it to work, it has to follow a special 'hybrid iso' specification.

Yes. It should work. As it states it's an option on their Wiki/Handbook-page.

Live CD
In order to install Funtoo Linux, you will first need to boot your computer using a Linux-based Live CD or USB stick. We recommend the Gentoo-based System Rescue CD as it contains lots of tools and utilities and supports both 32-bit and 64-bit systems. It can be burned to CD/DVD or installed on a USB stick. Download it here:

Download from osuosl.org
Download from funtoo.org

I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#10 2015-06-30 19:20:03

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

slithery wrote:

Further to my previous post...

http://www.funtoo.org/LiveUSB

Ah, missed that, thank you. How do i do that from Arch? Thinking of the "emerge syslinux"-part.


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#11 2015-06-30 19:21:28

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED] Unable to create a bootable USB-live from Arch

pacman -S syslinux

No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#12 2015-06-30 19:22:18

Malkymder
Member
Registered: 2015-05-13
Posts: 258

Re: [SOLVED] Unable to create a bootable USB-live from Arch

emerge is the same as pacman -S

edit: Im too slow wink

Last edited by Malkymder (2015-06-30 19:22:49)

Offline

#13 2015-06-30 19:24:21

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

slithery wrote:
pacman -S syslinux

Oh, that "simple" Thank You. Trying as we speak.


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#14 2015-06-30 19:38:45

2ManyDogs
Forum Fellow
Registered: 2012-01-15
Posts: 4,645

Re: [SOLVED] Unable to create a bootable USB-live from Arch

slithery wrote:

You can't just dd any old iso to a USB stick and expect it to work, it has to follow a special 'hybrid iso' specification.

slithery is right. systemrescueCD is not a hybrid iso. You can't use "dd" to simply copy it to a usb stick. Note that the text you quoted says "It can be burned to CD/DVD or installed on a USB stick."

Follow the procedure here:

http://www.sysresccd.org/Sysresccd-manu … from_Linux

I know this works, because I have systemrescueCD on a USB stick -- I used it to install Gentoo.

Last edited by 2ManyDogs (2015-06-30 19:42:58)

Offline

#15 2015-06-30 21:04:52

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

slithery wrote:
pacman -S syslinux

That did the trick. Totally news for me. Thank you all. Compiling 3.19 from debian-sources right now on the other computer.

I'll mark thread as solved.


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

#16 2015-06-30 21:06:13

dockland
Member
From: Sweden
Registered: 2015-06-06
Posts: 861

Re: [SOLVED] Unable to create a bootable USB-live from Arch

2ManyDogs wrote:
slithery wrote:

You can't just dd any old iso to a USB stick and expect it to work, it has to follow a special 'hybrid iso' specification.

slithery is right. systemrescueCD is not a hybrid iso. You can't use "dd" to simply copy it to a usb stick. Note that the text you quoted says "It can be burned to CD/DVD or installed on a USB stick."

Follow the procedure here:

http://www.sysresccd.org/Sysresccd-manu … from_Linux

I know this works, because I have systemrescueCD on a USB stick -- I used it to install Gentoo.

I dont think I'll ever forget this. Great news for me. Thank you all.


I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.

Offline

Board footer

Powered by FluxBB