linux 权限不够的问题

一:linux下拷贝文件的时候出现权限不够,如何解决 

  首先是ctrl+alt+t 打开一个终端。 然后运行命令 sudo nautilus 。

  就可以打开一个具有管理员权限的文件管理器啦。

  然后就可以在不切换到管理员的条件下拷贝文件啦。

 

二:linux系统执行命令报错:无法运行命令 权限不够 解决办法

最近在用linux系统的时候,有几次碰到这种问题,在网上找到答案,特别转载一下:

在用命令行执行一个后台监控的可执行文件时出现了如下提示:

[root@promote 桌面]# nohup /etc/nginx_check.sh
nohup: 忽略输入并把输出追加到"nohup.out"
nohup: 无法运行命令"/etc/nginx_check.sh": 权限不够

或:

[root@promote 桌面]# nohup /etc/nginx_check.sh
nohup: ignoring input and appending output to `nohup.out'
nohup: failed to run command `/etc/nginx_check.sh': Permission denied


此问题说明在执行可执行文件nginx_check.sh时没有权限,此时的解决方法是使用命令:chmod +x /etc/nginx_check.sh
次命令执行之后再执行 nohup /etc/nginx_check.sh & 此时执行结果如在下:
[root@ip-**-**-**-** tomcat6]# nohup: ignoring input and appending output to `nohup.out`

[1]+  Exit 2 nohup /etc/nginx_check.sh
[root@promote 桌面]# 
此时nginx_check.sh文件已被执行成功!

 

三:linux终端权限不够问题

 sudo su

此时会提示我们输入密码,我们将我们账户的登录密码输入敲回车即可,当你在终端下看到你的账户前面出现了 root@你的账号:/# 类似这样的就表示已经是root账号最操作权限了,其实细心的朋友会发现两个变化,一个是root@...,一个是:/$变为了:/#,

 

posted @ 2022-04-27 12:03  mkmkbj  阅读(8078)  评论(0编辑  收藏  举报