本文主要是介绍Linux与MobaXterm注意事项安装redis,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
PS:图形桌面与命令行模式相关切换快捷键
1、图形桌面--->命令行模式:Ctrl+Alt+F1/F2/F3/F4/F5/F6
2、命令行模式--->图形桌面:Ctrl+Alt+F7
3、解除命令行模式锁定光标快捷键:Ctrl+Alt
转自链接:https://blog.csdn.net/yanlaifan/article/details/53907104
解决mobaxterm无法与虚拟机进行ssh通信
https://blog.csdn.net/liubinhaoma/article/details/99962790
1、安装openssh-server
输入命令sudo apt-get install openssh-server 这条命令就是通过互联网安装openssh-server,结果显示无法连接到网址,说白了就是无法上网嘛。
那就先解决上网的问题。网上搜索,发现虚拟机要上网有三种方式,最简单快捷的就是将虚拟机的网络模式设置为NAT(网络地址转换模式),在这种模式下只要宿主机能上网虚拟机就能上网。
下载安装完成后,用命令(sudo service ssh start)开启ssh服务,用命令(sudo ps -e|grep -ssh)查看是否已经开启ssh,果然已经成功开启ssh。
2、在mobaxterm中开启ssh
打开mobaxterm,选择ssh,输入虚拟机的IP地址后点确认,输入虚拟机的登录名字和密码后,成功进入虚拟机。
出现Permission denied的解决办法
https://blog.csdn.net/qq_16525279/article/details/80245350
Linux安装maven:
https://maven.apache.org/download.cgi
https://www.cnblogs.com/cannel/p/11104190.html
https://www.cnblogs.com/puretuo/p/11805245.html
Linux安装redis和部署
https://www.cnblogs.com/zdd-java/p/10288734.html
更新环境变量出问题:
Command 'lesspipe' is available in the following places* /bin/lesspipe* /usr/bin/lesspipe
The command could not be located because '/bin:/usr/bin' is not included in the PATH environment variable.
lesspipe: command not found
Command 'dircolors' is available in '/usr/bin/dircolors'
The command could not be located because '/usr/bin' is not included in the PATH environment variable.
dircolors: command not found
Command 'ls' is available in '/bin/ls'
The command could not be located because '/bin' is not included in the PATH environment variable.
ls: command not found
https://blog.csdn.net/weixin_43380510/article/details/83352212
这篇关于Linux与MobaXterm注意事项安装redis的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!