1 / 43
文档名称:

mod.pptx

格式:pptx   大小:3,298KB   页数:43页
下载后只包含 1 个 PPTX 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

mod.pptx

上传人:wz_198613 2021/2/11 文件大小:3.22 MB

下载得到文件列表

mod.pptx

相关文档

文档介绍

文档介绍:Open Your VM (Of Cause!)
First Step is?
Then…
Wait, if we already have a server
You can use different tools
Putty
VNC
Putty
Normally, we can use this tool
VNC
How about we already have the
desktop, can we use that?
Example: VNC Viewer
Easy way …
Example: VNC Sever Configuration
But, before we can use this tool,
we need to configure our server.
Install
yum install tigervnc-server
Start and set password:
vncserver :1
Configure: vim /etc/sysconfig/vncservers 
Add a line VNCSERVERS="1:root“
Restart the VNC server
service vncserver restart
If we want the SVN server starts automatically
chkconfig vncserver on
Play With Linux …
cd, ls – Were already mentioned
Navigate
Normally, we have to use command line
I don’t want to re-type the same word
Try to use history:
history
!lineNum
Ctrl + R
What if my command typing is wrong ?
Command line editing
In this case, you need command line editing
Moving
Ctrl-a Move cursor to the beginning of the line.
Ctrl-e Move cursor to the end of the line.
Ctrl-f Move cursor forward one character; same as the right arrow key.
Ctrl-b Move cursor backward one character; same as the left arrow key.
Alt-f Move cursor forward one word.
Alt-b Move cursor backward one word.
Ctrl-l Clear the screen and move the cursor to the top left corner. The clear command does the same thing.
Command line editing
Editing
Ctrl-d Delete the character at the cursor location
Ctrl-t Transpose(exchange)the character at the cursor location with the one preceding it.
Alt-t Transpose the word at the cursor location with the one preceding it.
Alt-l Convert the characters from the cursor location to the end of the word to lowercase.
Alt-u Convert the characters from the cursor location to the end of the word to uppercase.
What if my command typing is wrong (Con.) ?