如何从linux / fedora中的usr / bin删除文件夹或文件

时间:2012-06-22 07:40:07

标签: linux fedora

我正在使用fedora,

不幸的是我在bin文件夹中下载了一个包(例如'selenium'或'chrome')。 但我不想在bin文件夹中的那个包,我想从文件夹中删除它,我无法手动以及从终端,所以任何人都可以让我知道如何从bin文件夹中删除包

其实我正在尝试从终端

下载如下的软件包
svn checkout http://selenium.googlecode.com/svn/trunk/ selenium- 
read-only

但我在下载时没有看到我的终端路径,即usr/bin,所以包已经在bin文件夹中下载了。 请帮我解决这个问题。

1 个答案:

答案 0 :(得分:2)

/ usr / bin文件夹是受保护的文件夹,通常root用户可以完全访问它 因此,如果您想对其进行更改,您应该具有完全访问权限,可以通过“su”或“sudo”命令获得 在终端上试试这些命令

su
<type your root password>
cd /usr/bin
rm <your special file names you want to remove>

你也可以通过sudo来实现

cd /usr/bin
sudo rm <your special file names you want to remove>
<type your root password>