tujidelv 6 år sedan
förälder
incheckning
6847b78b2e

+ 3 - 0
source/_posts/git-navi.md

@@ -23,6 +23,7 @@ tags:
 
 ### 精华帖...
 
+- [戒毒十年慢慢说](http://doudoubbs.yxsyj.com/forum.php?mod=viewthread&tid=17838&page=1&authorid=5429)
 - [通过淘宝“买家秀”,我花8000块睡到了喜欢的coser](http://www.sohu.com/a/270138940_115207)
 - [中国2018社会热点大事记-月光博客](https://www.williamlong.info/archives/5567.html)
 - [罗振宇2018“时间的朋友”跨年演讲精华版全文|罗振宇|时间的朋友|演讲_新浪科技_新浪网](http://tech.sina.com.cn/i/2019-01-01/doc-ihqhqcis2043090.shtml)
@@ -139,6 +140,8 @@ tags:
     - [ZIAxNOA](https://www.pornhub.com/model/ziaxnoa)
     - [BLOWJOB SKILL](https://www.pornhub.com/view_video.php?viewkey=ph5c1b804ad3492)
     - [Y GIRLFRIEND IS HARD ON ME IN BED, AND MY GIRLFRIEND IS EXCITED](https://www.pornhub.com/view_video.php?viewkey=ph5ab787f0f0bc7)
+    - [qiezishipin's Profile](https://www.pornhub.com/users/qiezishipin)
+    - [Wmaf](https://cn.pornhub.com/video/search?search=wmaf)
 - Twitter
     - [森罗万象](https://twitter.com/287076147/)
 

+ 1 - 1
source/_posts/os-linux-basic.md

@@ -318,7 +318,7 @@ tags:
             ~]# service iptables stop
             ~]# chkconfig iptables off
     ---
-    连接:ssh root@172.16.249.74
+    连接:ssh root@172.16.249.74 -p端口号
     ```
 
 ### 文件系统

+ 2 - 1
source/_posts/os-linux-command.md

@@ -182,7 +182,8 @@ wget:网络客户端工具
     wget [option]... [URL]...
         -q: 静默模式
         -c: 续传
-        -P 保存位置
+        -P 指定下载文件的存放目录
+        -O 指定下载文件的名字,重命名
         --limit-rates=: 指定传输速率
 rz
 sz

+ 14 - 1
source/_posts/st-git-remote.md

@@ -242,6 +242,10 @@ tags:
 	    $ chmod 700 .ssh
 	    $ chmod 600 authorized_keys
 		```
+    4. 测试能否登录,此时的 ssh 登录 git 用户不需要密码!否则就有错,可尝试重启`sshd`服务
+        ```shell
+        $ ssh git@server_ip -p 端口号(默认22时可不用此参数)
+        ```
 7. 禁止 git 用户 ssh 登录服务器
 	- 出于安全考虑,第二步创建的 git 用户不允许登录 shell,这可以通过编辑/etc/passwd 文件完成。将 bash 修改为 git-shell,找到类似下面的一行:
 	    ```
@@ -273,4 +277,13 @@ tags:
 
 ## 结束语
 
-- 未完待续...
+- 未完待续...
+- update by 20190801
+    ```
+    1.如果在github pushr的过程中提示"Connection reset by 13.250.177.223 port 22 fatal: Could not read from remote repository."
+    2.可尝试"ping github.com"看是否能Ping通,超时则应该是本地DNS无法解析导致的
+    3.可修改"C:\Windows\System32\drivers\etc\hosts"添加
+        192.30.255.112  github.com git 
+        185.31.16.184 github.global.ssl.fastly.net
+    4.可继续2步骤测试
+    ```