我有一个在windows中创建的R文件。该文件包含以下代码
print(5+7)
fileConn<-file("ch7.txt","w+")
close(fileConn)
代码在windows R中运行得很好,但是当我试图从Linux运行该文件时,我得到了一个错误。我在我的Linux机器上运行了R,并且输入了下面的命令。
> source('R_linux.R')
[1] 12
Error in file("ch7.txt", "w+") : cannot open the connection
I
我想将一个文件从我的远程linux ubuntu服务器传输到我的本地windows计算机,但是它给了我这个错误。
ssh: Could not resolve hostname c: Temporary failure in name resolution
下面是我输入到linux服务器命令行中的命令
scp -r root@MY.LINUX.IP:/var/www/test.py C:/Users/test/Desktop/
我有Windows 10,现在我已经安装了VM和它;我已经安装了Kali Linux。
但问题是,每当我尝试使用git或sudo命令时,它都会显示
-bash: sudo: command not found
-bash: git: command not found
该怎么办呢?它甚至不适用于Windows终端。