Chỉnh sửa hostname - tên máy:
root@wisesrv:~# nano /etc/hostnameCấu hình ip tĩnh và động:
root@wisesrv:~# nano /etc/network/interfacesCấu hình DNS Server:
# Nhận IP DHCP
allow-hotplug eth0
iface eth0 inet dhcp
# Gán IP tĩnh:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.14
gateway 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
Chỉnh sửa /etc/resolv.conf để thiết lập các DNS Server dùng để phân giải:
nameserver 8.8.8.8Cho phép 1 chương trình khởi động chung khi khỏi động máy:
nameserver 8.8.4.4
#update-rc.d apache2 defaultsKhông cho phép:
#update-rc.d -f apache2 removeUpload 1 file từ máy local lên server:
$ scp data.sql vivek@example.cyberciti.biz:/home/vivekKiểm tra 1 chương trình xem thử nó đã được cài đặt chưa:
root@wisesrv:~# dpkg --list|grep ssh
ii openssh-blacklist 0.4.1+nmu1 all list of default blacklisted OpenSSH RSA and DSA keys
ii openssh-blacklist-extra 0.4.1+nmu1 all list of non-default blacklisted OpenSSH RSA and DSA keys
ii openssh-client 1:6.0p1-4+deb7u1 amd64 secure shell (SSH) client, for secure access to remote machines
ii openssh-server 1:6.0p1-4+deb7u1 amd64 secure shell (SSH) server, for secure access from remote machines
ii ssh 1:6.0p1-4+deb7u1 all secure shell client and server (metapackage)
Cài đặt phần mềm .deb
Trả lờiXóa$ sudo dpkg --install /home/thehai/Downloads/sublime-text_build-3047_i386.deb
root@serverwise:~/git/.ssh# su -s /bin/bash - git
Trả lờiXóachuyển đổi truy cập từ tk root sang tk git
$ cd ~
Trả lờiXóaduy chuyển đến thư mục của hính user trong /home
su -s /bin/bash - git
Trả lờiXóaXoa thu muc hien tai va tat ca cac file ben trong
Trả lờiXóathehai@serverwise:~$ rm -fr public_html/magento/
Copy tat ca FILE trong thu muc hien hanh den 1 thu muc khac
Trả lờiXóa$ cp * /home/tom/backup
Copy tat ca FILE & FOLDER trong thu muc hien hanh den 1 thu muc khac
$ cp -R * /home/tom/backup
ZIP
Trả lờiXóa-Nén một thư mục, sử dụng:
$ zip -r folder.zip folder
-Giải nén, sử dụng:
$ unzip file.zip
TAR.GZ
-Nén một thư mục dạng .gz, sử dụng:
$ tar -zcf folder.tar.gz folder
-Giải nén, sử dụng:
$ tar -zxvf file.tar.gz