add others

open PDF file from ssh server
This commit is contained in:
onceupon 2017-01-19 14:23:52 +08:00 committed by GitHub
parent 9d2e98bf97
commit 2134776d15

View File

@ -1268,14 +1268,22 @@ head -c 50 file
``` ```
#####open pictures/images from ssh server #####open pictures/images from ssh server
```bash ```bash
ssh -X user_name@ip_address 1. ssh -X user_name@ip_address
eog picture.png 2. apt-get eog
3. eog picture.png
``` ```
#####Use gedit on server (GUI editor) #####Use gedit on server (GUI editor)
```bash ```bash
ssh -X user_name@ip_address 1. ssh -X user_name@ip_address
gedit filename.txt 2. apt-get gedit
3. gedit filename.txt
```
#####open PDF file from ssh server
```bash
1. ssh -X user_name@ip_address
2. apt-get install evince
3. evince filename.pdf
``` ```
##System ##System