- 配置网络
根据上一篇中的内容,如果是台式机那么此时已经可以联网了则跳过此步骤,如果是笔记本则需要配置无线网络
步骤如下:
创建 WIFI配置文件 /etc/wpa_supplicant/wpa_supplicant.conf 内容如下
The below line not be changed otherwise wpa_supplicant refuses to work ctrl_interface=/var/run/wpa_supplicant Ensure that only root can read the WPA configuration ctrl_interface_group=0 Let wpa_supplicant take care of scanning and AP selection ap_scan=1 Simple case: WPA-PSK, PSK as an ASCII passphrase, allow all valid ciphers network={ ssid="这里填写WIFI名称" psk="这里填写WIFI密码" priority=5 } 解锁WIFI并启用WIFI` `注意:wlo1为本机wifi端口,具体名称以自己的笔记本为主,查看 ls /sys/class/net
Tag: nvidia
msi双显卡intel&nvidia笔记本电脑安装Gentoo
前几天,在更新Gentoo的时候因为显示管理器的原因无法正常登录桌面,同时也在去年的几次更新中将系统设置管理器搞的乱七八糟,近段时间更是报错,无法正常安装主题等插件,还有就是之前因为调试安装许多应用软件时,系统里安装的包太多,许多无用的包还记不清是哪个,数量太多,于是干脆重新进行了新的安装。
本次安装时参考了几个帖子,综合后这一次比较完美的一次性解决了许多后续的安装配置问题,并将近一年以来的安装经验汇总罗列,如果有新手看到此篇文章时尽量避坑。
安装Gentoo是一个相当耗费时间以及电费的过程,主要时间都会花在编译各种软件上,完成基本系统的安装需要大约1天的时间,从基本系统再到安装配置完KDE Plasma桌面又大约需要1天,前后均需共计2天的时间,如果再有因为电脑配置较低、CPU功率较低、网络缓慢等其它原因的话,前后时间可达3-4天,因此建议用零碎的时间先看完这篇文章,了解Gentoo的安装过程。 Continue reading "msi双显卡intel&nvidia笔记本电脑安装Gentoo"
Gentoo xorg.conf
Gentoo我的xorg.conf配置文档,双显卡:INTEL核显+NVIDIA独显
Section "ServerLayout" Identifier "layout" Screen 0 "nvidia" Inactive "intel" EndSection Section "Device" Identifier "nvidia" Driver "nvidia" BusID "01:00:0" Option "RegistryDwords" "EnableBrightnessControl=1" EndSection Section "Screen" Identifier "nvidia" Device "nvidia" Option "AllowEmptyInitialConfiguration" EndSection Section "Device" Identifier "intel" Driver "modesetting" BusID "00:02:0" EndSection Section "Screen" Identifier "intel" Device "intel" EndSection