SSH Command (Centos 7)
Download and Install .Net Framework 4.5.1 [Link]
after install please restart.
Download and Install git Command Client [Link]
Listing Directory
[root@www ~]# ls
Listing Directory List View
[root@www ~]# ls -l
Listing Directory with detail info
[root@www ~]# ls -lA
Listing Directory with detail info and show all hidden file
Create Directory
[root@www ~]# mkdir DIRNAME
Ex. mkdir project1, Note. Please make sure create directory in correct path
Directory Permission
[root@www ~]# chmod 775 R DIRECTORY_ROOT
-R : Change permission for entire directory child
Directory Owner
[root@www ~]# chown username:group R DIRECTORY_ROOT
Add User and set home directory for ftp access
[root@www ~]# useradd -d /var/www/html/[Link]/ adexyz -p PASSWORD
username: user
password: PASSWORD
homeDir: /var/www/html/[Link]/
useradd -d /var/www/html/[Link]/ adexyz -p "PASSWORD"