Refer to the Arch website wiki:https://wiki.archlinux.org/index.php/beginners%27_guide
In front of the U-disk image production, the system uses archlinux-2014.08.01-dual.iso/x86_64 (an ISO image file supports both 32-bit and 64-bit architecture ), now the latest image should be 2014.09.03, Downloads
Booting using the traditional bios/legacy mode , in contrast to the UEFI boot mode is better than the bios/legacy mode, but the setup is cumbersome, so do not use.
Establish a network connectionsince arch requires a networked installation, you must first establish a network connection Setup will automatically run  
DHCPCD & nbsp; Daemon to try a wired connection. Can be used  
ping & nbsp; To check if they are connected.
Ping-c 1 t.cn
PING t.cn (180.149.135.224) (+) bytes of data.64 bytes from 180.149.135.224:icmp_seq=1 ttl=128 time=6.31 ms---t.cn PI NG Statistics---1 packets transmitted, 1 received, 0% packet loss, time 0msrtt Min/avg/max/mdev = 6.315/6.315/6.315/0.000 Ms
The connection is normal, if 100% packet loss orPing:unknown Host, the network is not through, you need to manually configure the network
Determine the wired and wireless interfaces
IP link
The wired interface is usually the e-start, the wireless is usually the W start
jun% IP link1:lo: <LOOPBACK,UP,LOWER_UP> MTU 65536 qdisc noqueue State UNKNOWN mode default group default link/ Loopback 00:00:00:00:00:00 BRD 00:00:00:00:00:002:ENP1S0: <BROADCAST,MULTICAST> MTU qdisc NoOp State down mode Default group default Qlen link/ether 28:d2:44:34:f4:d2 brd ff:ff:ff:ff:ff:ff3:wlp2s0: <broadcast, Multicast,up,lower_up> MTU Qdisc MQ State up mode dormant group default Qlen link/ether a4:db:30:bf:aa:a8 BRD FF:FF:FF:FF:FF:FF
Enp1s0 is my wired interface, WLP2S0 is the wireless interface. Wired ConnectionDisable the Auto-open DHCPCD service:
Systemctl Stop DHCPCD
To activate the Wired Interface (ENP1S0):
IP link Set enp1s0 up
Add address/route:
IP addr Add IP address/subnet mask Dev Interface name
<span style= "LINE-HEIGHT:19.0499992370605PX; Font-family:sans-serif; " >ip route add default via IP address </span>
Edit /etc/resolv.conf Replace your domain name server IP address and local domain name as follows:
Nano/etc/resolv.conf
Wireless NetworkwithNetctlof the
wifi-menuto connect to the network:
Wifi-menu Wlp3s0
Because the bootstrap usesbios/legacy mode isChooseMaster Boot Record(MBR) as a partition table type.
If you want to install the entire disk system, you can erase the partition table
Sgdisk--ZAP-ALL/DEV/SDA
Because my own memory is 8G, so my partition scheme (in 64GSSD) is 20G/partition, leaving the/home partition
Linux Learning _arch Installation and configuration