linux 下文件只能读不能写或者运行的解决
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
鄙人从邮箱下载一份C++文件放到/mnt/CPP/tree/tree1(可执行文件),head.h,tree.cpp三个
一开始很天真
cd mnt/CPP/tree
vim head.h
写完一段
esc+:wq
发现只可读不能写
后来发现需要用
chmod go+rw/rx filename
来改变权限
一开始仅仅在普通用户下改变权限,发现还是只可读
后来知道需要su root
进入超级用户权限才能改:
su root
chmod go+rw head.h
ls -l head.h
chmod go+rw tree.cpp
ls -l tree.cpp
chmod go+rx tree1
ls -l tree1
修改完可以退出超级权限用户:
exit或者su yourname
这时在普通用户下可以对外来文件正常读写或者执行啦!当然如果文件是放在/home下就不用考虑这些问题。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)