随笔分类 -  linux

摘要:#复制# 按住鼠标左键,执行选择,放开左键时完成复制 #粘贴# 点击鼠标右键,执行粘贴 阅读全文
posted @ 2019-04-11 11:28 lishidefengchen
摘要:Docker Run We can then override the environment variables set in the Docker file when running the image by using the -e flag: 对应.netcore应用程序,设置 ASPNET 阅读全文
posted @ 2019-04-11 10:52 lishidefengchen
摘要:#linux指令# printenv 阅读全文
posted @ 2019-04-11 10:46 lishidefengchen
摘要:sed -i "s/搜索内容/替换内容/g" 文件名 阅读全文
posted @ 2019-04-10 17:13 lishidefengchen
摘要:https://www.cnblogs.com/uptothesky/p/6094357.html 阅读全文
posted @ 2019-03-28 11:54 lishidefengchen
摘要:#nmp# #netstat# #telnet# 服务器端口即使处于监听状态,但是防火墙iptables屏蔽了该端口,是无法通过该方法检测端口是否开放 #屏蔽与关闭# 对应服务器开启,一般端口就开启了,不能访问,可能是由于防火墙的限制,导致端口被屏蔽了。 阅读全文
posted @ 2019-03-28 10:38 lishidefengchen
摘要:PS1="\[\e[37;40m\][\[\e[32;40m\]\u\[\e[37;40m\]@\h \[\e[36;40m\]\w\[\e[0m\]]\\$ " #步骤#vi .bash_profile末尾追加配置:wq 保存退出source .bash_profile#效果如下# 阅读全文
posted @ 2019-03-28 10:21 lishidefengchen
摘要:参考:https://www.rabbitmq.com/relocate.html 阅读全文
posted @ 2019-03-27 18:00 lishidefengchen
摘要:删除 archives文件夹就行了 阅读全文
posted @ 2019-03-27 14:58 lishidefengchen
摘要:https://blog.zfanw.com/install-erlang-on-centos/ 阅读全文
posted @ 2019-03-27 13:48 lishidefengchen
摘要:$ grep -rn '字符串' 很好用~ 阅读全文
posted @ 2019-03-27 10:12 lishidefengchen
摘要:#内核# cat /proc/version #操作系统# uname -a #发行版本# cat /etc/issue #hostnamectl# 阅读全文
posted @ 2019-03-26 17:18 lishidefengchen
摘要:1、https://aspnetboilerplate.com/Templates 2、后端项目发布,在publish中abp默认已经存在DockerFile文件 3、修改后端文件中的DockerFile文件 默认的值为 FROM microsoft/aspnetcore:2.0.1。但我当前的这个 阅读全文
posted @ 2019-03-25 15:19 lishidefengchen
摘要:pscp -r d:\cc root@10.0.0.8:/root/test copy d:\cc content recursively into the /root/test, contains the cc directory pscp -r d:\cc\ root@10.0.0.8:/roo 阅读全文
posted @ 2019-03-25 09:47 lishidefengchen