웹마짱구의 블로그

xrdp 동작여부 확인

Linux2018. 12. 24. 17:05
728x90
1
2
3
4
5
# netstat -antup | grep xrdp
 
tcp        0      0 127.0.0.1:3350          0.0.0.0:*               LISTEN      1257/xrdp-sesman
 
tcp        0      0 0.0.0.0:3389            0.0.0.0:*               LISTEN      1259/xrdp
cs

728x90

원문 : https://code.i-harness.com/ko-kr/q/196bb1c



win7에서이 명령을 실행할 수 있습니다.

box add homestead file:///c:/homestead.box

또한이 중 하나가 작동합니다 :

box add homestead file:///c:\homestead.box


728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$ sudo apt install php7.2-fpm
 
$ sudo apt install php7.2-curl php7.2-gd php7.2-mbstring php7.2-mysql php7.2-xml php7.2-zip (For Laravel)
 
$ sudo service php7.2-fpm restart
 
 
 
$ sudo apt install nginx
 
$ sudo ufw allow 'Nginx HTTP'
 
 
 
$ sudo apt-get install software-properties-common
 
$ sudo add-apt-repository 'deb [arch=amd64,arm64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.3/ubuntu xenial main'
 
$ sudo apt update
 
$ sudo apt install mariadb-server
 
$ sudo mysql_secure_installation
 
$ sudo service mariadb restart
cs

우분투 사용자 추가

Ubuntu2018. 12. 12. 17:29
728x90

$ sudo adduser tester


$ sudo adduser tester sudo


$ sudo deluser tester

원격 저장소 만들기

Git2018. 12. 7. 12:11
728x90

$ git init --bare git_folder