我刚刚通过单击 Rstudio 网站 (Ubuntu 64 位) 上的链接并在“Ubuntu 软件中心”中打开生成的文件安装了新版本的 Rstudio (1.0.136)。在显示“进度”很长时间后,Ubuntu 软件中心会显示一个绿色复选标记,上面写着“已安装”,所以我的问题是:它在哪里?如果我在“文件”搜索窗口中输入 rstudio,我只会得到一个包含以前版本的 Rstudio (Rstudio-0.99.903) 的文件夹,但找不到新版本。
答案1
包裹叫什么名字“rstudio……”? 如果你安装了 synaptic,你可以搜索工作室然后查看包属性以查看哪些文件安装在哪里。
或者,您可以从终端使用dpkg
( dpkg-query
) 和以下命令搜索并显示文件:
dpkg-query actions
See dpkg-query(1) for more information about the following actions.
-l, --list package-name-pattern...
List packages matching given pattern.
-s, --status package-name...
Report status of specified package.
-L, --listfiles package-name...
List files installed to your system from package-name.
-S, --search filename-search-pattern...
Search for a filename from installed packages.
dpkg-query --list rstudio
因此,使用通配符或类似以下方式查找包名称
dpkg-query --list "*rstudio*"
然后显示使用确切的包名称安装了哪些文件(假设它是工作室以下
dpkg-query --listfiles rstudio
要不就使用以下方式搜索任意位置find
假设文件名某处包含“rstudio”:
find / -type f -iname "*rstudio*" 2>/dev/null
只是2>/dev/null
为了忽略有关拒绝搜索某些目录的权限的警告。