今天在使用ps命令的時候,無法查詢到指定名字的程序id,仔細查詢才發現ps命令查詢的結果中程序啟動的命令以及引數資訊被截斷了
使用者wanng啟動了乙個程序 wanng_qytrunkcross, 啟動引數是 config.lua 檔案,執行 ps -u wanng 查詢使用者的程序,結果如下:
[wanng@localhost shell]# ps -u wanng
pid tty time cmd
127271 ? 00:00:01 sshd
127272 pts/4 00:00:00 bash
127332 pts/4 00:17:19 wanng_qytrunkcros
從結果中發現程序名和啟動引數的顯示被截斷了
以下是通過man ps查詢到的解決辦法,以下幾種方法都可以解決這個問題
w wide output. use this option twice for unlimited width在 ps 後面加上 -w w 選項,命令執行結果如下-w wide output. use this option twice for unlimited width.
[wanng@localhost shell]# ps -u wanng -w w
pid tty stat time command
127271 ? s 0:01 sshd: wanng@pts/4
127272 pts/4 ss+ 0:00 -bash
127332 pts/4 sl 17:20 ./wanng_qytrunkcross config.lua
在 ps 後面加上 ww 選項,命令執行結果如下
[wanng@localhost shell]# ps -u wanng ww
pid tty stat time command
127271 ? s 0:01 sshd: wanng@pts/4
127272 pts/4 ss+ 0:00 -bash
127332 pts/4 sl 17:20 ./wanng_qytrunkcross config.lua
手機解析度導致文字顯示不完整的問題
1.你手機的解析度大,軟體支援的解析度小就會出現部分螢幕區域性黑屏,如果軟體支援的解析度大於你的手機,那要麼就不能顯示就算能顯示也只顯示區域性。2.解析度320 480的意思是水平畫素數為320個,垂直畫素數480個。解析度越高,畫素的數目越多,感應到的影象越精密。而在螢幕尺寸一樣的情況下,解析度越...
含中文的response body不完整
自製的web伺服器通過socket 輸出流回寫響應時,發現response body中只要出現中文,就會短一截。當出現三個中文字元,缺少了 html 這六個字元。每多乙個中文字元,response body就會缺兩個字元,我立馬想到了utf 8編碼下中文字元佔三個位元組這一特點,這可不就是3 1 2...
QT解決串列埠資料接收不完整問題
1 qt串列埠通訊接收資料不完整的解決方法 2 qt 串列埠qserialport 解決接收資料不完整問題 3 關於qt5 serialport串列埠傳輸丟失資料問題 使用qt編寫串列埠上位機時,串列埠通訊的過程中有時會遇到資料接收不完整的問題,下位機一次傳送的資料可能會分為兩次甚至多次接收,這樣就...