linux
冰峰雪岭
如人饮水,冷暖自知。
展开
-
腾讯云安装stable diffusion webui
安装项目中的提示操作:GitHub - AUTOMATIC1111/stable-diffusion-webui: Stable Diffusion web UI遇到的问题:原创 2023-05-25 17:56:14 · 1542 阅读 · 0 评论 -
github连接超时(不能push,不能pull)
3. 将ssh的22端口改为使用443。原创 2022-12-19 18:38:38 · 1251 阅读 · 1 评论 -
更改pip源
pip更改国内源原创 2022-04-13 18:31:49 · 27657 阅读 · 0 评论 -
阿里云上的gitlab不能使用ssh
晚上突然发现ssh到gitlab的项目失败,提示:ssh_exchange_identification: read: Connection reset by peerfatal: Could not read from remote repository.Please make sure you have the correct access rightsand the r原创 2017-09-06 11:48:27 · 1832 阅读 · 0 评论 -
Linux下文件去重
有多个文件,每个文件都有交集。 现在要将每个文件去重。这里使用到3个命令:cat、sort、uniqcat查看文件内容sort排序uniq去重1. 取几个文件的并集 cat fileA fileB fileC | sort | uniq➜ test cat test1a1a2a3a1➜ test sort test1a1a1a2原创 2017-07-20 14:51:41 · 3529 阅读 · 0 评论 -
linux查看端口占用
netstat –apn原创 2016-11-09 11:55:09 · 270 阅读 · 0 评论 -
OpenSSL生成密钥对
OpenSSL工具安装Linux用户(以Ubuntu为例)sudo apt-get install opensslWindows用户开发者可以在OpenSSL官方网站下载Windows的 OpenSSL安装包 进行安装,。RSA私钥及公钥生成 Linux用户(以Ubuntu为例)$ openss转载 2016-10-24 15:09:45 · 5314 阅读 · 0 评论 -
/dev/null 2>&1
用 /dev/null 2>&1 这样的写法.这条命令的意思是将标准输出和错误输出全部重定向到/dev/null中,也就是将产生的所有信息丢弃. 下面就为大家来说一下, command > file 2>file 与command > file 2>&1 有什么不同的地方. 首先 command > file 2>file 的意思是将命令所产生的标准输出信息,和错误转载 2016-09-25 17:17:00 · 226 阅读 · 0 评论 -
history命令查看操作时间
export HISTTIMEFORMAT="%F %T `whoami` " 给history加上时间戳 展示: 1013 2016-08-08 12:15:40 root y 1014 2016-08-08 12:15:41 root df 1015 2016-08-08 12:16:00 root history 1016 2016-08-08 12:1原创 2016-08-08 12:20:40 · 1984 阅读 · 0 评论 -
安装好后如何查看mysql/apache/nginx/php安装参数
查看mysql编译参数: cat /usr/local/mysql/bin/mysqlbug | grep CONFIGURE_LINE 查看apache编译参数: cat $apachehome$/build/config.nice 查看php编译参数: $PHP$/bin/php -i | grep configure ./php -r "phpinfo();原创 2016-07-19 11:19:14 · 319 阅读 · 0 评论 -
php升级
1.要使用lumen的单元测试 https://lumen.laravel.com/docs/5.2/testing 里面需要使用phpunithttps://phpunit.de/manual/current/zh_cn/installation.htmlphpunit推荐使用5.6以上的php版本,现在使用的是php5.5,因此涉及到php升级, 下面列举一下升级的过程:原创 2016-07-19 10:49:12 · 268 阅读 · 0 评论 -
nginx启动
使用service nginx start: 需要添加一个脚本: /etc/init.d/nginx 然后nginx配置中启用nginx的daemon on 再chkconfig nginx on,开机自动启动; 或者 echo “service nginx start ”>>/etc/rc.local (这是使用者自订开机启动程序)原创 2016-06-07 15:24:54 · 558 阅读 · 0 评论