發表文章

目前顯示的是 7月, 2017的文章

VSCode - Code Runner 於 Kubuntu 17.04 下無法直接執行C/C++等語言的 workaround

在 Kubuntu 17.04 下 VS Code 直接執行 C/C++ Code 會產生 hang 住也沒有輸出的情形,但實際上有編譯成功卻沒有執行。目前用 gnome-terminal (或自己喜歡的terminal)等外部軟體就可以正常執行了。 在 settings.json 裏面加入*或修改: "code-runner.executorMap": {         "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && gnome-terminal -e ./$fileNameWithoutExt",         "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && gnome-terminal -e ./$fileNameWithoutExt", } 另外在執行中的 code 若需要檢視 output,需要使用 getchar(); 等方式在return前暫停。(或把上面的executor指令延長,做出shell script再用 terminal 執行?) *先從 default settings 複製完整的段落修改再使用,以免讓其他語言的執行功能故障

Kubuntu 17.04 於 DELL Inspiron 15R 安裝筆記

1. 在系統設定中設定語言格式為中文(zh_TW)後 gnome-terminal 無法開啟,locale指令噴 Cannot set LC_CTYPE to default locale: No such file or directory ....等錯誤訊息 原因: 似乎 KDE 預設產生的語系名稱為 zh_TW.UTF-8,少了一個dash(-)。 解決方案: sudo locale-gen --lang zh_TW.UTF-8 2. 調整風扇速度 用lm-sensors裡面的pwmconfig設定,按照指示產生/etc/fancontrol檔案。 然後將fancontrol加到systemd服務,每次開機啟動即可。 我自己的設定檔: # Configuration file generated by pwmconfig, changes will be lost INTERVAL=10 DEVPATH=hwmon1= hwmon2=devices/platform/coretemp.0 DEVNAME=hwmon1=dell_smm hwmon2=coretemp FCTEMPS=hwmon1/pwm1=hwmon2/temp1_input FCFANS= hwmon1/pwm1=hwmon1/fan1_input MINTEMP=hwmon1/pwm1=60 MAXTEMP=hwmon1/pwm1=75 MINSTART=hwmon1/pwm1=150 MINSTOP=hwmon1/pwm1=100 MINPWM=hwmon1/pwm1=100  3. 目前獨顯暫時還沒有軟體用到,使用預設的open source驅動程式都運作良好。