概述
1.移动硬盘的挂载
## 移动硬盘的挂载
sudo mkdir /mnt/h
sudo mount -t drvfs H: /mnt/h
## 卸载
sudo umount
/mnt/h
## 必须卸载,这样才能正常弹出,否则会提示一直占用。
## 下次用的话还需重新挂载
2.远程登录问题及IP的获取
如果以下命令没输出结果,则需要安装ssh服务
ps -e | grep ssh
安装命令
sudo apt-get install openssh-server
然后再启动服务
sudo /etc/init.d/ssh start
获取ip,远程登录及文件传输
ifconfig
ssh hostname@ip
scp file hostname@ip:/path/
3.安装ssh服务出现问题
sudo apt-get install openssh-server
The following packages have unmet dependencies:
openssh-server : Depends: openssh-client (= 1:7.6p1-4ubuntu0.4) but 1:8.2p1-4ubuntu0.1 is to be installed
E: Unable to correct problems, you have held broken packages.
则需要安装openssh-client对应的版本
sudo apt-get install openssh-client=1:7.6p1-4ubuntu0.4
然后再执行前面的启动服务就OK了
如果
ps -e | grep ssh 还是没输出
则再一次执行
sudo apt-get install openssh-server
会输出:
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
接下来执行sudo apt autoremove这个命令,然后启动服务就可以了
有的
sshd服务系统默认并没有开启,我们需要安装ssh服务,再启动
sudo ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
sudo ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
or
# sudo ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ""
最后
以上就是谨慎月光为你收集整理的关于ubuntu子系统ip和远程登录问题及移动硬盘的挂载的全部内容,希望文章能够帮你解决关于ubuntu子系统ip和远程登录问题及移动硬盘的挂载所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复