@Rico
2016-12-12T09:19:39.000000Z
字数 1104
阅读 2097
Linux
cat /etc/issue
查看位数
getconf LONG_BIT
其他
cat /proc/version
uname -a
useradd 用户名
回车
passwd 用户名
回车 会提示你输入新密码
这是如果切换到这个用户执行一些sudo权限的命令会提示你 权限不够,不在 sudoers 文件中
这时我们切换到root用户然后编辑/etc/sudoers
文件
root ALL=(ALL) ALL
新的用户名 ALL=(ALL) ALL
说明:格式为(用户名 网络中的主机=(执行命令的目标用户) 执行的命令范围)
这样新用户就可以执行一些sudo权限的命令了
su 用户名
YUM代理设置
编辑/etc/yum.conf,在最后加入
# Proxy
proxy=http://username:password@proxy_ip:port/
也可以使用proxy_username
和proxy_password
来配置代理的用户名和密码
这样的配置完成后,所有的用户在使用yum时,都会使用代理,可以说是全局代理。
如果需要为单独的用户配置代理,可以在用户的~/.bash_profile
中设置。
Wget的代理设置
编辑/etc/wgetrc
,在最后加入
# Proxy
http_proxy=http://username:password@proxy_ip:port/
ftp_proxy=http://username:password@proxy_ip:port/
系统全局代理
如果需要为某个用户设置一个系统级的代理,可以在~/.bash_profile
中设置:
http_proxy="http://username:password@proxy_ip:port"
如果没有用户名密码
http_proxy="http://proxy_ip:port"
export_http_proxy
上面的设置只对某个用户生效,如果要对所有系统用户生效,写在/etc/profile
中就可以了。
vi /etc/resolv.conf
加入
nameserver 114.114.114.114
nameserver 8.8.8.8
设置网关
vi /etc/sysconf/network-scripts/ifcfg-eth0
添加
GATEWAY=192.168.59.2
或者 使用命令设置
route add default gw 192.168.59.2
确保路由表正常
netstat -rn
确保可用DNS解析
grep hosts /etc/nsswitch.conf
输出
hosts: files dns