当前位置:网站首页>The difference between /usr/local/bin and /usr/bin
The difference between /usr/local/bin and /usr/bin
2022-07-31 23:21:00 【larance】
First, the difference between /usr/sbin and /usr/bin:
1. /usr/sbin: Commands under root authority are basic system commands, such as shutdown, reboot, which are used to start the system and repair the system;
2. Ordinary user authority of /usr/bin, storing some common basic commands, such as ls, chmod, etc.;
Second, /usr/bin and /usr/local/bin:
First note that usr refers to Unix System Resource, not User
Then usually:
The executable programs under /usr/bin are all pre-installed executable programs in the system, which will change with the system upgrade.
/usr/local/bin directory is a place for users to place their own executable programs. It is recommended to place them here, so that files of the same name will not be overwritten by the system upgrade.
1. /usr/bin: The executable program pre-installed in the system will change with the system upgrade;
2. /usr/local/bin: The place where users put their own executable programs, it is recommended to put them here, and the files of the same name will not be overwritten by the system upgrade.
Refer to https://www.jianshu.com/p/5de2286b2e97
/usr/bin /usr/sbin /usr/local/bin /usr/local/sbin difference under Linux-Su's Jiaduobao- Blog Park
边栏推荐
- Federated Learning: Multi-source Knowledge Graph Embedding in Federated Scenarios
- SQL注入 Less46(order by后的注入+rand()布尔盲注)
- C#中引用类型的变量做为参数在方法调用时加不加 ref 关键字的不同之处
- Recognize anomalies (you will understand after reading this)
- 基于mysql的消息队列设计
- LevelSequence source code analysis
- 新产品如何进行网络推广?
- @JsonFormat(pattern="yyyy-MM-dd") time difference problem
- Dry goods | 10 tips for MySQL add, delete, change query performance optimization
- GateWay implements load balancing
猜你喜欢

什么是客户画像管理?

How to reduce the gap between software design and implementation

新产品如何进行网络推广?

Unity - by casting and cloning method dynamic control under various UGUI create and display

Judging decimal points and rounding of decimal operations in Golang

Federated Learning: Multi-source Knowledge Graph Embedding in Federated Scenarios

Shell common scripts: Nexus batch upload local warehouse enhanced version script (strongly recommended)

Binary tree non-recursive traversal
![[NLP] What is the memory of the model!](/img/d8/a367c26b51d9dbaf53bf4fe2a13917.png)
[NLP] What is the memory of the model!

什么是动态规划,什么是背包问题
随机推荐
基于mysql的消息队列设计
[QNX Hypervisor 2.2用户手册]9.16 system
【Acwing】第62场周赛 题解
2022年CSP-J1 CSP-S1 第1轮初赛 报名指南
SQL注入 Less42(POST型堆叠注入)
In Golang go-redis cluster mode, new connections are constantly created, and the problem of decreased efficiency is solved
How to get useragent
Collation of knowledge points in Ningbo University NBU IT project management final exam
数据分析(一)——matplotlib
The difference between adding or not adding the ref keyword when a variable of reference type is used as a parameter in a method call in C#
[QNX Hypervisor 2.2用户手册]9.14 set
SQL注入 Less47(报错注入) 和Less49(时间盲注)
面试题:实现死锁
2022-07-31:给出一个有n个点,m条有向边的图, 你可以施展魔法,把有向边,变成无向边, 比如A到B的有向边,权重为7。施展魔法之后,A和B通过该边到达彼此的代价都是7。 求,允许施展一次魔法
Write a database document management tool based on WPF repeating the wheel (1)
How to debug TestCafe
【FPGA教程案例43】图像案例3——通过verilog实现图像sobel边缘提取,通过MATLAB进行辅助验证
Google Earth Engine——Error: Image.clipToBoundsAndScale, argument ‘input‘: Invalid type的错误解决
MySQL数据库‘反斜杠\’ ,‘单引号‘’,‘双引号“’,‘null’无法存储
如何减少软件设计和实现之间鸿沟