Installing Arch using larch-8 from LiveCD to HD

Hi there,
as you can see from the subject, my problem is so, so easy... but really, I can't understand how to do it. What I supposed to do? Using larchin-archin? I can't find 'larchin' on my LiveCD, neither from terminal.
For the rest, my LiveCD distro works fine, really fine... I love it, I want it on my HD I can do whatever you want, I can format the whole disk, install arch and then copy all my folders from the CD, I really don't know: I read the documentation, I read topics on this forum... sorry for the newbieness of that question
Thank you in advance

Maybe you should read more carefully and slowly
Installation to hard disk
The larch hard-disk installer [b]larchin[/b] may be used to install Arch Linux to hard disk (or similar). ***+ Or, at least it will be possible to use it when I have updated (rewritten?) it for larch-8. -*** [b]larchin deals with partitioning and formatting of hard drives, placing Arch Linux (primarily a copy of the live system on which it is running) on the newly formatted partitions, and installation of a bootloader.[/b]
As mentioned above the main approach to Arch installation covered by larchin is to copy the contents of the live system to a hard drive. Those (few) bits peculiar to the needs of a live system are removed and the result is a completely normal Arch Linux installation. I should perhaps mention the file 'delarch' in the 'larch/data' directory on the boot medium). This script (if it exists) is run at the end of the installation and allows custom installation actions to be performed (the main reason for its existence is to allow features of the live system to be removed, because they would be out of place in a normal installation).
'Live' installation to hard disk
This is sometimes called a 'frugal' install and means that the system as it is (compressed, running in an aufs file-system) on the USB-stick or CD is installed as a live system to a hard-drive partition. This might be useful if you want to run from a flash device, for example, as it minimizes write operations to the device (normal access is read only). This is actually no different from copying a larch system to a USB-stick, so the normal copying procedure can be used.
You should see the config inside your profiles, also the overlay options before you can do an install to HDD.

