Chủ Nhật, 18 tháng 5, 2014

// // 7 comments

Các lệnh cơ bản trong Debian

Cấu hình mạng:
Chỉnh sửa hostname - tên máy:
root@wisesrv:~# nano /etc/hostname
Cấu hình ip tĩnh và động:
root@wisesrv:~# nano /etc/network/interfaces
 # 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
Cấu hình DNS Server:
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.8
nameserver 8.8.4.4
Cho phép 1 chương trình khởi động chung khi khỏi động máy:
#update-rc.d apache2 defaults
Không cho phép:
#update-rc.d -f apache2 remove
Upload 1 file từ máy local lên server:
$ scp data.sql vivek@example.cyberciti.biz:/home/vivek
Kiể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)



7 nhận xét:

  1. Cài đặt phần mềm .deb
    $ sudo dpkg --install /home/thehai/Downloads/sublime-text_build-3047_i386.deb

    Trả lờiXóa
  2. root@serverwise:~/git/.ssh# su -s /bin/bash - git
    chuyển đổi truy cập từ tk root sang tk git

    Trả lờiXóa
  3. $ cd ~
    duy chuyển đến thư mục của hính user trong /home

    Trả lờiXóa
  4. Xoa thu muc hien tai va tat ca cac file ben trong
    thehai@serverwise:~$ rm -fr public_html/magento/

    Trả lờiXóa
  5. Copy tat ca FILE trong thu muc hien hanh den 1 thu muc khac
    $ cp * /home/tom/backup

    Copy tat ca FILE & FOLDER trong thu muc hien hanh den 1 thu muc khac
    $ cp -R * /home/tom/backup

    Trả lờiXóa
  6. ZIP

    -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

    Trả lờiXóa

Lưu ý: Chỉ thành viên của blog này mới được đăng nhận xét.