Ubuntu Rockchip的相关

Ubuntu Rockchip的相关

April 23, 2024

https://github.com/Joshua-Riek/ubuntu-rockchip 大佬的项目 https://github.com/Joshua-Riek/ubuntu-rockchip/issues/544 对于现在编译 密码错误和没有网络的解答

IP无法获取IP,执行sudo dhclient即可解决问题

如果你需要临时或临时更改IP地址,可以使用 ifconfig 或 ip 命令(在某些系统中可能需要安装 net-tools 包):

ifconfig eth0 172.16.16.5 netmask 255.255.255.0
sudo ifconfig eth0 192.168.1.10 netmask 255.255.255.0
或者使用 ip 命令:

sudo ip addr add 192.168.1.10/24 dev eth0
sudo ip route add default via 192.168.1.1

设置代理

export http_proxy=http://172.16.16.7:10809

SOCKS(4/5) 如果代理服务使用SOCKS4/SOCKS5协议,基于SOCKS的配置如下:


git config --global http.proxy http://172.16.16.7:10809

git config --global https.proxy http://172.16.16.7:10809

git config --global http.proxy socks5://172.16.16.7:10808
git config --global https.proxy socks5://172.16.16.7:10808

代理配置操作完后, 可以通过 git config –global -l 来查看完整的全局配置

git config --global -l

要取消代理配置可以使用 –unset 选项.



git config --global --unset http.proxy
git config --global --unset https.proxy