当前位置: 首页>>技术教程>>正文


如何从终端打开文件夹(带GUI)?

, ,

问题描述

我想在我的统一面板(ubuntu 12.10)中放置一个链接/快捷方式/启动器。

我在handytutorial.com上按照this tutorial创建了一个自定义启动器并将其拖到面板上。

我只需要知道我必须输入哪个命令。这可能吗?

最佳解决方案

gnome-open在12.04对我不起作用,但打开nautilus /path确实有效。

例如:nautilus /home/john/Downloads

次佳解决方案

如果问题是如何打开文件/文件夹,答案总是xdg-open。

来自man xdg-open

xdg-open opens a file or URL in the user’s preferred application. If a URL is provided the URL will be opened in the user’s preferred web browser. If a file is provided the file will be opened in the preferred application for files of that type. xdg-open supports file, ftp, http and https URLs.

在这个特定情况下的命令

xdg-open folder

在默认文件管理器中打开文件夹,无论是Nautilus,Dolphin,Thunar还是其他任何东西。

第三种解决方案

打开文件夹的快捷方式?如果这是你想要的,那么命令是:

gnome-open </path/to/folder>

例如:gnome-open /home/Tiago/Downloads

如果未安装,请运行sudo apt-get install libgnome2-bin

第四种方案

使用命令nautilus <path>

例如:nautilus /home/oaskamay将打开我的家(~)文件夹。

此外,如果您需要具有root权限的open-up GUI,请运行gksu nautilus <path>。它也适用于每个GUI front-ends(例如gksu gedit /etc/default/grub)。

重要的是要注意,你永远不应该像sudo gedit /etc/default/grub那样启动GUI应用程序。

第五种方案

xdg-open适用于ubuntu 16.04。我只将此命令的副本复制为open

sudo cp /usr/bin/xdg-open /usr/bin/open
sudo chmod 775 /usr/bin/open

现在你可以像在mac os上一样使用它:

open ./

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/1346.html,未经允许,请勿转载。