You are not logged in.

#1 2012-07-24 19:52:09

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

[SOLVED]New Arch Linux ISO Installation Help.

Hi All,

I am trying to install Arch Linux using new ISO. For some reason I am unable to log into Arch Forums on Windows and I am writing this on my tablet. I will add more info (proper quote, etc.) as soon as I am able to log in a laptop browser. That being said I am trying to install Arch using new ISO. Here is what I did.

Partition using cfdisk /, /home , /swap and /boot.
Format all these in ext4.
Create folders in mnt - root, home, swap, boot.
mount partitions in mnt folders.
Pacstrap /mnt base base-devel

Error
ERROR: /mnt is not a mount point!

I install in /mnt/root which probably doesnt touch other partitions like home boot and swap.

I follow other steps on installation wiki and reboot takes me back to windows.

What am I doing wrong?

Thanks.

Last edited by donniezazen (2012-07-24 22:49:01)

Offline

#2 2012-07-24 20:03:30

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

Re: [SOLVED]New Arch Linux ISO Installation Help.

donniezazen wrote:

Partition using cfdisk /, /home , /swap and /boot.
Format all these in ext4.
Create folders in mnt - root, home, swap, boot.

You don't need a root folder. /mnt is the root mount point. Before you mount boot and home:

mount /dev/sdax /mnt

where "x" is the number of your /root partition.

then

mkdir /mnt/boot
mount /dev/sdax /mnt/boot
mkdir /mnt/home
mount /dev/sdax /mnt/home

(replace "x" in all the /dev/sdax with the correct partitions.)

Error
ERROR: /mnt is not a mount point!

you should have stopped here and posted or tried to figure out what you did wrong.

The edited Beginner's Guide is very clear about this. You should read it.

Last edited by 2ManyDogs (2012-07-24 20:09:24)

Offline

#3 2012-07-24 20:10:24

DSpider
Member
From: Romania
Registered: 2009-08-23
Posts: 2,273

Re: [SOLVED]New Arch Linux ISO Installation Help.

If rebooting takes you back to Windows, it means that you didn't install a bootloader; else the bootloader's menu would've shown up. I think you just used pacstrap to install the grub-bios or syslinux package, but didn't ran any of their commands to install one of them.

This step isn't complete without this step (which comes after the "arch-chroot /mnt" part).


"How to Succeed with Linux"

I have made a personal commitment not to reply in topics that start with a lowercase letter. Proper grammar and punctuation is a sign of respect, and if you do not show any, you will NOT receive any help (at least not from me).

Offline

#4 2012-07-24 22:23:10

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: [SOLVED]New Arch Linux ISO Installation Help.

Thanks 2ManyDogs and DSpider.

Wiki wasn't updated back then and I was throwing arrow in a wrong direction. I used updated wiki and everything is fine.

I am a little confused about CONSOLEFONTS AND FONTMAP in vconsole.conf. What console fonts and font map should I be using for a regular English US Keyboard?

Offline

#5 2012-07-24 22:37:01

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

Re: [SOLVED]New Arch Linux ISO Installation Help.

https://wiki.archlinux.org/index.php/Be … and_keymap

guide wrote:

KEYMAP
The available keymaps are in /usr/share/kbd/keymaps. Please note that this setting is only valid for your TTYs, not any graphical window managers or X.
FONT
Available alternate console fonts reside in /usr/share/kbd/consolefonts/. The default (blank) is safe.
FONT_MAP
Defines the console map to load with the setfont program at boot. Possible maps are found in /usr/share/kbd/consoletrans, if needed. The default (blank) is safe.
Example:

KEYMAP=us
FONT=lat9w-16
FONT_MAP=8859-1_to_uni

so this works for US:

KEYMAP=us
FONT=
FONT_MAP=

If you have an existing Arch install, you can always look in rc.conf and see how it's defined there.

Last edited by 2ManyDogs (2012-07-24 22:42:11)

Offline

#6 2012-07-24 22:48:37

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: [SOLVED]New Arch Linux ISO Installation Help.

Thanks.

Marking it solved.

Offline

#7 2012-07-24 23:01:48

silentsnake
Member
Registered: 2012-02-23
Posts: 57

Re: [SOLVED]New Arch Linux ISO Installation Help.

Maybe something else to add:

Don't make ext4 (or any other general purpose filesystem) on your swap partition. Use mkswap /dev/sdx to create the swap filesystem, and swapon /dev/sdx to use it, if you will need it during the installation. (Not likely.)

Offline

#8 2012-07-24 23:08:37

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: [SOLVED]New Arch Linux ISO Installation Help.

Yep, Silentsnake. OP is grossly wrong. I followed the latest wiki and everything worked fine.

Offline

Board footer

Powered by FluxBB