####################################
# Client 작업
####################################
# 디렉토리 목록 보기
ls
# jlee.pem이라는 파일을 텍스트 에디터(vi)로 열기
vi jlee.pem
# 복사한 키값 붙여넣기
# 파일 저장 (vi 명령어)
:wq [Enter]
# 서버에 접속 (ID jlee 이용)
ssh -i jlee.pem jlee@3.34.50.95
####### pem 파일의 접근권한이 너무 광범위하다는 오류 발생
# 파일 목록 확인
ll
# pem 파일의 접근권한 변경 (600 - 오직 소유자만 읽고 쓸수 있음)
chmod 600 jlee.pem
# 서버에 재접속 (ID jlee 이용)
ssh -i jlee.pem jlee@3.34.50.95
####################################
# Server 작업
####################################
# server.txt라는 파일에 "This is the server file"이라는 텍스트를 저장
echo "This is the server file" > server.txt
# 파일 목록 확인
ls
# 파일 목록 확인 (모든 파일, 보기형식은 상세리스트)
ls -al
# ls -al 의 별칭
ll
# 이제 현재 사용자 홈 폴더(~/)에 server.txt 파일이 생성된 것을 확인
# 서버 접속 종료
exit
####################################
# Client 작업
####################################
# 서버와 동기화할 폴더 생성
mkdir server
# 서버의 홈폴더와 로컬폴더(./server) 동기화 (서버에서 로컬로 다운로드)
rsync -avh -e "ssh -i jlee.pem" jlee@3.34.50.95:~/ ./server/
# 동기화폴더 내용 확인
ll server
# 다운받은 server.txt파일 내용 확인
cat server/server.txt
# server.txt 파일에 내용 추가
echo "Client updated the file" >> server/server.txt
# 추가된 내용 확인
cat server/server.txt
# 로컬폴더(./server) 와 서버의 홈폴더와 동기화 (로컬에서 서버로 업로드)
rsync -avh -e "ssh -i jlee.pem" ./server/ jlee@3.34.50.95:~/
### 서버로 변경된 파일 한 개만 업로드 된것을 볼 수 있음
# 서버 접속
ssh -i jlee.pem jlee@3.34.50.95
####################################
# Server 작업
####################################
# 파일 목록 확인
ls
# 업로드 된 server.txt파일 내용 확인
cat server.txt
# 서버 접속 종료
exit
Share this recording
Link
Append ?t=30
to start the playback at 30s, ?t=3:20
to start the playback at 3m 20s.
Embed image link
Use snippets below to display a screenshot linking to this recording.
Useful in places where scripts are not allowed (e.g. in a project's README file).
HTML:
Markdown:
Embed the player
If you're embedding on your own page or on a site which permits script tags, you can use the full player widget:
Paste the above script tag where you want the player to be displayed on your page.
See embedding docs for additional options.
Download this recording
You can download this recording in asciicast v2 format, as a .cast file.
DownloadReplay in terminal
You can replay the downloaded recording in your terminal using the
asciinema play
command:
asciinema play 678243.cast
If you don't have asciinema CLI installed then see installation instructions.
Use with stand-alone player on your website
Download asciinema player from
the releases page
(you only need .js
and .css
file), then use it like this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="asciinema-player.css" />
</head>
<body>
<div id="player"></div>
<script src="asciinema-player.min.js"></script>
<script>
AsciinemaPlayer.create(
'/assets/678243.cast',
document.getElementById('player'),
{ cols: 185, rows: 40 }
);
</script>
</body>
</html>
See asciinema player quick-start guide for full usage instructions.
Generate GIF from this recording
While this site doesn't provide GIF conversion at the moment, you can still do it yourself with the help of asciinema GIF generator utility - agg.
Once you have it installed, generate a GIF with the following command:
agg https://asciinema.org/a/678243 demo.gif
Or, if you already downloaded the recording file:
agg demo.cast demo.gif
Check agg --help
for all available options. You can change font
family and size, select color theme, adjust speed and more.
See agg manual for full usage instructions.