第一步,安装git: 在root下创建git用户,设置密码: [root@VM-0-14-centos ~]# useradd git [root@VM-0-14-centos ~]# passwd git 给git用户设置sudo权限: [root@VM-0-14-centos ~]# vi /e ...
分类:
其他好文 时间:
2020-10-19 22:18:53
阅读次数:
19
sudo 通过sudo,我们能把某些超级权限有针对性的下放,并且不需要普通用户知道root密码(sudo用的不是root密码,而是当前用户密码),所以sudo相对于权限无限制性的su来说,还是比较安全的,所以sudo也能被称为受限制的su,另外sudo是需要授权许可的,所以也被称为授权许可的su。 ...
分类:
系统相关 时间:
2020-03-26 19:30:29
阅读次数:
135
when normal user want to use admin privilledge, error message: " user is not in the sudoers file. This incident will be reported." Add an existed user ...
分类:
系统相关 时间:
2020-03-08 09:37:53
阅读次数:
84
ubuntu用户相关 (下面的命令一般需要加sudo或切换到root账户下!) useradd -m newusername 添加新用户 passwd username 添加或修改密码 userdel -r username 删除用户(不加-r删不干净) whoami 查看当前登入的用户 su us ...
分类:
系统相关 时间:
2020-02-13 13:04:13
阅读次数:
98
一:设置静态IP (一)进入配置页面 (二)设置手动配置,IP,子网掩码,网关,DNS解析 1.使用ifconfig查看IP网络地址和子网掩码 网络地址192.168.58.X,子网掩码255.255.255.0 2.使用netstat -rn查看网关信息 (三)配置静态IP (四)网络服务重新启动 ...
分类:
系统相关 时间:
2020-02-12 18:43:35
阅读次数:
98
线上系统安装——最小化安装 策略:仅安装需要的,不安装不需要的 开发包,基本网络包,基本应用包 selinux 一般为关闭状态,为软件的运行提供安全 ,应用级别的安全 一般都是关闭的,因为很多应用都是不符合selinux 的安全策略的命令行先关闭+修改文件(重启生效) [root@VM_0_10_c ...
分类:
其他好文 时间:
2020-01-13 23:30:41
阅读次数:
99
if you are upset with sudo password, add this line in /etc/sudoers xxxxxx ALL=(ALL) NOPASSWD: ALL (xxxxxx is your login name) sudo will not ask anymor ...
分类:
其他好文 时间:
2019-12-25 20:43:44
阅读次数:
85
环境 centos7 一、gogs安装 这里采用git用户,实际我是用root 安装在/usr/local/gogs下的 1、添加用户,设置sudo,查看内核版本信息,确认架构,下载相应的安装包 useradd git #添加用户 vim /etc/sudoer git ALL=(ALL) NOPA ...
分类:
其他好文 时间:
2019-12-25 12:54:30
阅读次数:
125
一、添加和root权限一样的用户 1、 adduser admin passwd admin (修改密码) 2、修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示 vim /etc/sudoers ## Allow root to run any commands ...
分类:
系统相关 时间:
2019-12-23 19:16:19
阅读次数:
132
这个关于权限修改的博客到处都是,但是本文主要是针对,配置文件修改过了之后,普通用户还是不能进行创建文件进行的操作。 修改权限,主要是去/etc/sudoers下面进行修改 1.切换到root用户 命令: su 2.给root添加sudoers文件的写权限 命令: chmod 777 /etc/sud ...
分类:
系统相关 时间:
2019-12-17 18:27:36
阅读次数:
158