ifconfig -a
, then we will only see the loopback interface. Those. even with the option in /etc/rc.conf MOD_AUTOLOAD="yes"
necessary modules are not loaded. So you have to manually assemble the network card module.
#mount /dev/sdb1 /mnt/
#cp /mnt/__l1e-linux-v1.0.1.0.tar.gz /home/atl1e/( )
#tar -xzvf /home/atl1e/l1e-linux-v1.0.1.0.tar.gz
#cd /home/atl1e/src/
#KBUILD_NOPEDANTIC=1 make
#insmod ./atl1e.ko
#ifconfig -a
and see that the interface eth0 has appeared. If you have already correctly edited rc.conf (here are meant options related to network configuration), then you can raise the network.
#/etc/rc.d/network restart
.
#ifconfig eth0
command for assigning an ip-address and UP status.
#ping www.ru
#ping www.ru
Ping went, the Internet is. Hooray! :)
#pacman -Syu
. The package databases will be synchronized and the installer will ask you to update Pacman itself. We agree. Now we are running the #pacman -Su
and full package synchronization will start. We are going to drink coffee (or something else) while 125 MB of updates are being downloaded. And, when all packages are downloaded - terrible will happen.
klibc: /usr/lib/klibc/include/asm/Kbuild exists in filesystem
........
klibc: /usr/lib/klibc/include/asm/xor_64.h exists in filesystem
Errors occurred, no packages were upgraded.
#rm /usr/lib/klibc/include/asm
and run #pacman -Su
. Now the system will be normal.
#pacman -S abs
#abs
#useradd -m -s /bin/bash greenday( greenday , %username%)
#passwd greenday
#pacman -S sudo
#visudo
/etc/sudoers
file. In the file that opens, add an entry of the form USERNAME ALL=(ALL) ALL
#EDITOR=nano visudo
.
#pacman -S mc
[greenday @ gremlin ~] $ mkdir ~ / src /
[greenday @ gremlin ~] $ cd ~ / src /
[greenday @ gremlin src] $ wget http://aur.archlinux.org/packages/eeepc904-kernel/eeepc904-kernel.tar.gz
[greenday@gremlin src]$ tar xzvf eeepc904-kernel.tar.gz
[greenday@gremlin src]$ cd ./eeepc904-kernel/
[greenday@gremlin eeepc904-kernel]$ makepkg
.
$ sudo pacman -U eeepc904-kernel-2.6.27.4-4-i686.pkg.tar.gz
.
/boot/grub/menu.lst
, adding the following lines to it:# (2) Arch Linux
title Arch Linux EeePC kernel
root (hd0,0)
kernel /vmlinuzeee root=/dev/sda3 ro
Source: https://habr.com/ru/post/44504/