Re: Uninstalling kde3 meta-port

2008-12-03 Thread Leslie Jensen



Leslie Jensen skrev:



Mel skrev:

On Tuesday 02 December 2008 08:38:02 Leslie Jensen wrote:


How would you guys uninstall a meta-port?

I'm considering a move to kde4 but I want a clean install, so I want to
remove the kde3 meta-port first.


cd /usr/ports/x11/kde3
for dep in `make -V RUN_DEPENDS`; do origin=${dep##*:};
portname=`make -C ${origin} -V PORTNAME`;
pkg_delete -Xf "^${portname}-[0-9\.,_]+\$";
done
cd /usr/ports/ports-mgmt/pkg_cutleaves
make install
pkg_cutleaves -xg

Delete all leaves you are sure you don't need anymore, till no leaves 
are left.


Thanks Mel

I did a

[EMAIL PROTECTED]/usr/ports/x11/kde3:make PORTNAME
make: don't know how to make PORTNAME. Stop

How do I solve the error?

/Leslie




Problem solved

Answering my own question. I forgot the -V.




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-03 Thread Leslie Jensen



Mel skrev:

On Tuesday 02 December 2008 08:38:02 Leslie Jensen wrote:


How would you guys uninstall a meta-port?

I'm considering a move to kde4 but I want a clean install, so I want to
remove the kde3 meta-port first.


cd /usr/ports/x11/kde3
for dep in `make -V RUN_DEPENDS`; do 
	origin=${dep##*:};

portname=`make -C ${origin} -V PORTNAME`;
pkg_delete -Xf "^${portname}-[0-9\.,_]+\$";
done
cd /usr/ports/ports-mgmt/pkg_cutleaves
make install
pkg_cutleaves -xg

Delete all leaves you are sure you don't need anymore, till no leaves are 
left.


Thanks Mel

I did a

[EMAIL PROTECTED]/usr/ports/x11/kde3:make PORTNAME
make: don't know how to make PORTNAME. Stop

How do I solve the error?

/Leslie


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread RW
On Tue, 2 Dec 2008 13:35:40 +0100
Mel <[EMAIL PROTECTED]> wrote:

> On Tuesday 02 December 2008 08:38:02 Leslie Jensen wrote:
> 
> > How would you guys uninstall a meta-port?
> >
> > I'm considering a move to kde4 but I want a clean install, so I
> > want to remove the kde3 meta-port first.
> 
> cd /usr/ports/x11/kde3
> for dep in `make -V RUN_DEPENDS`; do 
>   origin=${dep##*:};
>   portname=`make -C ${origin} -V PORTNAME`;
>   pkg_delete -Xf "^${portname}-[0-9\.,_]+\$";
> done
> cd /usr/ports/ports-mgmt/pkg_cutleaves
> make install
> pkg_cutleaves -xg
> 
> Delete all leaves you are sure you don't need anymore, till no leaves
> are left.

If I were you I'd skip the loop at the top and just run  the
pkg_cutleaves command, delete kde3 and work down through the
new leaf-dependencies.

The loop takes out the first level of  kde3 dependencies, saving you a
few seconds in pkg_cutleaves, but also deletes x11-toolkits/qt33,
which is required by some non-kde apps such as Opera.  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread andrew clarke
On Tue 2008-12-02 19:26:40 UTC+0530, Masoom Shaikh ([EMAIL PROTECTED]) wrote:

> > How would you guys uninstall a meta-port?
>
> can try `pkg_delete -a`

No Masoom, this is wrong advice.  pkg_delete(1) manpage:

 -a, --all
 Unconditionally delete all currently installed packages.

(Assuming you weren't trying to be "funny")
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread Masoom Shaikh
can try `pkg_delete -a`

On Tue, Dec 2, 2008 at 1:08 PM, Leslie Jensen <[EMAIL PROTECTED]> wrote:

> Hi
>
> How would you guys uninstall a meta-port?
>
> I'm considering a move to kde4 but I want a clean install, so I want to
> remove the kde3 meta-port first.
>
> Thanks
>
> /Leslie
>
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> [EMAIL PROTECTED]"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread Leslie Jensen


Jerry skrev:

On Tue, 02 Dec 2008 08:38:02 +0100
Leslie Jensen <[EMAIL PROTECTED]> wrote:


How would you guys uninstall a meta-port?

I'm considering a move to kde4 but I want a clean install, so I want
to remove the kde3 meta-port first.


Well, you might try navigating to the kde3 port 
and running: make deinstall. Alternately, you could try running
something like 'pkg_delete'; i.e.: "pkg_delete -vdf kde-3.5.10".



Well, I tried your first suggestion before I posted, and it only removes 
the meta-port but none of the ports it has installed. The second 
suggestion I have not tried because I want it to do a recursive 
deinstall without touching any ports that are dependencies of other 
installed ports. Maybe it is as simple as pkg_delete -r, but because I 
saw what happend when deinstaling the meta-port I felt I needed to ask 
to be sure. I could ofcourse deinstall kde, kdebase, kdehier and so 
forth but I'm looking for a smarter way to do it.


/Leslie
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread Mel
On Tuesday 02 December 2008 08:38:02 Leslie Jensen wrote:

> How would you guys uninstall a meta-port?
>
> I'm considering a move to kde4 but I want a clean install, so I want to
> remove the kde3 meta-port first.

cd /usr/ports/x11/kde3
for dep in `make -V RUN_DEPENDS`; do 
origin=${dep##*:};
portname=`make -C ${origin} -V PORTNAME`;
pkg_delete -Xf "^${portname}-[0-9\.,_]+\$";
done
cd /usr/ports/ports-mgmt/pkg_cutleaves
make install
pkg_cutleaves -xg

Delete all leaves you are sure you don't need anymore, till no leaves are 
left.
-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling kde3 meta-port

2008-12-02 Thread Jerry
On Tue, 02 Dec 2008 08:38:02 +0100
Leslie Jensen <[EMAIL PROTECTED]> wrote:

>How would you guys uninstall a meta-port?
>
>I'm considering a move to kde4 but I want a clean install, so I want
>to remove the kde3 meta-port first.

Well, you might try navigating to the kde3 port 
and running: make deinstall. Alternately, you could try running
something like 'pkg_delete'; i.e.: "pkg_delete -vdf kde-3.5.10".

-- 
Jerry
[EMAIL PROTECTED]

Everybody wants to go to heaven, but nobody wants to die.


signature.asc
Description: PGP signature


Re: Uninstalling a port

2008-02-11 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Darryl Hoar wrote:
> Greetings,
> I have Freebsd 6.3-release installed on my server.  I used ports 
> to install mysql 4.0 on this machine.  Turns out, I really need
> mysql 4.1.  What is the proper technique to remove the mysql 4
> and then install mysql 4.1 ?
> 
> I tried make deinstall, but it says it doesn't know how.

Firstly, make sure you don't have any 'WANT_MYSQL_VER= XX' settings
in /etc/make.conf while doing this -- you can put such things back in
place once this update is complete.

Assuming you're a portupgrade user, do the following in this order:

   # portupgrade -o databases/mysql41-client -f mysql-client-4.0\*
   # portupgrade -o databases/mysql41-server -f mysql-server-4.0\*

Then possibly one or both of the following if you have either of these
two ports installed -- if not then just omit this bit:

   # portupgrade -o databases/p5-DBD-mysql41 -f p5-DBD-mysql40-\*
   # portupgrade -o databases/mysql41-scripts -f mysql-scripts-4.0\*

Then rebuild anything that might link against the libmysql shlib,
as you've just replaced it with a later ABI version:

   # portupgrade -fr -x '>=mysql-client-4.1.22' mysql-client-4.1.22 

That rebuilds everything that depends on the mysql client libraries
except for packages rebuilt after the updates to the client libraries
at the beginning of these instructions.

Cheers,

Matthew

- -- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHsL4Q8Mjk52CukIwRCP3JAJ40TzR0ovo/z7+CM/7CjDiJVkS6TQCffQYc
sCtWgtDiVxRwmTBj7B3Sn6A=
=TuVR
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling a port

2008-02-11 Thread Lowell Gilbert
"Darryl Hoar" <[EMAIL PROTECTED]> writes:

> I have Freebsd 6.3-release installed on my server.  I used ports 
> to install mysql 4.0 on this machine.  Turns out, I really need
> mysql 4.1.  What is the proper technique to remove the mysql 4
> and then install mysql 4.1 ?
>
> I tried make deinstall, but it says it doesn't know how.

Can you quote the error message exactly?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling a port

2008-02-11 Thread David Alanis

Darryl:

You can use pkg_delete and it might complain that it cannot remove it  
thus it is needed by other packages. In this case you make need to  
remove that package and reinstall it.


I have this in my make.conf


DEFAULT_PHP_VER=5
DEFAULT_MYSQL_VER=50 << so just change this to VER=4_1 
APACHE_PORT=www/apache22


Thxs,
David Alanis

Quoting Darryl Hoar <[EMAIL PROTECTED]>:


Greetings,
I have Freebsd 6.3-release installed on my server.  I used ports
to install mysql 4.0 on this machine.  Turns out, I really need
mysql 4.1.  What is the proper technique to remove the mysql 4
and then install mysql 4.1 ?

I tried make deinstall, but it says it doesn't know how.

thanks,
Darryl
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"






This message was sent using IMP, the Internet Messaging Program.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling a port

2008-02-11 Thread Albert Shih
 Le 11/02/2008 à 10:31:53-0600, Darryl Hoar a écrit
Hi

> I have Freebsd 6.3-release installed on my server.  I used ports 
> to install mysql 4.0 on this machine.  Turns out, I really need
> mysql 4.1.  What is the proper technique to remove the mysql 4
> and then install mysql 4.1 ?

Backup you databases.

Backup you mysql config (if you change anything from standard)

search the exact version

pkg_info|grep mysql

use

pkg_delete mysql-exact_version

regards.

--
Albert SHIH
Observatoire de Paris Meudon
SIO batiment 15
Heure local/Local time:
Lun 11 fév 2008 17:36:28 CET
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Ports Question

2007-04-10 Thread Placid Publishing, LLC
Thanks Bill. I use the port upgrade suit for all of my port management 
needs. I guess what I can do is just pkg_info the pkg I am going to 
delete then see if I need the deps or not and un-install them as well.


Bill Moran wrote:

In response to "Placid Publishing, LLC" <[EMAIL PROTECTED]>:

  
Say I have a new system with nothing installed on it yet from the ports 
collection. Lets say I install Apache and lets say it requires php, 
python, perl, and ruby. Now lets say I uninstall Apache with "pkg_delete 
Apache". Will it remove php, python, perl, and ruby? Or will it leave 
those packages? Even if nothing else is depending on them?



The system does not automatically clean up dependencies for you.  If
you uninstall a package that leave dependencies behind, you'll have to
clean them up yourself.

  
If it does, how can I remove those quickly with a pkg_* command? Also, 
what happens if other programs I installed later use php, python, or 
perl? I'm guessing they would just be left?



Install and use ports-mgmnt/pkg_cutleaves.  It solves these problems if
you always use it to uninstall software.

  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Ports Question

2007-04-10 Thread Bill Moran
In response to "Placid Publishing, LLC" <[EMAIL PROTECTED]>:

> Say I have a new system with nothing installed on it yet from the ports 
> collection. Lets say I install Apache and lets say it requires php, 
> python, perl, and ruby. Now lets say I uninstall Apache with "pkg_delete 
> Apache". Will it remove php, python, perl, and ruby? Or will it leave 
> those packages? Even if nothing else is depending on them?

The system does not automatically clean up dependencies for you.  If
you uninstall a package that leave dependencies behind, you'll have to
clean them up yourself.

> If it does, how can I remove those quickly with a pkg_* command? Also, 
> what happens if other programs I installed later use php, python, or 
> perl? I'm guessing they would just be left?

Install and use ports-mgmnt/pkg_cutleaves.  It solves these problems if
you always use it to uninstall software.

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: uninstalling packages...

2005-11-21 Thread Kris Kennaway
On Mon, Nov 21, 2005 at 03:07:40PM +, Alex Zbyslaw wrote:
> Javier Matos wrote:
> 
> >Hello, I want information about uninstallation of packages. I know how to 
> >perform that kind of actions but I really want to know if something like 
> >pkg_add "a_package" and then pkg_delete "a_package" really delete ALL 
> >FILES installed with pkg_add command.
> > 
> >
> In short, yes.  This isn't windows :-)
> 
> The long answer is that each package provides information about what 
> files it installs and thus what files to de-install.  So the maintainer 
> of the package/port has to get the list of files correct, but I've 
> rarely seen any problems.  So if you find that a package isn't deleting 
> something you should ask here or contact the port maintainer.

We monitor for it constantly on the pointyhat package build cluster.
It's sometimes the case with new ports or upgrades, but these are
almost always fixed within a day or two.

Kris


pgpM4bLzUlvap.pgp
Description: PGP signature


Re: uninstalling packages...

2005-11-21 Thread Alex Zbyslaw

Javier Matos wrote:


Hello, I want information about uninstallation of packages. I know how to perform that kind of 
actions but I really want to know if something like pkg_add "a_package" and then 
pkg_delete "a_package" really delete ALL FILES installed with pkg_add command.
 


In short, yes.  This isn't windows :-)

The long answer is that each package provides information about what 
files it installs and thus what files to de-install.  So the maintainer 
of the package/port has to get the list of files correct, but I've 
rarely seen any problems.  So if you find that a package isn't deleting 
something you should ask here or contact the port maintainer.


However, if you create any local configuration files (say, for example, 
/usr/local/etc/smartd.conf, or user specific openoffice directories) 
they shouldn't be deleted.


--Alex



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: uninstalling packages...

2005-11-21 Thread Lowell Gilbert
"Javier Matos" <[EMAIL PROTECTED]> writes:

> Hello, I want information about uninstallation of packages. I know how to 
> perform that kind of actions but I really want to know if something like 
> pkg_add "a_package" and then pkg_delete "a_package" really delete ALL FILES 
> installed with pkg_add command.

It's supposed to; that's one of the tests that porters are supposed to
make before submitting a port.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling software compiled from source

2005-05-25 Thread Alex Zbyslaw

Kris Kennaway wrote:


On Tue, May 24, 2005 at 05:17:00PM -0700, Mark Jayson Alvarez wrote:
 


Hi,
  Is there a way to remove all the components of a
software that was installed from its source? Make
uninstall doesn't work unlike when using the ports
tree.
   



Not really..that's one of the reasons why the ports collection is so
useful.  You might be able to get part of the way there by using
find(1) creatively to identify files installed around the same time.

 


Or try "make -n install" to see what it would install, then delete it.

--Alex


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling software compiled from source

2005-05-24 Thread Kris Kennaway
On Tue, May 24, 2005 at 05:17:00PM -0700, Mark Jayson Alvarez wrote:
> Hi,
>Is there a way to remove all the components of a
> software that was installed from its source? Make
> uninstall doesn't work unlike when using the ports
> tree.

Not really..that's one of the reasons why the ports collection is so
useful.  You might be able to get part of the way there by using
find(1) creatively to identify files installed around the same time.

Kris

pgpGslXsTaMmq.pgp
Description: PGP signature


Re: Uninstalling FreeBSD

2004-12-06 Thread Konrad Heuer

On Mon, 6 Dec 2004, Danny Browne wrote:

> Im in a rush to get this done, but i dont really know how.
>
> My laptop dual boots winXP and FreeBSD.
>
> However i now need to install Red Hat for a project im doing in college.
> so i want to get rid of my BSD installation to free up some space. and
> im in a major rush. i dont really have the time to spend on figuring it
> out and the BSD manual hasn't helped.
>
> Can i just wipe my BSD installation by formatting the partiton with
> partition-magic in windows?

I'm no expert in installing Dead Rat Linux :-), but I guess you will be
able to simply delete the FreeBSD slice and to reallocate the disk space
for a linux partition during the installation process.

> what effect does the BSD boot manager have on my xp installation? has it
> deleted my xp boot loader? if how do rectify this?

The FreeBSD boot manager will stay in place as long as you install lilo
into the Linux root partition. You may still use it to choose between
booting XP or Linux. If you don't want it, install lilo into the master
boot record.

You XP boot loader code has neither been hurt by FreeBSD nor will it be
hurt by Linux.

Regards

Konrad Heuer
GWDG, Am Fassberg, 37077 Goettingen, Germany, [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: uninstalling base packages

2004-05-12 Thread platanthera
On Wednesday 12 May 2004 17:04, Chris Ochs wrote:
> I want to uninstall the heimdal kerberos that comes in the base freebsd
> install.   How do you delete software packages that are in the base install
> and that I didn't install manually with the package system?
>
> Chris
>

You could adjust /etc/make.conf according to your needs and make build/install 
world. Then search for binaries that haven't been updated and delete them.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Port installed applications

2003-10-16 Thread Lowell Gilbert
"Michael Lee" <[EMAIL PROTECTED]> writes:

> What I want to know is that if I do not use portupgrade, can 'make
> deinstall' do what I expected ?

If the port hasn't been modified (e.g., by cvsup'ing ports) since it
was installed, yes.  Otherwise, you will need to do a pkg_delete(1). 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Port installed applications

2003-10-16 Thread parv
in message <[EMAIL PROTECTED]>,
wrote Michael Lee thusly...
>
> Say, there are 5 applications -- A, B, C, D, E
> 
> Installing A depends on B,C,D, and E.
...
> Supposed that E was also required by another application F which
> was already installed in the system, I wonder if I type 'make
> deinstall' under /usr/port/xxx/A and try to uninstall A, will the
> port system help me uninstall B,C,D but not uninstall E ?

I don't think the port system could help by itself, either like
portupgrade or "Add/Remove Software" on Windows.

If you know the dependencies, just do it yourself one port at
a time.  There are two ways: pkg_delete(1) (pkg_deinstall(1) comes from
portupgrade(1)) & "make deinstall", ports(7).

By default, pkg_delete will not remove a dependency (in your case
any of B, C, D, E) if the dependent port still exists (A) in the
ports database (/var/db/pkg).  You can force it though via "-f"
option, and recursively delete ports via "-r".  See pkg_delete(1)
for details.

The "deinstall" target (run in the directory of
to-be-deinstalled-port) will deinstall the dependency port, B, C, D,
or E, regardless of existence of a dependent port, A.  If the
dependent port exists, a warning message will be generated informing
you of the fact.

That has been my experience of w/ the ports so far.


Back to your case...

  - Remove A (either by pkg_delete or "make deinstall")
  - Remove B, C, D.
  - Done (since you need E, no need to do anything else).


PS: You should consider installing portupgrade only if to keep the
ports database current, like i do.


  - Parv

-- 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Port installed applications

2003-10-16 Thread Michael Lee
Thank you for your reply.
I know there was a tool called portupgrade that can manage the ports very
well.
What I want to know is that if I do not use portupgrade, can 'make
deinstall' do what I expected ?

Thanks!

Michael Lee

- Original Message - 
From: "Q" <[EMAIL PROTECTED]>
To: "Michael Lee" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, October 16, 2003 7:48 PM
Subject: Re: Uninstalling Port installed applications


> You are looking for the 'sysutils/portupgrade' port. It installs a tool
> called pkg_deinstall.
>
> So to achieve what you described, you would run 'pkg_deinstall -R A'
> and it would deinstall 'A' and any of its "orphaned" dependencies, ie.
> B, C, D but not E.
>
> Seeya...Q
>
> On Thu, 2003-10-16 at 21:41, Michael Lee wrote:
>
> > Hi,
> >
> > I have a question about uninstalling port.
> >
> > Say, there are 5 applications -- A, B, C, D, E
> >
> > Installing A depends on B,C,D, and E.
> > There is no problem that I type 'make install' under /usr/port/xxx/A
> > that the port system will help me install B,C,D,E since they are
required by
> > application A.
> > Supposed that E was also required by another application F which was
already
> > installed in the system,
> > I wonder if I type 'make deinstall' under /usr/port/xxx/A and try to
> > uninstall A,
> > will the port system help me uninstall B,C,D but not uninstall E ?
> >
> > Thank you!
> >
> > Michael Lee
> >
> > ___
> > [EMAIL PROTECTED] mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling Port installed applications

2003-10-16 Thread Q
You are looking for the 'sysutils/portupgrade' port. It installs a tool
called pkg_deinstall.

So to achieve what you described, you would run 'pkg_deinstall -R A' 
and it would deinstall 'A' and any of its "orphaned" dependencies, ie.
B, C, D but not E.

Seeya...Q 

On Thu, 2003-10-16 at 21:41, Michael Lee wrote:

> Hi,
> 
> I have a question about uninstalling port.
> 
> Say, there are 5 applications -- A, B, C, D, E
> 
> Installing A depends on B,C,D, and E.
> There is no problem that I type 'make install' under /usr/port/xxx/A
> that the port system will help me install B,C,D,E since they are required by
> application A.
> Supposed that E was also required by another application F which was already
> installed in the system,
> I wonder if I type 'make deinstall' under /usr/port/xxx/A and try to
> uninstall A,
> will the port system help me uninstall B,C,D but not uninstall E ?
> 
> Thank you!
> 
> Michael Lee
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling dependencies

2003-04-05 Thread Konrad Scorciapino
On Saturday 05 April 2003 20:08, you wrote:
> In <[EMAIL PROTECTED]>, Konrad Scorciapino 
<[EMAIL PROTECTED]> typed:
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Uninstalling dependencies

2003-04-05 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Konrad Scorciapino <[EMAIL PROTECTED]> typed:
> How can I uninstall all dependencies of a port?

Install the portupgrade port, and use "pkg_deinstall -r".

Alternatively,

# pkg_delete -f $(pkg_info -R  | sed 1,/Required/d)

should do the trick. But this doesn't handle dependencies of the
dependencies.


  http://www.mired.org/consulting.html
Independent Network/Unix/Perforce consultant, email for more information.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: UnInstalling

2003-01-31 Thread Voicu Liviu
-BEGIN PGP MESSAGE-
Version: GnuPG v1.2.1 (GNU/Linux)

hQEOA+YHX0v84JUpEAP+IidtY3TdWMz5Fhp4z64RJRpNzzQjKPnC6EaJoeZGFxIv
c9LjtnadHHKzqZuGT6KBzBs5vpwoHycEr5LXRti/hiF2FR6FrcLQRB2QnMAxytYn
WAD8sN7y637DgjcdKTVMkHq4njBZ9pNIGGHIyKHD7Pq3R9DtdpaUdqfEmemwOBcE
AMEVrzkICWH2jwl0OXt1VsQutwzgc6UDusVtbUnAszm1CW2hkyNt+5S+9Pt+Tuw8
oCYjyV5hAtKI2dGZTF106sdUi8yNHkV+U1PERk834njiW3Uy7/DyrkLvdYy1uzOd
nMoG6fODg5sdDoV5IiGJi3UNyMwdkxUMFCf4y8eFKKyQ0sC8Ad4hWgNURFj2su3Q
RjSmXK8+xaM2DDzRcqjfgcfiK7FNvq32Z2Qq8+Wpp7FHd8bINi6vhjvIkSfdc9yN
XUSZsw8fG5w0R0eKPA47dFC9IFgfdF81pPR1YyciTrAhWkR+SLHGqD8bQoarQXmJ
IRUjkczIOPrsphIh8BG4O0YsrW08W83GE1AdLU82xCNMHY1oxRVdH+fHYuBd793/
kOGhLTGA3mMYNxdRcWe7gwIYZPTXbyCdXO6OYH1ukeDmD4op2HFwqluY+sivX84s
c/2iQrsdtabuGlNOBDD2Lb6fGrMwyFmij1x1jvVmG0MNs9FE54IGJfkuVLTmb4T5
bkD5cbnzvPM1hLkYw1jIa9h01S2dJ8+NshqnBZulFDHd12l4UFv4Sy7yNaNpcPqj
bK/OMhcFP/lpT38YWIomT1/6RKDGs8RHw8uM5fmnwiqmSoVQHv5IncAmydIlcHOy
QpwxcoGUGAavtYFv9N0ZyXGFkBaztyGMPaLtBsAkIOs=
=BRhj
-END PGP MESSAGE-


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: UnInstalling

2003-01-31 Thread Bill Moran
Cain Saint wrote:


Hi. I would like to find out if it is possible to uninstall FreeDSB. If 
so, how do I do it. THanks

Just install over top of it.  There's no need to "uninstall" FreeBSD
before installing another OS.

--
Bill Moran
Potential Technologies
http://www.potentialtech.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: UnInstalling

2003-01-31 Thread Voicu Liviu
-BEGIN PGP MESSAGE-
Version: GnuPG v1.2.1 (GNU/Linux)

hQEOA+YHX0v84JUpEAQAwi0cIEIUAOGNVsBmb9iGHAIVUW+daQVX4V9IU9KrgbjJ
I7mjwPDzowDcZerh1ZH167BEeqg3NQRmn1+fGZiiDzWf4XgpQ0B/HIRrWzLuLcqc
esiiWPIC0VizOHUwXd/3TOeBrQ62/UqtPwPLu3Aug7d/Dx+e8l/jJGU9Z2PzIv8E
AK2tWSwBKOpYYhVC6N2ChMB5CYns9hiD0Gdp1RCnRdQgKchxElYkkE12u1OVh8D+
mIj/xiUKzqLMnJ2sVHDAvSw+SANyLhkXinSvBd0/TlMTdISQvR3jZWcf8bL8yC1g
2RjBQCN3YcspOukroFsjCcQL3thpm0YzLPw8lOYyqPpQ0ukBK4B8QdSyXu+bbYJg
ZeBfsO1B4pmHNI3Rnq8ScPJzgyFMamttL9xVW28MlsoAtssFDbjUQUyn5KvgojGz
4QX80NnBpk0tqm0j8G78sGOb9a7HVcnUC3pa5ngL9aJ8R0XN1zhDYk9UJzj0sAam
hsfaM3npHrOyQ0wjuRPA42IuyDh2yS6MC4mWrkEieoK0qdtJB+9HSPwfj/p0JT8C
Efndu9McpBPP9piOzjR0BT2nTWFZe2wO4l/S1pyhDVTaneV7iUpECRAnCHtUX2ii
mg2+mNpwKnmF11RfNiTrfhpeSSXckdc65N2tH1Y0HVwwyna1H2MiD/brJX0ejVRI
QbbrzqErjhAWrKZ9xx9uH8SoPf+qYkJ+p6FXShIHW9M0IkahAMxtyP9alqXxgWjT
/QzeXLtOdAx7/pKIJ9xs3DOkJRhPyJI/XZxxOLEKvMe3Ay2sY/FG0ZZlDuT5Jkkh
uozUPGOOytMcdDNyPn0HUT+I5KEivpv+uN3vdMJe2XTL866Y9gX2eZkCPAE3ySTJ
Odd5nKXzY9ebwm9dczYw3stX8Uz0tyknST0D8WUFAWvIAKHdz1gLNVUif/FGQCLC
JoxQD4wt3f374OcofRntA7ESypK+VVEMRlnd/3UG8yldz/pyW7OF502y/Avy+y8c
SZb5WJ9nfon/SqHtERX0iXNZ+EmVulmCnZEuppRxc9vq7O8DW2tKTD7mTXvlyhuB
oX7Lvn2LFl5Hrh3FEexsCydkVHkPcuNzWeRpYeJDqJtDlXqMlVoCcf2oVxm4
=JfDq
-END PGP MESSAGE-


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



RE: UnInstalling

2003-01-31 Thread JoeB
You do not uninstall FBSD, you just delete the FBSD partition on the
hard drive

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Cain Saint
Sent: Friday, January 31, 2003 12:40 PM
To: [EMAIL PROTECTED]
Subject: UnInstalling


Hi. I would like to find out if it is possible to uninstall FreeDSB.
If so,
how do I do it. THanks


I've found out why people laugh. They laugh because
it hurts
so much... because it's the only thing that'll make it stop
hurting.




_
Add photos to your e-mail with MSN 8. Get 2 months FREE*.
http://join.msn.com/?page=features/featuredemail


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message