Quantcast
Channel: 可丁丹尼 @ 一路往前走2.0
Browsing latest articles
Browse All 79 View Live

移除檔案的副檔名

using System; using System.IO; public class Example { public static void Main() { string filepath= @"C:\1234\5678\abc.csv"; // 直接將副檔名給null就會清空 string onlyFileNamePath = Path.ChangeExtension(filepath,...

View Article


調整 pve root Resize pve root

調整 pve root Resize pve root 安裝pve如果您的系統碟容量比較小,按照比例會取得較小的pve-root空間,像下面: root@pve:~# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 113G 0 disk ├─sda1 8:1 0 1007K 0 part ├─sda2 8:2 0 512M 0...

View Article


Image may be NSFW.
Clik here to view.

x11vnc 整合至 systemd 開機自動執行

設定密碼 x11vnc 遠端控制畫面是傳輸XWindows整個畫面,與其他的vnc server不同, 在使用時建議一定要先設定密碼做好最低限度的保護。 sudo x11vnc -storepasswd [你的密碼] /etc/x11vnc.passwd 建立 Systemd Service檔案 使用編輯器建立x11vnc.service,如:nano x11vnc.service [Unit]...

View Article

Image may be NSFW.
Clik here to view.

2022-12-22 man 指定語言 語系

man 透過 --locale=語系 指定要看的語系說明,但不清楚語系名稱時進入usr/share/man查詢: ls -la /usr/share/man danny@EDY-G41MT-D3:/usr/share/man$ ls -la total 484 drwxr-xr-x 36 root root 4096 Sep 23 08:53 . drwxr-xr-x 347 root root...

View Article

2022-12-27 tar 去掉路徑結構

產生測試資料 cd /tmp mkdir 11/22/33 -p touch 11/f1 touch 11/22/f2 touch 11/22/33/f3 目錄結構 tree tmp tmp └── 11 ├── 22 │   ├── 33 │   │   └── f3...

View Article


Enable Serial Terminal 開啟Serial 終端

Raspberry Pi SoC 後期有內建2組UART,所以會做一個相容, tty UART Type map Serial0 mini UART ttyS0 Serial1 PL011 ttyAMA0 Kernel Open /boot/cmdline.txt console=serial0,115200 root=PARTUUID=d82c2881-02 rootfstype=ext4...

View Article

NPM Monorepo 設定

NPM Monorepo 設定 1. 目錄結構: //-----------start----------- my-monorepo/ |-- packages/ | |-- my-first-package/ | | |-- index.js | |-- my-second-package/ | | |-- index.js |-- package.json...

View Article

flutter 指定 android sdk 路徑

指令: flutter --android-sdk "[路徑] 範例: C:\Users\danny>flutter config --android-sdk "D:\3106_AndroidSDK" Setting "android-sdk" value to "D:\3106_AndroidSDK". You may need to restart any open editors...

View Article


nextcloud 使用者檔案 重建索引 (docker)

建立nextcloud如果覺的檔案在網頁上顯示的內容與實際檔案有出入時可以透過occ來重新建立檔案的索引。 假設nextcloud建立在/var/www/html之中: cd /var/www/html sudo -u www-data php occ files:scan [使用者名稱] 重建完成後會看到如下: +---------+-------+--------------+ |...

View Article


ssh authorized_key 失效

使用 VSCode 遠端開發時發現把 public key 加入 authorized_key 還是失效,之後才知道可以加上參數進行檢查,於事先在”命令提示字元執行ssh`: ssh -i [private key path name] -v gw@192.168.19.38 結果發現真的有問題: : : debug1: Next authentication method: publickey...

View Article
Browsing latest articles
Browse All 79 View Live