原创 [windows]pip源配置

度娘查了很多配置pip源的文章,都是大同小異。建一個user路徑下創建一個pip文件夾,裏邊放一個pip.ini的文件,寫好pip源,下次啓動便生效。按照此方法試了一個晚上不管用。後來發現是pip版本很低的情況下,此方法不能生效。 pip

原创 [windows]設置cmd全局proxy

通過IE設置proxy cmd下執行 netsh winhttp import proxy source=ie 查看當前有哪些全局代理配置 netsh winhttp show proxy

原创 [windows]微信多開腳本

新建一個bat文件,編輯如下內容,雙擊運行即可。 TASKKILL /F /IM wechat.exe start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe" start

原创 [Linux]掛載Windows共享文件夾

操作步驟如下: windows下,創建一個共享目錄,如,d盤下創建一個目錄share,共享該目錄 linux下,掛載/卸載共享目錄 # 掛載 yy---windows的共享目錄; hdfs---linux下創建的掛載目錄(掛載點) mo

原创 [Linux][CentOS]安裝ftp Client

1.掛載CentOS鏡像,eg.掛載路徑爲/mnt/media/CentOS_6.7_final 2.cd /mnt/media/CentOS_6.7_final/Packages 3.ls | grep ftp 4.rpm -ivh f

原创 [windows]tomcat7.0.69配置jconsole遠程訪問

一、下載運行Tomcat 1.下載 直接去官網下載tomcat7.0.69,選擇windows 64bit版本(其它版本的不清楚,還沒有試過) http://tomcat.apache.org/download-70.cgi

原创 [windows]清除保存過的ftp用戶名&密碼

打開註冊表,運行--->regedit 刪除ftp表項,HKEY_CURRENT_USER\Software\Microsoft\FTP\Accounts下邊的對應表項

原创 [windows]啓動/停止Apache服務

啓動服務 進入Apache24\bin,執行 httpd.exe -k install      會打印提示信息: Installing the 'Apache2.4' service The 'Apache2.4' service i

原创 [windows]設置代理,使用pip

用法: set https_proxy=http://user:password@ip:port   eg: C:\Users\alfa>set https_proxy=http://test:[email protected]:8080 C:\Us

原创 CentOS下安裝ftp Client

1.掛載CentOS鏡像,eg.掛載路徑爲/mnt/media/CentOS_6.7_final 2.cd /mnt/media/CentOS_6.7_final/Packages 3.ls | grep ftp 4.rpm -ivh f

原创 通過代理的情況下,使用pip

用法: set https_proxy=http://user:password@ip:port   eg: C:\Users\alfa>set https_proxy=http://test:[email protected]:8080 C:\Us

原创 windows下清除保存過的ftp用戶名&密碼

1. 打開註冊表,運行--->regedit 2. 刪除ftp表項,刪除HKEY_CURRENT_USER\Software\Microsoft\FTP\Accounts下邊的對應表項

原创 windows下配置Apache

1、進入Apache24\bin,執行 httpd.exe -k install      會打印提示信息: Installing the 'Apache2.4' service The 'Apache2.4' service is s

原创 Linux掛載Windows共享文件夾

掛載文件 #mount -t cifs -o username=user,password=pwd  //x.x.x.x/yy /mnt/hgfs  很多已經不支持smbfs  卸載文件 #umount/mnt/hgfs