1.修改文件或目录权限 -- chmod ①文字设定法 chmod who [+、-、=] mode 文件名 who:u - user,文件所有者 g - group,文件所属组 o - others,其他人 a - all,所有人 +、-、=:增加、减少、覆盖 mode:r:读 w:写 x:执行 ...
分类:
其他好文 时间:
2021-02-06 12:02:08
阅读次数:
0
官网地址: https://channel9.msdn.com/ Channel 9 is a community. We bring forward the people behind our products and connect them with those who use them. W ...
分类:
Web程序 时间:
2021-01-16 12:00:49
阅读次数:
0
一、概述 Shell是一种具备特殊功能的程序,它提供了用户与内核进行交互操作的一种接口。它接收用户输入的命令,并把它送入内核去执行。内核是Linux系统的心脏,从开机自检就驻留在计算机的内存中,直到计算机关闭为止,而用户的应用程序存储在计算机的硬盘上,仅当需要时才被调入内存。Shell是一种应用程序 ...
分类:
系统相关 时间:
2021-01-12 10:51:57
阅读次数:
0
转自:https://djangostars.com/blog/configuring-django-settings-best-practices/ 一个很不错的实践 This article is intended for engineers who use the Django framewo ...
分类:
其他好文 时间:
2021-01-06 11:38:52
阅读次数:
0
折半搜索,$O(n)$型枚举,时间复杂度(\(O(n^2logn)\)) const int N=4010; int a[N],b[N],c[N],d[N]; int ab[N*N]; int n; int main() { cin>>n; for(int i=0;i<n;i++) cin>>a[i ...
分类:
其他好文 时间:
2020-12-18 12:31:13
阅读次数:
2
1.docker基本原理 https://www.cnblogs.com/xiaonq/p/10241045.html 2.ubuntu安装docker 2.1 安装docker # 1.卸载旧版本 sudo apt-get remove docker docker-engine docker.io ...
分类:
系统相关 时间:
2020-11-24 13:00:30
阅读次数:
26
Are you a Linux fan? Do you hate to do things the easy way? Are you a pro who loves to put his computer’s life on the line to experiment and customize ...
分类:
其他好文 时间:
2020-11-12 13:37:01
阅读次数:
8
cd ls pwd clear chmod chown chattr userdel groupadd vi wim cat more less mv cp rm rmdel touch ifconfig ip addr ping route echo wc expr bc ln head tail ...
分类:
其他好文 时间:
2020-11-04 19:25:23
阅读次数:
43
搭建成功之后,匿名用户上传文件时总提示553 Could not create file。 ftp主目录为/var/ftp chmod -R 755 /var/ftp/pub chown ftp:root /var/ftp/pub 匿名用户读,写,删除,修改权限 # Example config f ...
分类:
系统相关 时间:
2020-11-04 19:05:52
阅读次数:
28
古人说好的开始是成功的一半,古人又说千里之行始于足下,服务注册就是服务治理这台戏的开场和第一步。这一节,将向大家介绍注册中心的运作模式、任务,以及服务节点是如何找到注册中心的。 ##注册中心漫谈 前面我们讲到,服务注册是为了解决Who are you这个问题,即获取所有服务节点的身份信息和服务名称, ...
分类:
其他好文 时间:
2020-10-30 13:15:44
阅读次数:
29