通过 ssh 浏览(或下载)R vignettes
browsing (or downloading) R vignettes through ssh
我通过 ssh 连接到我的工作计算机 (Linux Mint OS)。我正在尝试使用一个包,但我需要阅读文档。文档可通过 browseVignettes("package_name") 获得。但是,由于我是通过 ssh 连接的,因此无法打开 pdf 文件。如何将 pdf 下载到我的本地机器或通过 ssh 阅读它?包名称是 CODEX。
编辑:我在 Mac OS
R 使用 browseUrl
函数在浏览器中打开 URL。有关详细信息,请参阅 https://stat.ethz.ch/R-manual/R-devel/library/utils/html/browseURL.html。
您可以将此选项更改为您自己的功能:
options(browser = function(url) {cat("R asked to open url: ", url, "\n")} )
然后使用 SSH 的 X forwarding to launch a browser on your remote machine (e.g. firefox
) and display it on your local screen, or use the SOCKS proxy 功能通过您的 MacOS 浏览器连接。
我通过 ssh 连接到我的工作计算机 (Linux Mint OS)。我正在尝试使用一个包,但我需要阅读文档。文档可通过 browseVignettes("package_name") 获得。但是,由于我是通过 ssh 连接的,因此无法打开 pdf 文件。如何将 pdf 下载到我的本地机器或通过 ssh 阅读它?包名称是 CODEX。
编辑:我在 Mac OS
R 使用 browseUrl
函数在浏览器中打开 URL。有关详细信息,请参阅 https://stat.ethz.ch/R-manual/R-devel/library/utils/html/browseURL.html。
您可以将此选项更改为您自己的功能:
options(browser = function(url) {cat("R asked to open url: ", url, "\n")} )
然后使用 SSH 的 X forwarding to launch a browser on your remote machine (e.g. firefox
) and display it on your local screen, or use the SOCKS proxy 功能通过您的 MacOS 浏览器连接。