Search found 155 matches

by brid.surapol
22 Oct 2024, 22:47
Forum: การใช้งาน PostgreSQL
Topic: คำสั่ง backup / restore ใน format sql output
Replies: 1
Views: 11130

Re: คำสั่ง backup / restore ใน format sql output

Code: Select all

cat file.gz | gunzip | psql -p #port_number# -U #db_user# -d #database_name#
by brid.surapol
31 Jul 2024, 15:12
Forum: การใช้งาน PostgreSQL
Topic: postgresql ./configure error
Replies: 0
Views: 4183

postgresql ./configure error

Code: Select all

sudo apt install libreadline-dev zlib1g-dev libicu-dev pkg-config
by brid.surapol
13 Jul 2024, 08:16
Forum: การใช้งาน Linux
Topic: SPA Apache2 Config วิธี reroute all routes ไปยัง index.html
Replies: 0
Views: 4948

SPA Apache2 Config วิธี reroute all routes ไปยัง index.html

แก้ไข ###.conf ใน /etc/apache2/sites-available/

Code: Select all

	RewriteEngine On
	RewriteCond %{REQUEST_FILENAME} -f [OR]
        RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule ^ – [L]
by brid.surapol
12 Jul 2024, 15:48
Forum: การใช้งาน Linux
Topic: การลง GitLab
Replies: 0
Views: 3467

การลง GitLab

สำหรับ install gitlab ลงบน ubuntu server --> clean installtion เท่านั้น sudo ufw status หาก ufw disable อยู่ sudo ufw enable sudo ufw allow #port ssh# sudo ufw allow http sudo ufw allow https ตรวจสอบ ports ที่เปิดผ่าน firewall ให้เรียบร้อย sudo ufw status sudo apt update sudo apt install ca-certific...
by brid.surapol
03 Jul 2024, 11:12
Forum: การใช้งาน Linux
Topic: วิธี install fonts ใน ubuntu server
Replies: 0
Views: 3754

วิธี install fonts ใน ubuntu server

1. ไปที่ home directory

2.

Code: Select all

mkdir .fonts
3. copy font arundina ลงใน directory นี้

4.

Code: Select all

fc-cache -f -v
5. ใช้คำสั่ง fc-list ดูว่า fonts ถูก install แล้วหรือยัง

Code: Select all

fc-list
by brid.surapol
09 Mar 2024, 20:58
Forum: การใช้งาน Linux
Topic: detach/attach ssh screen
Replies: 0
Views: 5287

detach/attach ssh screen

ก่อน run คำสั่งที่ใช้เวลา execute นาน ให้ run screen session

Code: Select all

screen
หลังจากนั้น detach screen session ด้วย ctrl-a แล้วตามด้วย d

เวลาที่ต้องการจะ attach screen session เดิม ให้ใช้คำสั่ง

Code: Select all

screen -r
by brid.surapol
12 Feb 2024, 05:54
Forum: การใช้งาน Linux
Topic: เปลี่ยน vim color scheme
Replies: 0
Views: 5160

เปลี่ยน vim color scheme

edit .vimrc
เพิ่มบรรทัด

Code: Select all

syntax on
colorscheme desert
ใน macOS

Code: Select all

syntax on
colorscheme torte
by brid.surapol
14 Jan 2024, 05:34
Forum: การใช้งาน Linux
Topic: วิธีการ แสดง/กำหนด การใช้งาน CPUs
Replies: 0
Views: 5402

วิธีการ แสดง/กำหนด การใช้งาน CPUs

ใช้คำสั่ง taskset / isolcpus / cgroups ในการควบคุมการใช้ CPUs ใน linux ใช้คำสั่ง lstopo ในการแสดงการแสดง config การใช้งาน CPUs ใน linux การ install lstopo sudo apt install hwloc isolcpus https://askubuntu.com/questions/165075/how-to-get-isolcpus-kernel-parameter-working-with-precise-12-04-amd64 ใช้ค...

Go to advanced search