Bảng phân quyền truy cập file

  Number Octal Permission Representation Ref 0 No permission — 1 Execute permission –x 2 Write permission -w- 3 Execute and write permission: 1 (execute) + 2 (write) = 3 -wx 4 Read permission r– 5 Read and execute permission: 4 (read) + 1 (execute) = 5 r-x 6 Read and write permission: 4 (read) […]

Cài đặt PHP trên Ubuntu

Cài PHP8 cho Apache2 trên Ubuntu 20 $ sudo apt update $ sudo apt upgrade $ sudo apt install ca-certificates apt-transport-https software-properties-common Tiếp theo cài bước sau: $ sudo add-apt-repository ppa:ondrej/php Bấm Enter để đồng ý cài đặt Tiếp theo cài một số module cho php. Thư viện libapache2-mod-php8.0 apt install libapache2-mod-php8.0 php8.0-common php8.0-mbstring php8.0-curl php8.0-gd […]

Dọn dẹp ubuntu

1. Khởi động lại máy tính Lâu lâu cũng nên khởi động lại 2. Luôn cập nhật Ubuntu sudo apt-get update   sudo apt-get upgrade 3. Kiểm tra RAM sudo lshw -c memory free -h free -m   3. Giám sát các ứng dụng khởi động service –status-all sudo service stop #Để xóa một chương […]

Khắc phục vấn đề khi kết nối VPN thì không vào được internet

VPN là giải pháp tạo kênh truyền nội bộ riêng tư, giúp bảo mật cao hơn cho dữ liệu truyền qua internet.   Ngày nay với chi phí rẻ, nhiều cá nhân và doanh nghiệp thường hay dùng OpenVPN.   Trong một số trường hợp cấu hình VPN server có chỉ định route xuống client […]

Làm việc với Window Sub System WSL2 – Ubuntu

Cài đặt wsl2 trên win10 https://ubuntu.com/tutorials/install-ubuntu-on-wsl2-on-windows-10#1-overview 1. Mở Powershell với quyền administrator sau đó chạy lệnh wsl –install 2. Sau khi cài xong chạy lệnh dưới wsl –install -d ubuntu Máy sẽ yêu cầu khởi động lại, gõ lệnh trên chạy trước rồi khởi động lại. Sau khi khởi động lại sẽ tự động cài đặt […]

Di chuyển server trên ubuntu

Chuyển server Đứng ở server chuyển, giả sử chuyển thư mục www scp -P -r /var/www/* root@IP_server_nhận:/var/www/ scp -P -r /etc/apache2/sites-available/* root@IP_server_nhận:/etc/apache_backup/ scp -P -r /etc/openvpn/* root@IP_server_nhận:/etc/openvpn_bakup/ Backup database: mysqldump -u root -p –all-databases > all_db_backup.sql Tạo sum để sau khi upload xong thì kiểm tra: md5sum all_db_backup.sql scp -P -r /spx/all_db_backup.sql root@IP_server_nhận:/spx/ copy xong […]