[SOLVED] Installation on UEFI from usb stick

Greetings,
I'm trying to figure out this uefi thing and install arch on my laptop.
I swear, I've been trying so many times now that I have a headache. My girlfriend too because of all my ranting.
I downloaded the latest arch iso and "burned" it to a usb stick (my laptop lack a cdrom).
I booted with the first option and went through the whole installation progress to the grub installing part MANY times before realizing I was doing it all wrong and I had to start from a UEFI shell.
Now I started from the UEFI shell and I just have no idea what I'm doing, the beginner guide doesn't seem to explain this.
I should probably wait until my headache pass and I'm fresh and ready to start over but I'm one stubborn guyif there is one and I had enough of failing, I want it to work.
What do I do from the UEFI shell?
Do I have to reinstall everything from scratch, partitioning and all or I can just get back to the part where I have to install grub? What do I do?
Thanks in advance and sorry if I'm asking stupid questions or something but, honestly, I failed so many times that my frustration is seriously high.
Last edited by arkindal (2013-08-13 23:13:11)

Hi,
this is basically what I followed and it worked for me:
make an archlinux uefi usb stick (it's a bit different than a normal one). Use a live ubuntu cd or something, so you don't have to use windows:
#format your usb key on /dev/sdXY to fat32 (replace XY with the right device, in the following code too)
sudo su
wget http://mirror.us.leaseweb.net/archlinux/iso/2013.08.01/archlinux-2013.08.01-dual.iso
mkdir -p /mnt/{usb,iso}
mount -o loop archlinux-2013.08.01-dual.iso /mnt/iso
awk 'BEGIN {FS="="} /archisolabel/ {print $3}' /mnt/iso/loader/entries/archiso-x86_64.conf | xargs mkfs.vfat -F32 /dev/sdXY -n
mount /dev/sdXY /mnt/usb
cp -a /mnt/iso/* /mnt/usb
sync
umount /mnt/{usb,iso}
full instructions here: https://wiki.archlinux.org/index.php/Un … B_from_ISO
now you have the instalation usb ready.
When I did this, i could still go to choose my boot device and i had a normal usb key boot option and an uefi shell usb key option, see if you have something like that to be sure you have the uefi boot. you should see an uefi shell and it should boot automatically as a normal archlinux live usb. if it doesn not (happend to me before) run ./start.sh or something like that (it should say in the uefi shell what to run). If that doesn not work, then the uefi usb key didn't work.
okay if you've successfully booted the uefi usb you have to format your drive so it has the uefi boot partition mounted inside the grup folder, so there has to be a ef00 partition on the begining
This is my actuall install script, it will wipe your drive, make 5 partitions (uefi boot, boot, swap, root, home) and then mount them, install arch and then chroot into that
modprobe efivars
#configure this as you wish
SWAPSIZE=4G
ROOTSIZE=50G
DRIVE=sda
#these two lines are horrible, you could manually use gdist and format the drive as you wish, as this will just wipe it clean and make the partion table that I have.
dd if=/dev/zero of=/dev/$DRIVE bs=1M count=1k
echo "2\no\ny\nn\n\n\n+100M\nef00\nn\n\n\n+100M\n\nn\n\n\n+${SWAPSIZE}\n8200\nn\n\n\n+${ROOTSIZE}\n\nn\n\n\n\n\np\nw\ny\n" | gdisk /dev/$DRIVE
mkfs.vfat -F 32 /dev/${DRIVE}1
mkfs.ext2 -L boot /dev/${DRIVE}2
mkswap -L swap /dev/${DRIVE}3
mkfs.ext4 -L root /dev/${DRIVE}4
mkfs.ext4 -L home /dev/${DRIVE}5
swapon /dev/${DRIVE}3
mount /dev/${DRIVE}4 /mnt
mkdir /mnt/home
mount /dev/${DRIVE}5 /mnt/home
mkdir /mnt/boot
mount /dev/${DRIVE}2 /mnt/boot
#this is the magic uefi part for grub
mkdir /mnt/boot/efi
mount /dev/${DRIVE}1 /mnt/boot/efi
pacstrap /mnt base base-devel zsh
genfstab -U -p /mnt >> /mnt/etc/fstab
arch-chroot /mnt
After doing that, you have can install the system as you wish and for the grub I do this:
I had problems a few times if i copy pasted all these lines at once, so now i copy paste them one at a time, (I know it should not make a difference but still, sometimes it didn't work)
# i do this in chmod too, though I'm not sure if it's really necessary
modprobe efivars
mkinitcpio -p linux
echo "installing efi grup thingy"
pacman -S --noconfirm efibootmgr grub-efi-x86_64
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub --recheck --debug
mkdir -p /boot/grub/locale
cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
grub-mkconfig -o /boot/grub/grub.cfg
and this is all i have in my install script file and uefi works fine.  I hope you'll get it running soon
Last edited by zidarsk8 (2013-08-09 00:25:20)

Similar Messages

  • [SOLVED, kind of] UEFI bootable USB from ISO doesn't start

    Hi there,
    out of curiosity I wanted to create an UEFI bootable usb stick with the latest Archiso 2013.01.04. I've followed https://wiki.archlinux.org/index.php/UE … B_from_ISO
    and created two directories
    # mkdir -p /mnt/{usb,iso}
    Then I've mounted Archiso to /mnt/iso
    # mount -o loop Download/ISO-Images/archlinux-2013.01.04-dual.iso /mnt/iso
    After this I used cfdisk to create a FAT32 filesystem /dev/sdb1 on the usb stick, followed by
    # awk 'BEGIN {FS="="} /archisolabel/ {print $3}' /mnt/iso/loader/entries/archiso-x86_64.conf | xargs mkfs.vfat /dev/sdb1 -n
    Then I've mounted /dev/sdb1 to /mnt/usb and copied all iso-files there:
    # mount /dev/sdb1 /mnt/usb
    # cp -r /mnt/iso/* /mnt/usb
    Followed by:
    # umount /mnt/{usb,iso}
    # sync
    After rebooting and hitting F11 I was presented with the UEFI firmware-tool from which I can choose UEFI (and other) applications to start. I could choose my usb stick in UEFI mode, but - only the screen turned blank for the blink of a second and the UEFI tool was on again.
    Because my system is already booting in UEFI mode using rEFInd, I wanted to try rEFInd on the usb stick instead of gummiboot.
    Following https://wiki.archlinux.org/index.php/UE … B_from_ISO I've copied /usr/lib/refind/refind_x64.efi (from refind-efi 0.6.4-1) to /mnt/usb/EFI/boot/bootx64.efi and created a /mnt/usb/EFI/boot/refind.conf with this text:
    timeout 5
    textonly
    showtools about,reboot,shutdown,exit
    # scan_driver_dirs EFI/tools/drivers_x64
    scanfor manual,internal,external,optical
    scan_delay 1
    dont_scan_dirs EFI/boot
    max_tags 0
    default_selection "Arch Linux Archiso x86_64 UEFI USB"
    menuentry "Arch Linux Archiso x86_64 UEFI USB" {
      loader /arch/boot/x86_64/vmlinuz
      initrd /arch/boot/x86_64/archiso.img
      ostype Linux
      graphics off
      options "pci=nocrs add_efi_memmap archisobasedir=arch archisolabel=ARCH_201301"
    menuentry "UEFI x86_64 Shell v2" {
      loader /EFI/shellx64_v2.efi
      graphics off
    menuentry "UEFI x86_64 Shell v1" {
      loader /EFI/shellx64_v1.efi
      graphics off
    And yes, I've checked the "loader" and "initrd"-Paths - they are correct, as well as the archisolabel
    But - again - after rebooting and hitting F11 I could select my usb stick as UEFI boot device, but all that happened was the screen going blank for the glimpse of a second and returning to the UEFI chooser.
    Even my last attempt - keeping the original name refind_x64.efi in /mnt/usb/EFI/boot didn't help.
    Via efibootmgr I can see:
    $ sudo efibootmgr
    BootCurrent: 0001
    Timeout: 5 seconds
    BootOrder: 0001,0002,0007,0005,0006
    Boot0001* rEFInd 0.6.4-1
    Boot0002* rEFInd_recover
    Boot0005* Hard Drive
    Boot0006* USB
    Boot0007* UEFI: TOSHIBA TransMemory PMAP
    with "Boot0007" as my usb stick.
    So my question is: Did I miss something or have I found a bug ?
    Last edited by swordfish (2013-01-13 12:43:33)

    Hm, funny thing - now it's working, but I don't know why
    I've tried to convert the partition table of the usb stick from MBR to GPT using cgdisk. There I had a problem with setting the partition type to EF00. It worked under cgdisk, but then I couldn't mount my usb stick (dev/sdb1) anymore to /mnt/usb. Then I've tried to set the partition type to vfat, but couldn't identify what is vfat under cgdisk . I've tried different types of "Windows" but whatever I tried, the usb stick won't mount on /mnt/usb.
    Journalctl always says:
    Jan 13 12:23:03 sushi sudo[727]: nihonto : TTY=pts/0 ; PWD=/home/nihonto ; USER=root ; COMMAND=/usr/bin/cgdisk /dev/sdb
    Jan 13 12:23:03 sushi sudo[727]: pam_unix(sudo:session): session opened for user root by nihonto(uid=0)
    Jan 13 12:23:11 sushi sudo[727]: pam_unix(sudo:session): session closed for user root
    Jan 13 12:24:00 sushi su[972]: (to root) nihonto on /dev/pts/0
    Jan 13 12:24:00 sushi su[972]: pam_unix(su:session): session opened for user root by nihonto(uid=1000)
    Jan 13 12:24:18 sushi kernel: loop: module loaded
    Jan 13 12:24:18 sushi kernel: ISO 9660 Extensions: RRIP_1991A
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: FAT-fs (sdb1): bogus number of reserved sectors
    Jan 13 12:24:35 sushi kernel: FAT-fs (sdb1): Can't find a valid FAT filesystem
    Jan 13 12:24:35 sushi kernel: ISOFS: Unable to identify CD-ROM format.
    So I tried it again with cfdisk which nagged about "unsupported GPT" but kept working. This time I choose "0C W95 FAT32 (LBA)" as partition type - maybe this did the trick because in my earlier attempts I did choose "0B W95 FAT32".
    Anyway - after following the advice stated in https://wiki.archlinux.org/index.php/UE … B_from_ISO and installing rEFInd to the usb stick I could boot the usb stick in UEFI mode
    But - as I said earlier - I don't know what did the trick
    Last edited by swordfish (2013-01-13 12:38:18)

  • NEED HELP! - Installing Camera raw presets from USB Stick

    NEED HELP! -installing Camera raw presets from USB Stick.
    I am attempting to install the Camera Raw Presets. 
    It says to put them into User Name/Library/Application Support/Adobe/CameraRaw/Settings... 
    When I get to CameraRaw the ONLY folders in there are CameraProfiles & Lens Profiles. 
    I have searched everywhere looking for a CameraRaw-Settings folder and cannot find one. 
    I have latest version of CameraRaw installed and still no settings folder. 
    I even attempted to find it by looking in camera raw where it has saved the custom settings I made as presets and it shows that they are saved but will not show me where. 
    I am using CS5 specifically Photoshop v12.0.4 and Bridge. I have Lightroom 4. I have iMac OS  10.7.3
    Do I need to reinstall Camera Raw and how do you do that?
    Will I then lose my presets that I made in CameraRaw?  
    Thanks for your help

    Here is a note from the ACR 7.1 beta release.  http://labs.adobe.com/technologies/cameraraw7-1/?tabID=details
    Perhaps this answers question.
    Frequently Asked Questions
    Why is it no longer required to place the plug-in file in the specified directory on my hard drive?
    The Camera Raw update process has grown to include lens profile and camera profile files which are easiest to install via a single installer process instead of updating several different directories manually.

  • OS X Lion USB Thumb Drive can run from usb stick?

    OS X Lion USB Thumb Drive can run from usb stick[no install]?

    Your questions are easily answered by means of a web search, which you can do as well as I can. You can order a Lion installer on a USB stick. I don't know how big it is, and it doesn't matter, because all you can do with that stick is install Lion, which is what you don't seem to want. If you have a Mac and want to be able to run Lion from an external storage device, the capacity of the device has to be at least 7 GB.
    Apple - OS X Lion - Technical specifications
    I hope you understand that if you buy the Lion USB installer with the intention of installing onto a PC, or running Lion on a PC without installing, you'll be wasting your money. It won't work.

  • IMacs can boot Linux or Windows from usb stick

    iMacs 21' can boot Linux or Windows from usb stick? from Firewire 400 or 800 hdd/ssd? from USB HDD/SSD?
    May boot fromCD/DVD/DVDDL in internal DVD DRIVE, too?
    Exist Blu-ray drives able connect on Thunderbolt slot on iMac 21'?

    Here is the memo of the steps I followed. Hope this helps.
    <Create VHD image in temp folder at local drive>
    diskpart
    create vdisk file=C:\Temp\Win2go.vhd maximum=20480 type=fixed
    select vdisk file=C:\Temp\Win2go.vhd
    attach vdisk
    exit
    <Create partition in VHD, format in NTFS and assign drive letter "O">
    diskpart
    list disk
    select disk n (n is a number of VHD)
    clean
    create partition primary
    format fs=ntfs quick override
    assign letter=o
    active
    attribute volume set NODEFAULTDRIVELETTER
    exit
    <Execute "DISM" utility in Windows DVD and extract installer image to VHD>
    G:\sources\dism /apply-image /imagefile:G:\sources\install.wim /index:1 /applydir:O:\
    ** "G" is drive letter for Windows DVD
    ** "O" is drive letter for VHD partition
    <Write boot program into VHD>
    O:\windows\system32\bcdboot O:\windows /f ALL /s O:
    ** "O" is drive letter for VHD partition
    <Detach VHD>
    diskpart
    select vdisk file=C:\Temp\Win2go.vhd
    detach vdisk
    exit
    <Format USB thumb drive in NTFS>
    diskpart
    list disk
    select disk n (n is a number of USB thumb drive)
    clean
    create partition primary
    format fs=ntfs quick override
    active
    exit
    ** "E" is drive letter for USB thumb drive
    <Write loader into boot sector>
    G:\boot\bootsect /nt60 E:
    ** "G" is drive letter for Windows DVD
    ** "E" is drive letter for USB thumb drive
    <Copy VHD file to USB thumb drive and mount>
    copy C:\Temp\Win2go.vhd E:\
    diskpart
    select vdisk file=E:\Win2go.vhd
    attach vdisk
    exit
    <Write boot info into USB thumb drive>
    F:\Windows\system32\bcdboot F:\Windows /s E: /f ALL /v
    ** "E" is drive letter for USB thumb drive
    ** "F" is drive letter for VHD partition on USB thumb drive

  • Portege P3500: It's possible to start from USB-stick?

    Is it possible to start from usb-stick? i have tried to make a bootable usb-stick , and it really worked on my pc at home , but not on the laptop ..bios settings are ok , as far i know (usb-fdd legacy enable , first boot device fdd)
    where is the problem ?

    Try to update bios. Even though it has that option does not mean that it will. Make sure in BIOS that legacy emulation is enabled as well. Then connect your USB and turn on the computer. Go into bios and check to see if your USB keystick is located under boot devices, which it should be. Other then that, you might have installed the boot program wrong. CD's etc have a boot.ini file. Basically an ini means initiate. So boot.ini initiates boot process. If this is configured wrong, or doesnt exist on the boot device you are using, it will not boot from the device even if configured in BIOS.

  • Trouble opening Jar from USB stick on a Mac

    Hi all,
    Has anyone else had any problems running Jar files from a USB stick on a Mac -- directly clicking on them in the finder?
    What I've found:
    - I cannot run any Jar file I try if it is on a USB stick and I double-click on the jar file in my Mac
    - I CAN run jar files from a CD by double-clicking
    - I CAN run jar files from USB sticks on Windows directly from the window
    - I CAN run jar files from a USB stick on a mac if I call "java -jar" directly from the terminal
    I have tried running from USB sticks on several different Macs, and I've tried a number of different Jars that I've created over the years -- nothing works. The Java code isn't doing any path-based finding of files or anything like that.
    Anyone else tried this? Are there any solutions?
    Thanks,
    Sam

    Try this:
    With the stick plugged in, go to Finder->Applications->Utilities->Disk Utility.  From there, you should see your memory stick appear in a sidebar on the left.  Click on it, then click on the "erase" tab and follow the instructions.

  • Kann mir jemand (auf Deutsch) erklären, wie man für photoshop cc die installer-exe auf einen USB-Stick bekommen/downloaden kann. Habe kein Internet.

    Bin z.Z. an einem Fremd-PC. Ich möchte die Trialversion von Photoshop CC gern bei mir zu hause ausprobieren. Dort habe ich aber kein Internetzugang.
    Mein Wunsch wäre also, ps-CC als Installations.exe auf einem USB-Stick zu downloaden.
    Adobe hat mir auf meine Anfrage bis jetzt nur mitgeteilt, dass dies prinzipiell möglich ist. Ich komme aber mit meinen geringen Kenntnissen nicht dahinter, wo/wie ich die
    Installer-exe finden kann.

    ‘DDL’ Articles at ProDesignTools
    Mylenium

  • Can i start mba from usb-stick ?

    hi
    is it possible to start a mba from usb-stick with osX ?
    thanks for response.

    is it possible to start a mba from usb-stick with osX ?
    Yes, if the stick's large enough and formatted as Mac OS Extended (Journaled).
    (53239)

  • How to transfer files from USB stick

    How can you transfer files from USB stick to ipad2?

    Buy a portable wi-fi router with file sharing such as MOCREO 5-in-1 Portable WiFi (not personaly vouching for this one it just happens to be the one I have and it cost less than the apple connection cables).
    Plug your USB stick into the router
    Connect your phone via wi-fi to the router.
    Log into the routers built in file managment or use any FTP capable app to connect (GoodReader, ifiles, etc)
    Transfer files.

  • Howto boot recovery discs from usb stick

    hi.i have t40 and i just bought recovery media(because predesktop area is dead).i tried many ways but i cant afford to boot recovery medias from usb stick.which tool should i use?? i dont have optical drive??

    Hello mate,
    What version of windows are using ? It's possible with windows 7.
    http://forum.lenovo.com/t5/X-Series-ThinkPad-Laptops/Making-a-usb-stick-with-the-Lenovo-recovery-par...
    Knowledge is of two kinds. We know a subject ourselves, or we know where we can find information on it.
    ThinkPad T510 4313-CTO Windows 8 x64 - Intel Core i7-620M - NVIDIA NVS 3100M - 8GB RAM - 240GB SSD- Intel Centrino Ultimate-N 6300 - Gobi 2000.
    ThinkPad Helix 3697-CTO Windows 8.1 x64 - Intel Core i7-3667U - Intel HD Graphics 4000 - 8GB RAM- 256GB SSD - Intel Centrino Advanced-N 6205 - Ericsson C5621gw

  • Can all macbooks boot from usb(stick,hdd) and firewire(hdd) an os: linux, win, mac os x, opensolaris, etc

    Subject: BOOT FROM EXTERNAL STORAGE DEVICE - After this setup properly
    Can all macbooks boot from usb(stick,hdd) and firewire(hdd) an os: linux, win, mac os x, opensolaris, etc?
    what about:
    Apple MacBook Pro MB133LL/A 15.4-inch Laptop(OLD VERSION) (4GB RAM 120G HD 2.33 GHz Core 2 Duo processor, 15.4" Matte Screen, 4GB memory, 120 GB 7200 rpm hard drive) White

    Yes,
    Disconnect everything hooked up to the PC except the keyboard, mouse and monitor.
    Then use this method to flash the BIOS.  It is the safest way to go.
    USB Device BIOS Flashing in DOS
    DOS Flash  (DOSFlash.exe, FlshUefi.cpu) is the DOS-compatible System BIOS flash utility that can be used from a DOS bootable storage device (where "DOS" refers to any of a number of compatible operating systems such as FreeDOS, MS-DOS or DR-DOS). FlshUefi.cpu is the required driver for DOSFlash.exe. To flash the System BIOS from a bootable USB storage device, you will need to copy the contents of the DOS Flash folder to the USB device, boot the PC from the USB device, and execute the DOSFlash application. To see a more complete description of the DOS flash utilities, view DOSFlash.txt located in the DOS Flash folder. This folder also contains the required binary image of the BIOS.  The binary image file is named xxx_MMmm.bin where "xxx" is the BIOS family, "MM" is the major version number, and "mm" is the minor version number.  This file can be copied to the root directory of any USB removable medium for use with the F10 setup "Flash System ROM" option 
    View Contents of DOS Flash Folder
    The links on this post don't work. I copied the section from the BIOS flashing instructions for the specific section you need.
    Paul

  • Boot from usb stick a usb stick OS like Linux

    The below can boot from usb stick a usb stick OS like Linux on stick?
    Apple MacBook MB403LL/A 13.3-inch Laptop (2.4 GHz Intel Core 2 Duo Processor, 2 GB RAM, 160 GB Hard Drive) White
    Apple's Mac OS X 10.5 Leopard operating system can upgraded to Lion? If yes this has any impact in this laptop (Is it best leave like is the Leopard?)?
    memory can upgraded with this[15' or 13' RAM is the same?]:
    Kingston Apple 4GB Kit (2x2GB Modules) 667MHz DDR2 SoDimm iMac and Macbook Memory (KTA-MB667K2/4GR)
    http://www.amazon.com/Kingston-Modules-Macbook-KTA-MB667K2-4GR/dp/B001265GI2/ref =pd_sim_pc_2

    Hmm, when you mean "bootable" are you meaning booting a operating system from the USB to run the computer with?
    Because that's what "booting" means, not mounting, which is what I think you mean.
    I say this is because you mentioned a PC, and a generic PC can't normally boot from a USB with OS X installed without a LOT of extra help of the hacking/breaking software agreement kind which is beyond the capability of most.
    If you mean your USB thumb drive is not mounting or showing up on the computer to trade files, then please tell us how you formatted the USB or if you didn't or not and it's volume size.
    Also if it does have OS X on it, what version and where did you install it from, because it might be lacking the hardware drivers for the other Mac.

  • Booting Arch-ISO from USB-Stick in UEFI mode fails

    Hi there,
    I'm running an Asrock H77M-ITX UEFI mobo. On this system I've already installed Arch on a Samsung 830 SSD (GPT formatted) - but in BIOS legacy mode because I've written the Arch-ISO image with "dd" to an USB-Stick (and UEFI boot mode wasn't even presented at boot).
    Out of curiosity I've re-formatted the stick and copied Arch-ISO following https://wiki.archlinux.org/index.php/Un … B_from_ISO.
    Now I could start the ISO in UEFI mode, but it failed to start gummiboot with the "No loader found. Configuration files in \loader\entries\*.conf are needed." error message, concerning a problem with gummiboot.
    Following some advice on the forum, I did this:
    - install refind-efi 0.4.7-2
    - copy /usr/lib/refind/refindx64.efi to [USB]/EFI/boot and renaming it to bootx64.efi (i.e. replacing the original bootx64.efi from gummiboot)
    - Create a new file in the same directory ([USB]/EFI/boot/) called refind.conf
    - Add this to it:
    textonly
    scanfor manual
    menuentry Arch {
    loader /arch/boot/x86_64/vmlinuz
    initrd /arch/boot/x86_64/archiso.img
    options "gpt loglevel=7 add_efi_memmap none=UEFI_ARCH_x86_64"
    With this I can launch Arch-ISO from the USB-Stick in UEFI mode and I can choose Arch from rEFIND. Then Arch-ISO starts booting but it always stops at the same point with this message:
    sd 6:0:0:0: [sdb] No Caching mode page present
    sd 6:0:0:0: [sdb] Assuming drive cache: write through
    sd 6:0:0:0: [sdb] Attached SCSI removable disk
    ERROR: '/dev/disk/by-label/' device did not show up after 30 seconds ...
    Falling back to interactive prompt
    You can try to fix the problem manually, log out when you are finished
    sh: can't access tty: job control turned off
    [rootfs /]#
    sdb is the USB-Stick from which I start Arch-ISO. Again - I didn't use dd to write the ISO to the stick.
    Maybe this is pretty easy to solve, but I have to admit that I'm somewhat stuck
    Last edited by swordfish (2012-11-19 21:31:43)

    WonderWoofy wrote:See what the difference is between archiso and archboot maybe?  Seriously, have you made any effort whatsoever?
    Of course. Read:
    The "Main Page" ( https://www.archlinux.org/ ) states:
    "You've reached the website for Arch Linux, a lightweight and flexible Linux® distribution that tries to Keep It Simple."
    "Keep It Simple". Yeah!
    In line with that, the "The Arch Way" page ( https://wiki.archlinux.org/index.php/The_Arch_Way ) states:
    "The following five core principles comprise what is commonly referred to as the Arch Way, or the Arch Philosophy, perhaps best summarized by the acronym KISS for Keep It Simple, Stupid."
    The ArchWiki ( https://wiki.archlinux.org/ ) links to several other pages, such as these:
    The "Forum Etiquette" page ( https://wiki.archlinux.org/index.php/Forum_Etiquette ) states under "Ineffective Discussion":
    "Arch is a Do It Yourself community" and "treat others as you would be treated; respect them and their views". I am very much a "do it yourself" person -- that's why I like The Arch Way. I also go by the Golden Rule stated here.
    Now, everyone is a newbie at some time. I and other posters here are obviously newbies with respect to ArchLinux. Even experts were newbies at one time. Newbies, by definition, do not necessarily know what they're doing, or where to find information. Hence, Arch's "Beginners' Guide" and such. Hence, posts on this board from newbies asking for help.
    As regards initial installation of ArchLinux, and consistent with the above, the FAQ ( https://wiki.archlinux.org/index.php/FAQ ), under "Q) Arch needs an installer. Maybe a GUI installer", states:
    "A) Since installation doesn't occur often (read the rest of this article to know more about what rolling release means), it is not a high priority for developers or users. The Installation Guide and Beginners' Guide have been fully updated to use the command-line method. If you're still interested in using an installer, consider using Archboot."
    So the basic installation instructions explicitly state that Archboot is not needed.
    The "Installation Guide" ( https://wiki.archlinux.org/index.php/Installation_Guide ) says nothing about either Archboot or Archiso.
    The "Beginners Guide" ( https://wiki.archlinux.org/index.php/Beginners%27_Guide ) says nothing about either Archboot or Archiso.
    The "Archboot" page ( https://wiki.archlinux.org/index.php/Archboot ) is consistent with the above information, because it states:
    "Archboot is a set of scripts to generate bootable media for CD/USB/PXE.
    It is designed for installation or rescue operation."
    The "Archiso" page ( https://wiki.archlinux.org/index.php/Archiso ) states:
    "Archiso is a small set of bash scripts that is capable of building fully functional Arch Linux based live CD and USB images. It is a very generic tool, so it could potentially be used to generate anything from rescue systems, install disks, to special interest live CD/DVD/USB systems, and who knows what else."
    So the pages describing both Archboot and Archiso clearly state that these tools are oriented towards already-existing installations -- even though it seems that they might be used, in certain circumstances, for initial installations.
    I happen to be very new at playing around with installing Linux distros (although I've used Unix/Linux as a regular user for more than 30 years), and am brand new with respect to ArchLinux. I only began playing with it this past Saturday. So I would expect a bit of useful help as opposed to "RTFM!" I will soon get past the need to RTFM for basic tasks, but I have a way to go.
    The fact is that for me and a number of other new ArchLinux users, the installation guides simply do not work. C.f. my post https://bbs.archlinux.org/viewtopic.php?id=153170 . I've done a lot of googling as well as searching the archives on this board, and others have come up against the same show-stopping installation problems that I have. I and others have posted to several recent threads on this board, trying to get past the problems, so far with no success.
    Now, the.ridikulus.rat had written:
    "You guys are using Archboot's kernel options for Archiso. Thats the issue in both the cases."
    Given that neither of these sets of scripts were used by me or swordfish, this comment is not useful.
    Given the above, can you or anyone else tell us what Archiso or Archboot might do to help us with our installation problems? Also, can you tell us how we, as newbies, ought to have found out how these might help?
    Alan

  • LR2 - MacOS: installation and/or running from USB stick

    I am user of LR2
    I wonder if it is possible:
    1) to copy the installation CD to an USB drive and start installation from there (MacBook Air)
    2) to install LR2 onto USB drive and run from the memory stick (USB)
    3) allowed to install 1x on iMac at home and install 1x on laptop computer (Macbook Air) for use when not home
    Thanks for your feedbacks and (if available) links to further resources in above topics!
    Daniel

    As to #1, why don't you just download a fresh copy of 2.7 from the Adobe web site onto your MacBook? That would save you a bunch of figuring out how to create a USB stick to install from. Load it from here
    I suspect Ian is right about #2, that you won't be able to do it.
    #3: no problem. You're allowed two installed copies--you aren't supposed to run them at the same time.
    Hal

Maybe you are looking for

  • How do I remove an e.mail account off my iPhone 5c please.

    How do I remove an incorrect e.mail address from my iPhone 5c please

  • "The iTunes Library file cannot be saved. you do not have. You do not have

    when adding songs to the library, I receive this message ""The iTunes Library file cannot be saved. you do not have. You do not have enough access priviledges for this operations" Any tips?

  • HASHMAP IN STRUTS!!!!!!!

    I am working with hashmap in the file .java and it passage to the jsp page. The problem is that I don't know how they treat hashmaps in struts. I have fact this: <% pageContext.setAttribute("edadesSexo", dto.get("edades")); %> <logic:iterate id="dtoi

  • Duplicate Problems (RMAN is looking at the wrong backup)

    We are running into a problem when we try to duplicate our database. Here is the process we use to duplicate: delete old backup files (we only use RMAN for cloning so we don't need them) set prod db environment variables<run rman connect target sys/#

  • Solman SPS13 installation problems

    Hi All, I'm getting some errors trying to install SPS13 on solman abap stack. Linux redhat4 Oracle 10.2 solman sp10 When importing queue from SPAM, I got errors in test_import phase: SAPKIPYJ7D  PI_BASIS 2005_1_700:PATCH 0013 version 372.04.04.700 fu