1. 建立脚本文件lowering the mapped_base in Linux
降低linux进程的mapped_base。这步需要用shell修改进程的mappend_base。
步骤如下:
1)创建一个shell脚本,假设叫/usr/bin/lower_mapped_base.sh,脚本内容如下:
#/bin/sh
echo 运行是提示的值 > /proc/$PPID/mapped_base
2)修改脚本的属性
分别执行如下命令:
chown root.root lower_mapped_base.sh
chmod 755 lower_mapped_base.sh
3)授权,使其他用户可以通过sudo执行该脚本
echo "用户名 ALL=NOPASSWD: /usr/bin/lower_mapped_base.sh" >> /etc/sudoers
或者直接编辑/etc/sudoers文件
1、先改文件权限chmod a+w /etc/sudoers
2、加入 lotus用户名 ALL=NOPASSWD: /usr/bin/lower_mapped_base.sh保存
3、把sudoers文件权限改回来chmod a-w /etc/sudoers
4)让LOTUS用户登录时自动执行脚本
在LOTUS用户下执行:
echo "sudo /bin/lower_mapped_base.sh" >> ~/.profile(跟据你所使用的SHELL不同编辑不同文件)
或者直接编辑~/.profile文件,假如下面这一句:
sudo /usr/bin/lower_mapped_base.sh
阅读(849) | 评论(0) | 转发(0) |