系統(tǒng)相關(guān)
-
Centos系統(tǒng)使用pidof命令查看指定進行的pid
1.使用“pidof進程名稱”來查找指定進程的id號,本文以sshd進程為例子輸入`pidofsshd`進行查看。 2.輸入`pidof-ssshd`只返回sshd同名進程的一個PID。 ...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Windows7系統(tǒng)如何安裝NET Framework 4.6版本
1.打開鏈接下載NETFramework4.6離線安裝包:[NETFramework4.6離線安裝包](https://www.microsoft.com/en-us/download/detail...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Windows系統(tǒng)使用systeminfo命令顯示機器配置
1.使用快捷鍵`Win+R`打開運行窗口,然后輸入`cmd`然后回車確認(rèn)。 2.輸入`systeminfo`來顯示關(guān)于計算機及其操作系統(tǒng)的詳細配置信息。 ...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
解決Windows系統(tǒng)WmiPrvSE.exe進程占用CPU高的問題
1.使用快捷鍵`Win+R`打開運行窗口,然后輸入`Services.msc`然后回車確認(rèn)。 2.找到“WindowsManagementInstrumentation”服務(wù),然后右鍵進程,選擇“...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Chrome無痕模式下如何使用插件
1.在Chrome頁面里點擊如圖右上方位置處下拉菜單,選擇“管理擴展程序” 2.選擇需要啟用的擴展程序“詳情” 3.勾選“在無痕模式下啟用”即可 ...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Python如何指定國內(nèi)鏡像源安裝第三方庫
pip臨時使用,國內(nèi)網(wǎng)絡(luò)以清華鏡像源安裝selenium為例。例如: `pipinstall-ihttps://pypi.tuna.tsinghua.edu.cn/simpleselenium`注意...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Debian下使用curl操作ftp上傳和下載
1.文件上傳 curl--ftp-create-dirs-T./main.pyftp://test:testpasswd123123@45.x.x.136/main.py --ftp-create...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Ubuntu安裝Pure-FTP搭建ftp服務(wù)
1.更新軟件源apt-getupdate-y 2.安裝Pure-FTPdsudoapt-getinstallpure-ftpd-y 3.配置Pure-FTPd添加用戶和組sudogroupadd-g...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Python的pip庫如何指定第三方庫的安裝版本
不指定的情況下,默認(rèn)安裝最新的。例如:`pipinstallselenium` ==指定具體版本號:例如:`pipinstallselenium==3.3` <=指定最高版本號。例如:`p...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>> -
Debian9如何開啟BBR加速
1.輸入該命令按回車鍵:`echonet.core.default_qdisc=fq>>/etc/sysctl.conf` 2.輸入該命令按回車鍵:`echonet.ipv4.tcp_...
2024-5-23 [系統(tǒng)相關(guān)] 查看更多>>