Issue
I am using fedora ,
Unfortunately i had downloaded a package(for example 'selenium' or 'chrome') in the bin folder. But i don't want that package in the bin folder, i want to remove it from the folder, i am unable do it manually as well as from the the terminal, so can anyone let me know how to delete a package from bin folder.
Actually i am trying to download a package as below from terminal
svn checkout http://selenium.googlecode.com/svn/trunk/ selenium-
read-only
But i didn't see my path in terminal when i am downloading i.e., usr/bin
, so the package has been downloaded in bin folder now.
Please help me out through this.
Solution
the /usr/bin folder is a protected folder which usually root user have full access to it so if you want to make a change in it you should have a full access which can gain by "su" or "sudo" commands try these commands on your terminal
su
<type your root password>
cd /usr/bin
rm <your special file names you want to remove>
you can do it by sudo too
cd /usr/bin
sudo rm <your special file names you want to remove>
<type your root password>
Answered By - Isa Hekmat Answer Checked By - Marie Seifert (WPSolving Admin)