LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-10-2013, 06:24 PM   #1
nsclight
LQ Newbie
 
Registered: Oct 2013
Posts: 7

Rep: Reputation: Disabled
Unhappy Uninstall a program???


Help... How do I uninstall a program. Related to this is that I am not able to find the program in umbuntu software center, yet I am able to log into the program. I want to uninstall it and try to reinstall it properly. The program is not working completly.
 
Old 10-10-2013, 06:34 PM   #2
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,503

Rep: Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489
Indicating what the program is might help. You should be able to remove it with apt-get from a terminal.
 
Old 10-10-2013, 07:09 PM   #3
nsclight
LQ Newbie
 
Registered: Oct 2013
Posts: 7

Original Poster
Rep: Reputation: Disabled
'The program is Skype. You mentioned "You should be able to remove it with apt-get from a terminal". How do I do that?
 
Old 10-10-2013, 08:13 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,323
Blog Entries: 28

Rep: Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141
Run apt-get with root privileges. You have two choices:

Code:
apt-get remove [packagename]    <-----Removes program, leaves config files.
apt-get purge [packagename]    <---------Removes everything associated with the program
Run apt-get --help or man apt-get for more details.

Last edited by frankbell; 10-10-2013 at 08:16 PM.
 
Old 10-10-2013, 08:18 PM   #5
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,

the method of uninstalling software depends on the method used to install it. How did you install it?

Evo2.
 
Old 10-10-2013, 08:22 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,980

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
Extra info maybe. http://askubuntu.com/questions/22806...stalling-skype

$ sudo apt-get remove skype skype-bin

Last edited by jefro; 10-10-2013 at 08:24 PM.
 
Old 10-10-2013, 08:27 PM   #7
nsclight
LQ Newbie
 
Registered: Oct 2013
Posts: 7

Original Poster
Rep: Reputation: Disabled
I went online to skype.com to download it.
 
Old 10-10-2013, 08:29 PM   #8
nsclight
LQ Newbie
 
Registered: Oct 2013
Posts: 7

Original Poster
Rep: Reputation: Disabled
How do I run apt-get?
 
Old 10-10-2013, 08:29 PM   #9
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,
Quote:
Originally Posted by nsclight View Post
I went online to skype.com to download it.
What was the name of the file you downloaded and what did you do after downloading it?

Evo2.
 
Old 10-10-2013, 08:31 PM   #10
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,
Quote:
Originally Posted by nsclight View Post
How do I run apt-get?
By typing "apt-get" into a terminal and pressing enter. However, it seems you did not use your package manager to install skype, so apt-get will not be able to uninstall it.

Evo2.
 
Old 10-10-2013, 08:39 PM   #11
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
<programs> <utility> <terminal or counsel> then:
Quote:
Originally Posted by frankbell View Post
Run apt-get with root privileges. You have two choices:

Code:
apt-get remove [packagename]    <-----Removes program, leaves config files.
apt-get purge [packagename]    <---------Removes everything associated with the program
Run apt-get --help or man apt-get for more details.
Quote:
Originally Posted by jefro View Post
Extra info maybe. http://askubuntu.com/questions/22806...stalling-skype

$ sudo apt-get remove skype skype-bin
or su if you don't have sudo

How to use Bash...

Last edited by jamison20000e; 10-10-2013 at 08:41 PM.
 
1 members found this post helpful.
Old 10-12-2013, 08:16 PM   #12
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,323
Blog Entries: 28

Rep: Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141
If it was a *.deb file installed locally with dpkg, I think that dpkg can be used to uninstall it. I've never needed to do that, because I've not wanted to remove any packages that I installed with dpkg.

From the man file:

Quote:
deinstall--The package is selected for deinstallation (i.e. we want to
remove all files, except configuration files).

purge--The package is selected to be purged (i.e. we want to remove
everything from system directories, even configuration files).
The syntax would be like this:

Code:
dpkg deinstall|purge [packagename]
I looked at the man page for gdebi and it does not seem to include a "remove" function, but I would hope that dpkg could handle that; I'm too lazy to test it tonight, though.

Otherwise, it is necessary to know exactly how the package was installed.
 
Old 10-12-2013, 11:00 PM   #13
jmc1987
Member
 
Registered: Sep 2009
Location: Oklahoma
Distribution: Debian, CentOS, windows 7/10
Posts: 893

Rep: Reputation: 119Reputation: 119
apt-get or aptitude is just the front end to dpkg. dpkg is the debian package manager, but it doesn't resolve dependicies. if you installed it through the gui method by clicking on it, then you probably installed it with gdebi.

"apt-get remove skype" should do the job.

Have you tried that as said above? What where your results, can you give screen shots or something. apt-get will remove the program. dpkg is more for the advanced users and is hard to use by its self if you don't clearly understand it.
 
Old 10-13-2013, 09:39 AM   #14
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
It's always nice to know when\how solved...

If I remember correctly I used Synaptic for my brief time with Ubuntu, simply because I like it.

Last edited by jamison20000e; 10-13-2013 at 09:53 AM.
 
Old 10-13-2013, 02:51 PM   #15
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Quote:
How do I run apt-get?
you open a terminal and run
( on Ubuntu )
Code:
sudo apt-get --help
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
uninstall a program trempel Linux - Newbie 3 01-16-2006 01:32 PM
Uninstall program hlinux Fedora 3 04-21-2005 02:52 PM
How do I uninstall a program? sourlinux Linux - Software 4 01-27-2004 07:25 PM
uninstall program huno Linux - Software 1 12-06-2003 08:47 AM
How do i uninstall a program? BajaNick Linux - Software 5 07-10-2003 07:33 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:42 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration