บทความ

กำลังแสดงโพสต์จาก มิถุนายน, 2023

Logo. to Tecx

  If you're looking for a command-line tool to create a logo with text, there are several options available. One popular command-line tool is called "figlet." Figlet allows you to generate ASCII art from text input. To use Figlet, you'll need to install it on your system first. Here's how you can install Figlet on different platforms: On Linux (Ubuntu or Debian): arduino Copy code sudo apt-get install figlet On macOS (using Homebrew): Copy code brew install figlet Once Figlet is installed, you can generate a logo with text by running the following command in your terminal: rust Copy code fig let YourText Replace "YourText" with the text you want to convert into a logo. Figlet supports various font styles, and you can specify a specific font by using the "-f" option. For example: Copy code figlet -f slant YourText This will generate a slant-style logo with your text. You can explore different font styles by running the command figlet -l to se...

วิธีการติดตั้ง QNAP NAS บน Proxmox

  * Download QNAP Boot Disk https://mega.nz/folder/LJ4wyaDY#MxOC2UgNqC-Y6gQXu-IUFA * Edit Create Qnap boot file : vi ./my_create_qnap_boot MODEL_TYPE="QY380_QY390_10_11" PATCHED_FIRMWARE="TS-X85_20211114-5.0.0.1853" DOWNLOAD_URL="https://eu1.qnap.com/Storage/TS-X85/" sudo ./my_create_qnap_boot * Edit VM Config File /var/lib/vz/images/?/ args: -device 'nec-usb-xhci,id=usb-bus0,multifunction=on' -drive 'file=/var/lib/vz/images/100/qnap.img,media=disk,format=raw,if=none,id=drive-disk-bootloader' -device 'usb-storage,bus=usb-bus0.0,port=1,drive=drive-disk-bootloader,id=usb-disk-bootloader,bootindex=999,removable=on' /etc/pve/nodes * Add Hard Disk lsblk ls /dev/disk/by-id qm set 100 -ide2 /dev/disk/by-id/"HDD_id"

XPEnology Proxmox

  * Download XPEnology https://mega.nz/folder/pmIxgYpB#SJrff... * Commands lsblk ls /dev/disk/by-id qm set 100 -sata1 /dev/disk/by-id/"hdd_id"

mount disk and partition in Proxmox V8

  Proxmox mount add new disk แบบไม่ให้ข้อมู Disk หาย https://www.simplified.guide/linux/disk-mount blkid /dev/sdb1 mkdir disk mount -t ext4 /dev/sdb1 disk mount -t xfs /dev/sda1 /home/disk umount /dev/sdb1 vi /etc/fstab /dev/sdb1 /home/user/disk ext4 defaults 0 0 mount -a