Raspberry pi

1# @Time : 2020-04-17 2# @Language: Markdown 3# @Software: VS Code 4# @Author : Di Wang 5# @Email : [email protected] Raspberry pi Some memo during the usage of Raspberry Pi Linux Kernel How to obtain the kernel config options ? https://superuser.com/questions/287371/obtain-kernel-config-from-currently-running-linux-system sudo modprobe configs cat /proc/config.gz | gunzip > running.config less running.config Using a proxy vim /etc/environment 1export http_proxy="http://yourproxy:prot" 2export https_proxy="https://yourproxy:prot" 3export no_proxy="localhost, 127.0.0.1" Then run sudo visudo, add below line: ...

April 17, 2020 · 1 min · 82 words · DW