Archive for the 'Windwos 10' Category

install podman on wsl2

Friday, October 15th, 2021

Step install podman on wsl2 Check version id (VERSION_ID) 1 2 3 $ $ cat /etc/lsb-release $$ $ cat /etc/lsb-release $ DISTRIB_ID=UbuntuDISTRIB_RELEASE=18.04DISTRIB_CODENAME=bionicDISTRIB_DESCRIPTION=”Ubuntu 18.04.5 LTS” => DISTRIB_RELEASE is VERSION_ID 2. Run add sources list 1 2 3 $ $ echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list $$ $ echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee […]

Windows Kill Process PORT Number

Tuesday, August 27th, 2019

เปิด Command Prompt ขึ้นมา ขั้นที่ 1 หา port โดยใช้ command netstat และ findstr เพื่อหา port ที่เราต้องการอีกที 1 2 3 C:\ C:\netstat -ano | findstr :[port] C:\C:\ C:\netstat -ano | findstr :[port] C:\ ขั้นที่ 2 เมื่อได้ port มาแล้ว ก็ kill มันซะ โดยใช้ command taskkill 1 2 3 C:\ C:\taskkill /PID 20196 /F C:\C:\ C:\taskkill /PID 20196 […]

ubuntu subsystem windows 10 : Changing mount point from /mnt/c to /c, /mnt/d to /d

Wednesday, July 24th, 2019

วิธีทำไม่ยาก ตามนี้เลยครับ จะพิมพ์ /mnt/c หรือ /mnt/d มันดูยุ่งยาก และการใช้งาน เลย mount ให้มันเป็น /c /d ซะเลย ขั้นที่ 1 สร้างไฟล์ wsl.conf โดยที่ไม่ต้องลง wsl command ก็ได้ sudo vi /etc/wsl.confsudo vi /etc/wsl.conf ขั้นที่ 2 ให้ automount โดยให้ drive c d มาเริ่มที่ตำแหน่งต่อจาก root # Now make it look like this and save the file when you’re done: [automount] root = / […]