1 下载vcftools
wget https://sourceforge.net/projects/vcftools/files/vcftools_0.1.13.tar.gz/download -o vcftools_0.1.13.tar.gz
tar zxvf vcftools_0.1.13.tar.gz
提示:
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
解决办法:
1、这个压缩包没有用gzip格式压缩,所以不用加z指令就可以了
tar -xvf vcftools_0.1.13.tar.gz
依然有该提示
2、可以先用gzip -d 解压 再用tar -zxvf 展开
依然有该提示
3、先重命名再解压
mv vcftools_0.1.13.tar.gz vcftools_0.1.13.tar
tar -xvf vcftools_0.1.13.tar.gz
又出现提示:
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
4、原因可能是用wget命令直接下载的vcftools,这是问题的根源,改用conda 下载
#下载
conda install -c bioconda vcftools
#查看软件位置
which vcftools
2 linux与Filezilla链接
比较可靠的方法参考这个帖子//www.greatytc.com/p/c6c75d8286f3
我的是已经安装了但是未启动,重新启动时提示:unrecognized service
解决办法:
sudo apt-get update
sudo apt-get install openssh-server
sudo service ssh start
sudo ps -e |grep ssh
结果FIleZilla还是连接不上,提示无法连接服务器
原因1:IP地址有问题,利用windows ping Linux的IP发现是可以ping上的,故排除
原因2:远程登录未开启
#首先切换到root用户,之后修改config文件
vi /etc/ssh/sshd_config
#在这个文件中找到以下内容 找不到可直接添加
PermitRootLogin yes
StrictModes no
PasswordAuthentication yes
保存后重新启动
/etc/init.d/ssh restart
重新连接FileZilla成功
参考这篇帖子:https://blog.csdn.net/hdbzh/article/details/119462689
3关于Linux的IP
用ipconfig命令查看
发现有两个IP 两个都用FileZilla连接,都可以连接上