在Linux centaOS上长出现的一些问难题

CentOS 7 Installation in Virtualbox + Guest Addition Installation
https://www.youtube.com/watch?v=NPHUB59MgEo

问题一:
sudo:

xxx is not in the sudoers file. this incident will be reported.

解决方法:
当在终端执行sudo命令时,系统提示“cuser is not in the sudoers file”:

$ sudo ls
Password:
cuser is not in the sudoers file. This incident will be reported.
(cuser是用户名)

其实就是没有权限进行sudo,解决方法如下(这里假设用户名是cuser):

1.切换到超级用户:$ su

2.打开/etc/sudoers文件:$vi /etc/sudoers

3.修改文件内容:

找到“root ALL=(ALL) ALL”一行,在下面插入新的一行,内容是“cuser ALL=(ALL) ALL”,然后在vi键入命令“wq!”保存并退出。

注:这个文件是只读的,不加“!”保存会失败。

4.退出超级用户:$ exit

问题二:
Cannot find a valid baseurl for repo
没联网
156

First you need to get connected, AFAIK CentOS 6 minimal set your network device to ONBOOT=No, just do a dhclient with admin privileges to your network interface and you should be up and running:

$ sudo dhclient

DONE

发布了8 篇原创文章 · 获赞 5 · 访问量 3405

猜你喜欢

转载自blog.csdn.net/G1011/article/details/91127688