
Linux
零起点0805
简单
展开
-
git command
Git global setupgit config --global user.name "JiangLili"git config --global user.email "jianglili7@xdf.cn"Create a new repositorygit clone git@gitlab.66xue.com:ljiang/flask_microblog.gitcd...原创 2020-03-05 10:18:24 · 101 阅读 · 0 评论 -
Linux->Linux 文件基本属性
https://www.tutorialspoint.com/unix_terminal_online.php(练习linux命令地址)ls -l 当为[ d ]则是目录; 当为[ - ]则是文件; 若是[ l ]则表示为链接文档(link file); 若是[ b ]则表示为装置文件里面的可供储存的接口设备(可随机存取装置); 若是[ c ]则表示为装置文件里面的串行端口设备...原创 2018-11-23 20:13:20 · 144 阅读 · 0 评论 -
Linux->Linux 文件与目录管理
pwd pwd -P: -P 显示出确实的路径,而非使用连结 (link) 路径。mkdirmkdir -p: -p :帮助你直接将所需要的目录(包含上一级目录)递归创建起来!mkdir -p test/test1/test2 : 创建多层目录mkdir -m: 我们使用 -m ,如我们给予 -m 711 来给予新的目录 drwx--x--x 的权限。rmdi...原创 2018-11-23 20:42:37 · 168 阅读 · 0 评论 -
Linux ->Linux 远程登录
http://www.runoob.com/linux/linux-remote-login.htmlLinux 远程登录Linux一般作为服务器使用,而服务器一般放在机房,你不可能在机房操作你的Linux服务器。这时我们就需要远程登录到Linux服务器来管理维护系统。Linux系统中是通过ssh服务实现的远程登录功能,默认ssh服务端口号为 22。Window系统上 Linu...转载 2018-11-23 15:39:56 · 318 阅读 · 0 评论 -
Linux 命令生成指定大小的文件
dd if=/dev/zero of=/Users/testmacair/Documents/test.txt bs=1k count=1000 //生成1M大小的文件的方法注释:if - File used as stdinof - File used as stdoutbs - Bytes of a blockcount - number of blocks修改b...原创 2019-05-29 14:44:42 · 2063 阅读 · 0 评论