九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
gentoo系統(tǒng)安裝記錄

這里是最直接的安裝方法,官方文檔:

http://www.gentoo.org/doc/zh_cn/handbook/handbook-x86.xml

 

可能你會(huì)遇到個(gè)不爽的問題:

grub-install --no-floppy /dev/sda 時(shí)候

 

end_request: I/O error, dev fd0, sector 0
end_request: I/O error, dev fd0, sector 0
Buffer I/O error on device fd0,logical block 0

 

可能你等了很久會(huì)有反應(yīng),但是那樣很不爽,這樣吧,Ctr+C終結(jié)

nano /boot/grub/device.map

在列表中刪除fd0

 

 

下面?zhèn)浞菀幌掳惭b過程:

 

Bash代碼  
  1. # 配置網(wǎng)絡(luò)環(huán)境  
  2. ifconfig eth0 192.168.0.150 netmask 255.255.255.0 up  
  3. route add default gw 192.168.0.1  
  4. echo nameserver 192.168.0.253> /etc/resolv.conf  
  5. echo nameserver 192.168.0.254 >> /etc/resolv.conf  
  6.   
  7. # 看是否能通  
  8. ping -c 3 www.gentoo.org  
  9.   
  10. # 修改root密碼  
  11. passwd  
  12. # abc123 abc123  
  13.   
  14. #啟動(dòng)  
  15. /etc/init.d/sshd start  
  16.   
  17. # ssh遠(yuǎn)程,如果不方便原機(jī)器操作  
  18.   
  19.   
  20. #=========================================================================  
  21.   
  22. # 分區(qū)  
  23. fdisk /dev/sda  
  24.   
  25. # Disk /dev/sda: 999.7 GB, 999653638144 bytes  
  26. # 255 heads, 63 sectors/track, 121534 cylinders  
  27. # Units = cylinders of 16065 * 512 = 8225280 bytes  
  28. # Disk identifier: 0x698ef8db  
  29.   
  30.    Device Boot      Start         End      Blocks   Id  System  
  31. /dev/sda1               1          14      112423+  83  Linux  
  32. /dev/sda2              15         276     2104515   83  Linux  
  33. /dev/sda3             277        9729    75931222+  83  Linux  
  34.   
  35. #=========================================================================  
  36.   
  37. # 格式化  
  38. mkfs.ext3 /dev/sda1  
  39. mkswap /dev/sda2  
  40. mkfs.ext3 /dev/sda3  
  41.   
  42. # 激活交換分區(qū)  
  43. swapon /dev/sda2   
  44.   
  45. # 掛載分區(qū)  
  46. mount /dev/sda3 /mnt/gentoo  
  47. mkdir /mnt/gentoo/boot  
  48. mount /dev/sda1 /mnt/gentoo/boot  
  49.   
  50. scp lighttpd@192.168.0.129:/home/lighttpd/stage3-i486-20100413.tar.bz2 .  
  51. scp lighttpd@192.168.0.129:/home/lighttpd/portage-20100413.tar.bz2 .  
  52. # links http://www.gentoo.org/main/en/mirrors.xml  
  53. # 下載 /pub/gentoo/releases/x86/current-iso/stage3-i686-20091006.tar.bz2   
  54. # 下載 /pub/gentoo/releases/x86/current-iso/stage3-i686-20091006.tar.bz2.DIGESTS   
  55. # 下載 /pub/gentoo/releases/snapshots/current/portage-latest.tar.bz2  
  56. # 下載 /pub/gentoo/releases/snapshots/current/portage-latest.tar.bz2.md5sum  
  57. # 解壓  
  58. mv stage3-i486-20100413.tar.bz2 /mnt/gentoo/  
  59. mv portage-20100413.tar.bz2 /mnt/gentoo/  
  60. cd /mnt/gentoo  
  61. tar xvjpf stage3-i486-20100413.tar.bz2  
  62. tar -xvjf portage-20100413.tar.bz2 -C /mnt/gentoo/usr  
  63.   
  64. #=========================================================================  
  65.   
  66. mirrorselect -i -o >> /mnt/gentoo/etc/make.conf  
  67.   
  68. #=========================================================================  
  69.   
  70. mirrorselect -i -r -o >> /mnt/gentoo/etc/make.conf  
  71.   
  72. #=========================================================================  
  73. # 拷貝DNS信息  
  74. cp -L /etc/resolv.conf /mnt/gentoo/etc/  
  75.   
  76. # 掛載/proc和/dev文件系統(tǒng)  
  77. mount -t proc none /mnt/gentoo/proc  
  78. mount -o bind /dev /mnt/gentoo/dev  
  79.   
  80.   
  81. # chroot到新環(huán)境里  
  82. chroot /mnt/gentoo /bin/bash  
  83. env-update  
  84. source /etc/profile  
  85. export PS1="(chroot) $PS1"  
  86.   
  87. #更新Portage樹  
  88. emerge --sync  
  89. # 如果系統(tǒng)警告你有一個(gè)新版本的Portage可用,你可以使用emerge --oneshot portage來更新它。  
  90.   
  91. eselect profile list  
  92. # 切換profile  
  93. eselect profile set 6  
  94.   
  95. #=========================================================================  
  96. nano -w /etc/locale.gen  
  97. {  
  98. en_US ISO-8859-1  
  99. en_US.UTF-8 UTF-8  
  100. zh_CN GB18030  
  101. zh_CN.GBK GBK  
  102. zh_CN.GB2312 GB2312  
  103. zh_CN.UTF-8 UTF-8   
  104. }  
  105. #=========================================================================  
  106. # 運(yùn)行l(wèi)ocale-gen。它會(huì)產(chǎn)生所有你在/etc/locale.gen文件里指定的locale。   
  107. locale-gen  
  108.   
  109.   
  110. 編輯全局變量  
  111. # nano -w /etc/env.d/02locale  
  112. {  
  113. LANG="en_US"  
  114. LC_CTYPE="zh_CN.UTF-8"  
  115. }  
  116.   
  117. env-update && source /etc/profile  
  118.   
  119. 修改系統(tǒng)語言  
  120. locale  
  121. export LANG=en_US  
  122. export LC_CTYPE=zh_CN.UTF-8  
  123. locale  
  124.   
  125. # 7.a. 時(shí)區(qū)  
  126. cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime  
  127.   
  128. # 安裝內(nèi)核源碼  
  129. # 如果有內(nèi)核源碼就不用下面的命令來下載了  
  130. emerge gentoo-sources  
  131.   
  132. cd /usr/src/linux  
  133. make menuconfig  
  134.   
  135.   
  136. # 編譯內(nèi)核  
  137. make && make modules_install  
  138.   
  139. cp arch/i386/boot/bzImage /boot/kernel-2.6.30-gentoo-r6  
  140.   
  141. # 8. 配置系統(tǒng)  
  142. nano -w /etc/fstab  
  143. # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.  
  144. {  
  145. /dev/sda1               /boot           ext3            defaults,noatime        1 2  
  146. /dev/sda3               /               ext3            noatime                 0 1  
  147. /dev/sda2               none            swap            sw                      0 0  
  148. #/dev/cdrom              /mnt/cdrom      auto            noauto,user             0 0  
  149. }  
  150.   
  151. # 設(shè)定主機(jī)名  
  152. nano -w /etc/conf.d/hostname  
  153. # Set to the hostname of this machine  
  154. HOSTNAME="gentoo_0"  
  155.   
  156. nano -w /etc/conf.d/net  
  157. {  
  158. modules=( "ifconfig" )  
  159.   
  160. config_eth0=( "192.168.0.150 netmask 255.255.255.0 brd 192.168.0.255" )  
  161. routes_eth0=( "default via 192.168.0.1" )  
  162. }  
  163.   
  164. # 添加net.eth0到默認(rèn)的運(yùn)行級別  
  165. rc-update add net.eth0 default  
  166.   
  167. # 設(shè)置root密碼  
  168. passwd  
  169.   
  170. # 必要安裝系統(tǒng)日志工具  
  171.   
  172. emerge syslog-ng  
  173. rc-update add syslog-ng default  
  174.   
  175. # 可選:Cron守護(hù)進(jìn)程  
  176. emerge vixie-cron  
  177. rc-update add vixie-cron default  
  178.   
  179. # 可選:文件索引  
  180. emerge slocate  
  181.   
  182. # 實(shí)用工具  
  183. emerge usbutils  
  184. emerge pciutils  
  185. # USE="-gtk" emerge evms  
  186.   
  187.   
  188. # 配置引導(dǎo)程序  
  189. # 安裝GRUB  
  190. emerge grub  
  191. # 創(chuàng)建/boot/grub/grub.conf  
  192. nano -w /boot/grub/grub.conf  
  193. {  
  194. default 0  
  195. timeout 30  
  196. #splashimage=(hd0,0)/boot/grub/splash.xpm.gz  
  197.   
  198. title Gentoo Linux 2.6.32-gentoo-r7  
  199. root (hd0,0)  
  200. kernel /boot/kernel-2.6.32-gentoo-r7 root=/dev/sda3  
  201. #kernel /boot/kernel-2.6.30-gentoo-r6 root=/dev/sda3 video=uvesafb:mtrr:3,ywrap,1024x768-32@85  
  202.   
  203. title Gentoo Linux 2.6.32-gentoo-r7 (rescue)  
  204. root(hd0,0)  
  205. kernel /boot/kernel-2.6.32-gentoo-r7 root=/dev/sda3 init=/bb  
  206.   
  207. }  
  208.   
  209. # 創(chuàng)建/etc/mtab  
  210.  grep -v rootfs /proc/mounts > /etc/mtab  
  211. # 執(zhí)行g(shù)rub-install ,可能會(huì)遇到問題:nano /boot/grub/device.map 刪除fd0,這是一個(gè)已知的BUG  
  212. grub-install --no-floppy /dev/sda  
  213.   
  214.   
  215. # 卸載所有分區(qū)和重啟  
  216.   
  217. exit  
  218. cd  
  219. umount /mnt/gentoo/boot /mnt/gentoo/dev /mnt/gentoo/proc /mnt/gentoo  
  220. reboot  
     
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Gentoo安裝全過程(U盤 光盤&minimal+xorg(nvidia(ati&&intel))+xfce(gnome&&kde))(綜合整理)
U盤安裝Gentoo指南
硬盤方式安裝Pentoo
Gentoo Linux 快速安裝方法安裝
dd批量安裝系統(tǒng)
新手安裝Xentoo(Xen Gentoo)的極速體驗(yàn)
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服