Similar Messages

  • Where can I download Adobe Acrobat 9 pro, so I can install it using my SN from Adobe CS 4?

    Bought Adobe CS 4 on DVD few years ago and want to install the Adobe Acrobat 9 pro out of it now on my new Win8 Samsung Ativ Smart Tablet.
    -> My question: Where can I download Adobe Acrobat 9 pro, so I can install it using my SN from Adobe CS 4?
    Thanks

    Thank you, but unfortunately it the link to the download of Acrobat 9 doesn't work. I just got the following error:
    Access Denied
    You don't have permission to access "http://trials2.adobe.com/Applications/Acrobat/APRO/9/trials/AcroPro90_efg.exe?" on this server.
    Reference #18.2cd2f3d4.1380300612.455f7f0

  • Can I install arche in "safe" way from other worki

    Can I install arche in "safe" way from other working distro?
    Like Debootstrap for example.
    I don't like regular install that I don't have control of the installation procees and It work as root alone so It's need very careful in the partition level.
    It is possible?

    Lone_Wolf wrote:Check Install_Arch_from_within_another_distro
    I want to install again arch but now there isn't pacman.static.
    What should I do?
    Solved:
    I install pacman and libdownload and now I can install with normal pacman
    Last edited by nadavvin (2008-08-19 17:12:16)

  • [SOLVED]How exactly do you install Arch using UEFI?

    I want to switch my laptop to UEFI. I have a few questions I'd like to ask.
    * Does UEFI require a bios boot partition?
    * If not but I add a bios boot partition and efi partition is it true I can boot into my system both with UEFI enabled and not enabled?
    Will the following set my laptop to use UEFI?
    Create a partition scheme as follows;
    1. bios boot -- about 2mb -- ef02
    2. efi boot partition -- about 200mb (is this size about right?) -- fat32
    3. root -- 8300
    4. swap
    5. home -- 8300
    Then when I mount everything I make sure to mount the efi partition like
        mount /dev/sda2 /mnt/boot/efi
    It goes to /boot/efi right?
    Then when installing GRUB, I install it like;
        grub-install --efi-directory=/boot/efi --bootloader-id=grub_uefi --recheck
    And finally I'd run the
        grub-mkconfig -o /boot/grub/grub.cfg
    Is that the gist for the most part?
    Last edited by stevenmw (2014-12-18 17:51:37)

    Here is what I did,
    I booted Arch install media (not from UEFI).
    I made my partition scheme is gdisk:
      1. 2M -- ef02 -- BIOS boot
      2. 500M -- ef00  -- efi
      3. 30G -- 8300 -- root
      4. 12G -- 8200 -- swap
      5. 195G -- 8300 -- home
    I then did my mkfs:
      mkfs.ext2 /dev/sda2
      mkfs.fat -s2 -F32 /dev/sda2
      mkfs.ext4 /dev/sda3
      mkswap /dev/sda4
      mkfs.ext4 /dev/sda5
    When I first made my file extensions I made the mistake of not making the efi partition fat32. I knew it had to be fat32 and I wasn't sure if just making it ef00 was enough. So I searched Google. I didn't find much so I pushed forward.
    I eventually got an error when trying to do grub-install, it said /dev/sda2 does not look like and efi partition.
    So I thought about it, was it the size I chose, was it that I was just putting it in /boot, was it not fat32? I immediately decided it must not be fat32. And I was right. After a search I discovered I needed to do mkfs.fat. So I did this and success! Grub installed everything where it needed to be. (So it is true when they say Arch doesn't care if you have /boot/efi or /boot/EFI. Just using /boot is enough. That is fact.)
    But now I had another error. I forgot to install efibootmgr package... By this time I thought I had it so I started all over. This was actually my laptop so I wasn't going to give it more than two tries. So I started from scratch. A second and final try...
    I set up my partition scheme, did my mk stuff, and mounted all of my filesystems. Then Installed the base and base-devel packages. I went into arch-chroot on /mnt and then into a bash..
    I went through a couple of basic setup things and then I installed grub and efibootmgr. I then ran
        grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=grub_uefi --recheck
    Hooray! No errors reported! I checked /boot and everything was there and laid out perfectly!
    So I did the grub-mkconfig..... And rebooted.
    But it wouldn't boot!
    I started to dig around the Arch wiki and read it is a good idea to start out in UEFI mode and go into the  install media and proceed. So I tried this in a VM. The Arch install media would not start in UEFI mode. So I just came to the conclusion that there is something I am missing. Either in GRUB or something I don't understand about my laptop.
    I installed Fedora 21 in a VM out of UEFI mode and then again where I started out in UEFI mode. Starting out in UEFI mode did seem to make a difference. I just gave up on my laptop and installed it back with bios and no UEFI. I'm going to dig around and see if I can find what I'm doing wrong.
    Could it boil down to not being able to start out in UEFI mode and then switch back into UEFI mode after install? I highly doubt it. There is just something I'm missing..
    Marking this as solved. Thanks everyone.
    Edit:
    Starting out in UEFI mode made the difference! I just wasn't being patient with my VM. Starting out in UEFI mode and then performing the install makes the difference! After following that process I can boot into Arch using UEFI!
    Also, I mentioned I couldn't get Arch install media to start in UEFI. That was my fault. When i created my usb i didn't make it a UEFI bootable device! So I would go into my boot options and I would see UEFI but my usb only showed in the legacy list.
    Last edited by stevenmw (2014-12-18 20:47:57)

  • How to install Vista using product key from bottom of Satellite P200?

    Hello all,
    I recently had to replace my HDD as my P200 had a fatal error, corrupting all data on the old HDD. I have no recovery discs at all, (None were supplied), and wondered how i am supposed to re-install Vista using my product key from the bottom of the laptop? Can anybody give any kind of assistance please?
    As i have been reading other related threads i get the impression that i need to approach Toshiba and buy a recovery CD, at my expense. Is this correct?
    Thanks
    Lee

    Hi
    As far as I know the serial key which is placed at the bottom of the unit would not work with other Vista versions! the key belongs to the OEM Vista version preinstalled by Toshiba.
    As mentioned by Jeka, you will need to order an recovery disk or will need to use an clean Vista CD with an own serial key purchased previously.
    Greets

  • Install Arch using mobile broadband.

    Hey! Is it possible to install Arch Linux using a mobile broadband? If it is, how do I do it?
    I tried to modprobe usbserial but it wasn't found, can I get the module before the installation?
    Thanks for reading, Pics.

    Yes and no.
    Yes: ppp is on the installer CD, but nobody seems to know how to work with it. Try this and/or this.
    No: wvdial is not on the installer CD.
    Workaround: Put wvdial and wvstreams on a USB stick.
    There's been some discussion about inclusion of wvdial on the installer: http://mailman.archlinux.org/pipermail/ … 14388.html
    Last edited by schivmeister (2010-10-13 23:19:23)

  • [SOLVED] Larch Installation from LiveCD

    Hej!
    Today I finally succesfully created a LiveCD from a running Arch System. Because I want to migrate my installation to another partition and of course to check out whether the livecd is functional I tried to install my customized archlinux to hdd. Using larchin for that, I get the following error message after pressing the ok button:
    This error couldn't be handled
    Traceback (most recent call last):
      File "/home/mt/larch/larch5.3/larchin/pkg/opt/larchin/modules/gtk/guimain.py", line 252, in changed_cb
        mainWindow.setStage(s)
      File "/home/mt/larch/larch5.3/larchin/pkg/opt/larchin/modules/gtk/guimain.py", line 161, in setStage
        self.mainWidget = stages[stagename].Widget()
      File "/home/mt/larch/larch5.3/larchin/pkg/opt/larchin/modules/stages/finddevices.py", line 57, in __init__
      File "/home/mt/larch/larch5.3/larchin/pkg/opt/larchin/modules/stages/finddevices.py", line 79, in getDevices
    ValueError: need more than 1 value to unpack
    Having found a bug report on http://www.bugs.maryanlinux.com/showreport.php?bugid=3 and having seen it mentioned once here in the forum I don't see a fast solution for this issue. So I'm wondering if there is another way to install the system? What about the installer used for the official installation-images of archlinux? Or maybe some other trick or something I don't see?
    thanks in advance
    Last edited by calle (2009-03-27 00:16:44)

    cat /proc/partitions delivers:
    8        0   40146624 sda
       8        1     248976 sda1
       8        2   17382330 sda2
       8        3    2000092 sda3
       8        4   20515005 sda4
       8       16  244198584 sdb
       8       17  167405301 sdb1
       8       18   34186320 sdb2
       8       19   26852647 sdb3
       8       20   15751732 sdb4
       7        0     534840 loop0
       7        1          4 loop1
    fdisk -l gives:
    Platte /dev/sda: 41.1 GByte, 41110142976 Byte
    255 Köpfe, 63 Sektoren/Spuren, 4998 Zylinder
    Einheiten = Zylinder von 16065 × 512 = 8225280 Bytes
    Disk identifier: 0xb267b1ca
       Gerät  boot.     Anfang        Ende     Blöcke   Id  System
    /dev/sda1               1          31      248976   83  Linux
    /dev/sda2              32        2195    17382330   83  Linux
    /dev/sda3            2196        2444     2000092+  82  Linux Swap / Solaris
    /dev/sda4   *        2445        4998    20515005    7  HPFS/NTFS
    Platte /dev/sdb: 250.0 GByte, 250059350016 Byte
    255 Köpfe, 63 Sektoren/Spuren, 30401 Zylinder
    Einheiten = Zylinder von 16065 × 512 = 8225280 Bytes
    Disk identifier: 0x000f2f85
       Gerät  boot.     Anfang        Ende     Blöcke   Id  System
    /dev/sdb1               1       20841   167405301   83  Linux
    /dev/sdb2           26146       30401    34186320   83  Linux
    /dev/sdb3           22803       26145    26852647+   b  W95 FAT32
    /dev/sdb4           20842       22802    15751732+  83  Linux
    Partitionstabelleneinträge sind nicht in Platten-Reihenfolge
    and parted -l gives me:
    Modell: ATA Maxtor 6E040L0 (scsi)
    Festplatte  /dev/sda:  41,1GB
    Sektorgröße (logisch/physisch): 512B/512B
    Partitionstabelle: msdos
    Nummer  Anfang  Ende    Größe   Typ      Dateisystem  Flags
    1      32,3kB  255MB   255MB   primary  ext2             
    2      255MB   18,1GB  17,8GB  primary  ext3             
    3      18,1GB  20,1GB  2048MB  primary  linux-swap       
    4      20,1GB  41,1GB  21,0GB  primary  ntfs         boot
    Modell: ATA SAMSUNG HD250HJ (scsi)
    Festplatte  /dev/sdb:  250GB
    Sektorgröße (logisch/physisch): 512B/512B
    Partitionstabelle: msdos
    Nummer  Anfang  Ende   Größe   Typ      Dateisystem  Flags
    1      32,3kB  171GB  171GB   primary  ext3             
    4      171GB   188GB  16,1GB  primary  ext3             
    3      188GB   215GB  27,5GB  primary  fat32             
    2      215GB   250GB  35,0GB  primary  ext3             
    Warnung: Kann /dev/sr0 nicht zum Schreiben öffnen (Das Dateisystem ist nur
    lesbar). /dev/sr0 wurde nur lesbar geöffnet.
    Fehler: /dev/sr0: unrecognised disk label
    I hope you can deal with the german pidgin inbetween, sorry.
    I'm not trying to install on a fresh disk though. /dev/sda2 is the partition I want to install to.
    I will mind posting future larch-questions in the above mentioned post, thanks for the hint.
    another question:
    I alternatively created another livecd using the archiso scripts, which perfectly worked too. But now I'm looking for a way to modify the archlinux-installer scripts to fit my needs; that is creating config-files fitting for me (e.g. rc.conf with german locales, proper hostname, daemons etc.) and especially for installing the packages i'd like to have installed (like xorg, a desktop environment, whatever programs i like) with predefined configurations (e.g. xorg.conf, desktop-settings, firefox-extensions and so on), so that i can simply run /arch/setup from the livecd as usual but end up with a properly configured system i can start working with right away. Does perhaps anyone know of any further resources i might refer to?
    thanks for your help so far

  • [SOLVED] Trying to install Arch Linux from harddisk using /dev/sda2

    Hi
    I'm trying to install Arch using my swap partition, following this wiki entry: https://wiki.archlinux.org/index.php/Ha … stallation
    What I've done:
    Downloaded ISO: archlinux-2010.05-netinstall-i686.iso
    Command: swapoff /dev/sda2
    Command: fdisk /dev/sda and changed the system type to 83 (Linux) on /dev/sda2
    Now it looks like:
    Command (m for help): p
    Disk /dev/sda: 250.1 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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
    Disk identifier: 0x00017e5b
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 1060289 530144+ 83 Linux
    /dev/sda2 1060290 3164804 1052257+ 83 Linux
    /dev/sda3 3164805 105579179 51207187+ 83 Linux
    /dev/sda4 105579180 488392064 191406442+ 83 Linux
    It complained about device was busy, but it still seemed to have changed the system type, so I did partprobe as it wrote.
    WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
    The kernel still uses the old table. The new table will be used at
    the next reboot or after you run partprobe(8) or kpartx(8)
    Syncing disks.
    [root@swamp ~]# partprobe
    <no output>
    Next I did:
    [root@swamp ~]# dd if=archlinux-2010.05-netinstall-i686.iso of=/dev/sda2
    327680+0 records in
    327680+0 records out
    167772160 bytes (168 MB) copied, 4.3025 s, 39.0 MB/s
    [root@swamp ~]# mkdir /mnt/sda2
    [root@swamp ~]# mount /dev/sda2 /mnt/sda2
    mount: warning: /mnt/sda2 seems to be mounted read-only.
    [root@swamp ~]# ls -al /mnt/sda2
    total 150466
    dr-xr-xr-x 3 root root 240 May 16 15:54 .
    drwxr-xr-x 6 root root 4096 Nov 5 01:40 ..
    dr-xr-xr-x 3 root root 556 May 16 15:52 boot
    -r--r--r-- 1 root root 448 May 16 15:54 isomounts
    -r--r--r-- 1 root root 8192 May 16 15:54 overlay.sqfs
    -r--r--r-- 1 root root 154058752 May 16 15:54 root-image.sqfs
    And unmounted it again.
    The wiki page says to type: fsck -f /dev/sda2fsck, but I get no such file while trying to open sda2fsck.
    [root@swamp ~]# fsck -f /dev/sda2fsck
    fsck from util-linux-ng 2.18
    e2fsck 1.41.12 (17-May-2010)
    fsck.ext2: No such file or directory while trying to open /dev/sda2fsck
    The superblock could not be read or does not describe a correct ext2
    filesystem. If the device is valid and it really contains an ext2
    filesystem (and not swap or ufs or something else), then the superblock
    is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
    Can I ignore the above and continue modifying grub?
    Thanks :-)
    Last edited by valvet (2010-11-08 14:49:07)

    fsck -f /dev/sda2fsck makes no sense because /dev/sda2fsck is not a deivce. If the wiki says that, then it is wrong. It's only doing a fsck anyway so probably not really needed. If you are just formatting th swap partition then use, mkfs.ext{234}.
    edit:
    from the wiki
    # fsck -f /dev/sda2fsck 1.40.8 (13-Mar-2008)
    e2fsck 1.40.8 (13-Mar-2008)
    Pass 1: Checking inodes, blocks, and sizes
    Pass 2: Checking directory structure
    Pass 3: Checking directory connectivity
    Pass 3A: Optimizing directories
    Pass 4: Checking reference counts
    Pass 5: Checking group summary information
    /dev/sda2: ***** FILE SYSTEM WAS MODIFIED *****
    /dev/sda2: 243/78936 files (8.2% non-contiguous), 310519/314880 blocks
    The first like should just be
    # fsck -f /dev/sda2
    Last edited by sand_man (2010-11-05 06:46:01)

  • Install Arch on five clients using ssh?

    Hi all,
    We are trying to install arch on five machines using ssh for our clusters lessons, using VirtualBox. We have arch installed on a machine called "Master" and from this we are using PXE server to load Arch (core) iso on the clients. PXE runs fine but for our purpose we have some troubles.
    First of all, we need to boot arch directly, without "Options screen" (screen where you can choose between Load arch, load another OS, reboot, etc...), we NEED to boot arch without user intervention. Then, we need to run up ssh server automatically (maybe parsing any option on PXE config file). And the last issue is to login on client machine as root.
    If we run sshd and allow to connect giving permissions on /etc/hosts.allow file and then try to login on client from Master as root, we can't do this because root has no password but ssh requieres it, this is a problem.
    In short, we need at least to solve this problems:
    * Load arch image directly, skipping load screen.
    * Run sshd on startup and allow access
    * Be able to login as root from our "Master" machine
    Any idea of that? We are thinking about to make an image of our Master machine and use it to offer with PXE, but I think this is a bad idea because client machines has not partitions and our fstab file will try to mount filesystems and this is a problem.
    Thanks for your help, god will be grateful for it and kill no more kittys and sorry for the brick!
    Last edited by Sepho (2010-12-02 20:56:27)

    OK after my 4th attempt, i got it
    My initial situation
    fdsik -l (GPT table format)
    Gerät boot. Anfang Ende Blöcke Id System
    /dev/sda1 1 26 204819+ ee GPT
    /dev/sda2 26 36747 294963432 af HFS / HFS+
    /dev/sda3 * 61682 77826 129678336 7 HPFS/NTFS
    /dev/sda4 36747 61438 198331055 83 Linux
    So, I had Ubuntu running on sda4 (ext4).
    What I did
    1. Installed rEFIT on Mac OS X, and after two reboots it showed up.
    2. In the rEFIT menu, Synchronized with the Partition tool my MBR and GPT table.
    3. Opened Gparted on an ubuntu live cd, in order to format my ext4 partition
    4. Installed Arch using the normal installation procedure, but I skipped the partitioning section, I did only the file system mountpoints step, selecting my sda4 partition.
    5. Installed grub (not grub2) on /dev/sda, the mbr (not /dev/sda4), and activated the windows section in menu.lst
    6. After reboot, I selected from rEFIT the Windows logo (linux logo doesn't work), through the windows logo i get in the standard grub menu, where I can select Windows or Arch!
    Now I'll remove rEFIT and boot trough normal mac os x's bootcamp tool. (if you select windows you get in the grub menu)
    Hope this helps someone!

  • Impossible to install arch in UEFI mode on my Acer Aspire S3-391

    Hi there,
    I am trying to install arch-linux on my Acer Aspire S3-391, which came with a pre-shipped Windows 8. I am trying to make a dual boot, so I would like to keep the UEFI mode at startup. However, my computer won't boot on the Arch Linux USB Flash drive when in UEFI mode : when plugged in, the key prevents the computer from loading anything. The "Acer" page keeps on reloading itself, without even letting me access the BIOS menu (In other words, the computer is blocked at "POST" phase when the installation media of arch is plugged in).
    Here's what I did to try and solve the problem  :
    1) of course, I disabled Secure Boot and hibernation in Windows 8.
    2) tried to boot in legacy bios. It works, and i could install arch this way : but as told before, i would like to install it in UEFI mode.
    3) Checked, re-checked and re-rechecked the installation media.
    4) tried to install Ubuntu in UEFI mode. It worked : the bootable key of Ubuntu was loaded, when the bootable key of arch is blocked. Why ? No idea...
    5) Installed Ubuntu, and tried to install Arch in UEFI mode from Ubuntu, following the tutorial "Install_from_Existing_Linux". No luck here : i was blocked at step "Testing if you are booted into UEFI mode" on the beginner's guide : I was not, and I couldn't find any solution in the tutorial.
    Any suggestions on what I should try next ?

    If you've already installed in BIOS/CSM/legacy mode, my recommendation is to install your EFI-mode boot loader and try it out. You'll need to use something else that does boot (such as Ubuntu), install the boot loader using the Windows bcdedit command (assuming you're dual-booting), or install the boot loader as EFI/BOOT/bootx64.efi (if you're setting up for Linux alone) to get it to work, though.

  • [SOLVED] Wiki page for GPT disks and booting arch using UEFI

    Hi guys, I am new to archlinux. I installed archlinux x86_64 just yesterday and I like its customisability. I also like arch wiki. Nowhere else have I seen such extensive documentation, especially about things like HAL, UDEV etc. with proper instructions. Thanks to all archers.
    I have installed Archlinux x86_64 in my Dell India Studio 1537 laptop along with Windows 7 Professional x64. Both the OSes boot in UEFI-GPT setup (my UEFI is tianocore.sourceforge.net EDK DUET UEFI64 firmware booting from USB). I boot Archlinux using my own compiled grub2-bzr compiled for both BIOS and UEFI-x64. I have a 1 MB BIOS Boot Partition as required by grub2 for BIOS-GPT booting. My Archlinux system can boot both from bios and from uefi, while Windows can boot only using UEFI.
    The official Archlinux installation guide talks about only MBR (or msdos disklabel) partitions and booting from BIOS based systems. With 2TB drives becoming common place and UEFI being implemented (search for Phoenix SecureCore Tiano's 1 second POST operation), I think a proper wiki page describing differences between MBR and GPT, why GPT is better, how to setup arch to boot from GPT. Another page describing steps to setup arch to boot from UEFI (either as a separate page or as an extension of GRUB2 wiki page) is also needed.
    Some details regarding Pure GPT (not a Hybrid GPT/MBR setup) and/or UEFI setups :-
    Partitioning tools -
    GNU Parted for filesystem related tasks
    GPT fdisk tool - http://rodsbooks.com/gdisk/ , http://sourceforge.net/projects/gptfdisk/ ,  pacman -S gdisk (in extra repo) - for non-filesystem related tasks
    util-linux-ng fdisk does not support GPT disks
    Bootloader - GRUB2 - vanilla grub-legacy does not support GPT and does not support UEFI (Fedora's patched grub-legacy does support both GPT and UEFI) and syslinux does not support GPT (I may be wrong here - seems a gptmbr of syslinux does help in booting from gpt but not sure).
    For GRUB2 - Need BIOS Boot Partition to embed GRUB2's core.img in GPT disks - size about 1 MB max - no filesystem
    In GPT fdisk partition type code - EF02
    In GNU Parted or GParted - bios_grub flag on
    For UEFI-GPT booting this special partition is not needed as no embedding takes place. This is needed only in case of BIOS-GPT booting.
    Incase of custom kernel configuration - enable CONFIG_EFI_PARTITION for GPT support
                                                                        CONFIG_EFI for UEFI support (for UEFI even above option required)
                                                                        CONFIG_EFI_VARS for UEFI Runtime Variables support (optional)
    Note: Although GPT is part of UEFI specification, a UEFI system is not needed to boot from/use GPT. BIOS based GPT booting is possible with GRUB2 or Fedora's patched grub-legacy (but not vanilla grub-legacy provided by archlinux). It is also possible to boot Linux in UEFI-MBR setup (again using grub2) but I have not tried it.
    Even without UEFI and less than 2TB harddrives, GPT based partitioning has many advantages - secondary GPT header and Partition table, CRC32 checksums. Unique Disk GUID and Filesystem-independent Unique Partition GUIDs, multiple primary partitions (default is 128 partitions, but it can be changed). The only problamatic OS is Windows which does not allow GPT booing unless one has UEFI based system. It allows only UEFI-GPT or BIOS-MBR setups. In linux it just depends on how the bootloader is configured - not a problem with grub2.
    I also propose that incase of Auto-prepare Hard Drive, the installer default to GPT for "archlinux only" installs ( ie no dual-boot or triple-boot etc.).
    I did not use the official archlinux iso but used archboot 2010.04 R3 as it gave an option of installing to GPT and also provided GRUB2 during bootloader install. I have never edited any wiki page before, thats why I request some one else to start a wiki page with the information given above.
    I don't know whether this is the right place, but any Windows (Vista or 7 x64 versions) and Linux dual-boot user who has UEFI-based system with GPT partitioning and wants to get rid of Hybrid MBR setup (to boot Windows) can follow this post http://www.insanelymac.com/forum/lofive … hp/t186440 (outside this forum) - this link describes the way to make Windows boot natively in UEFI-GPT setup. After doing this one can install arch using GRUB2 compiled for UEFI x86_64, and Windows will also see
    Last edited by skodabenz (2011-01-30 19:32:48)

    Welcome to arch, skodabenz! Offering documentation on third post - all thumbs up
    You could start the wiki page in your user-space with what you have, and then invite others to join working on it. Just register a wiki account, navigate to the page you want to start, for example:
    http://wiki.archlinux.org/index.php/User:skodabenz/GPT
    and click on "edit this page".
    As noted in the other thread, arch's legacy grub is patched for gpt support. I don't know about UEFI, but you can always open a bug report asking for the patches from fedora to be included.
    edit: the page from Rod Smith is a great resource. I was absolutely terrified at first by all this screwed up GPT/MBR stuff when I tried triple-booting Arch, Win and OS x, but he really does a great job explaining what it is all about.
    Last edited by hokasch (2010-05-21 15:44:08)

  • Installing arch without usb or cd

    Hey all,
    I'm trying to install arch using only my hd, is this possible?
    So far I made a small partition, put the install media on there using dd and tried to boot it using grub(v2).
    I however, don't know anything about grub, and I didn't get it to boot, so how do I go about this?
    Thanks a lot for your time!

    In answer to the thread title (without regards to your post) Two techniques come to mind.  Remove the drive, put it on another system, install Arch to the drive on that other system, and move the drive back.  The other solution is to use a PXE environment (assuming your system can boot from a network), and set up a DHCP server and a TFTP server on another computer and boot as a thin client.
    With regards to your post, how did you get grub and the iso image on to the drive without a usb or cd?  Does grub come up at all? Or does the BIOS carp about not having a boot media?  Is it a  BIOS machine or EFI?

  • Install Arch Linux with UEFI and GPT

    Hi, I purchased a new laptop and I created a partition with Windows 8 (default OS on laptop) and another partition where I want to install Arch Linux.
    When I tried to install Arch Linux not boot from CD. After searching in Google I downloaded the latest Arch Linux ISO (2012-12-01) and tried again.
    This time CD started without problems but when I used cfdisk showed an error with GPT partition. I went back to search in Google and I read about gdisk and gfdisk and I try it but when I partitioning to install Arch Linux partition show that may cause damage. I searched and searched without success and I wonder if there is a Arch Linux GPT install guide or if someone knows how to install Arch Linux with GPT and a Windows 8 partition in UEFI.
    Thanks and regards.

    Hi again, finally I got "install" Arch Linux but when I reboot the follow message appears:
    "No Booteable Device, Hit any key."
    I don't know if I broke Windows Boot Manager, UEFI or both...
    I tried to reinstall GRUB but was unsuccessful.
    Can anyone help me?
    Thanks and regards.

  • [solved[KERNEL PANIC ARCH-3.4.4-2] can not boot Arch from liveCD (x64)

    i have somes problems with several apps and want to fresh installed Arch.
    my current file system:
    i use: gpt, lvm2, luks, grub2.
    /dev/sda1: bios partition
    /dev/sda2: boot partition
    /dev/sda3: lvm partition (var, usr, usr-local,....home...)
    i keep partition structure (cause i want to keep home directory without damage, it's contain my data).
    but when i try to boot from livecd to reinstall Arch, this proccess can't be done.
    this is output:
    mounting: /bootmnt/arch/any/repo-core-any-sys/....
    mounting: /bootmnt/arch/x64/.....
    I/O error on device sr0, logical block
    buffer I/O error on device sr0, logical block
    SQUASHFS error: .....
    end_request: I/O error, device sr0, sector ....
    kernel panic_not syncing: attempted to kill init !
    pid: 1 comm: init Not tainted 3.0 - ARCH #1
    call trace:
    [<fffffffffffffffff812ae6al] panic+0xa0/0x1ad
    [<fffffffffffffffff...............] do_exit ...
    [.....................................] do_group_exit ...
    [.....................................] get_signal_to_diver....
    and caps lock  & scroll lock blink.
    any ideas?
    thanks for reply !
    EDIT: i tested /dev/sr0 and the result:
    sudo mount /dev/sr0 /mnt
    mount: /dev/sr0 is write-protected, mounting read-only.
    Last edited by angelfalls (2012-07-13 17:09:56)

    Yeah that's what I meant. Try to burn a new cd at a slower speed. When the new one is done create a hashsum of the new burn and compare it to the iso you used to burn it with. I only say this because a few times in the past when I had sr0 errors while booting live cds it was because the disk was messed up and I had to burn it again.

  • How to install Arch from hard drive?

    Hello
    I have an old laptop - Pentium II 266 MHz, 128Mb RAM and I want to install Arch on it.
    The problem is that there is no way to boot from this laptop -> floppy is broken, CD drive is not bootable, no available boot options from BIOS to boot from PXE or USB.
    So, I found this link useful (but not enough).
    I have done everything as described on the upper link, but on the final step 7 I don't know how to proceed.
    What I have got is:
    Arch installation CD is in the CD drive.
    After loading vmlinuz26 and archiso.img (which is RAM Disk or initrd) it shows this message: "waiting 30 seconds for device /dev/disk/by-label/"
    And another message: "ERROR: boot device didn't show up after 30 seconds" and after that it put me in the ramfs prompt.
    I try this in ramfs prompt, but without success:
    1. ln -s /dev/sr0 /dev/archiso
    2. exit (and try again)
    What I want is to tell the installer that it must proceed with the installation files on my CD drive.
    But how to do that?
    If it is not possible, then how could I install Arch on this old laptop? Is there any other methods to try?
    PS: There is Windows 2000 and Windows 98 installed on this laptop, but I want to install Arch on it. The whole hard drive is one partition.
    Last edited by clovenhoof (2011-08-09 06:49:48)

    Try either of the following:
    * Add archisolabel=LABEL to the kernel line in menu.lst, where LABEL is the filesystem label of the partition where the ISO resides.
    * Add archisodevice=/dev/sdaX to the kernel line in menu.lst, where sdaX should be replaced with the partition where the ISO resides.
    [Edit]
    Hmmm, sorry I think I was wrong. With the above, you need also extract the ISO, put the arch/ directory at the root of the partition.
    Alternatively, you can put the ISO to the root of that partition, and add img_dev=/dev/sdaX and img_loop=foo-bar.iso. For details, see:
    https://projects.archlinux.org/archiso.git/tree/README
    BUT even if it loads, I don't think you will be able to install Arch on the same partition since it's mounted readonly to /bootmnt, (unless, you explicitly add copytoram to the kernel line, in which case, everything is copied to RAM, but since the machine has got only 128MB of RAM, this is not gonna happen). So, you need to put the ISO (or the extracted squashfs images) to a different partition than your target installation partition...
    There probably are other things I'm missing... Gotta say this sounds quite challenging.
    [Edit2]
    Bah! Try archisodevice=/dev/sr0 then!
    Last edited by lolilolicon (2011-08-09 07:48:17)

Maybe you are looking for

  • How do I create a variable that uses Previous() and references itself.

    I am trying to create a crosstab with a number of meaures in it. I have a variable called opening stock and another called closing stock. The opening stock for day 2 is the closing stock for day 1 and is a variable [LV Opening Stock] defined as =Prev

  • What is static used for?

    May i know what is the meaning of "static" in java term? when should i use them and whjy should i use them?

  • Why are style overrides rejected by preflight

    I have done four volumes of a set for a client and on number 5, ID has decided that all of my style overrides are unacceptable. Because the client wants each word in the indigenous language to be bold italics and each word in Spanish to be italics, I

  • DNG conversion fail and Photoshop will not open my NEF files (Newbie question)

    Two part question. First, I just recently installed photoshop CS4 to my (windows vista) computer and I go to upload NEF photos to bridge and I check the box that says "Convert to DNG" and when it finishs uploading it says "Files successfully copied,

  • Dbus-daemon 100% cpu usage

    I'm using  Bus Daemon 1.6.8 with gnome 3.6. kernel 3.6.6-1-ARCH x86_64. I find that dbus-daemon is using 100% cpu always. How can I fix this? similar problem arised in kde an year ago https://bbs.archlinux.org/viewtopic.php?id=112451