From LedHed's Wiki
(Created page with ' == Portsnap == Portsnap is used to update the FreeBSD ports tree This will fetch a new copy of the ports tree portsnap fetch This will extract the new tree to /usr/ports por...') |
|||
Line 1: | Line 1: | ||
− | |||
== Portsnap == | == Portsnap == | ||
Portsnap is used to update the FreeBSD ports tree | Portsnap is used to update the FreeBSD ports tree | ||
Line 35: | Line 34: | ||
== Clean Up == | == Clean Up == | ||
make clean | make clean | ||
+ | |||
+ | == Resetting Configs == | ||
+ | make rmconfig | ||
[[Category:Ports]] | [[Category:Ports]] |
Revision as of 19:19, 1 October 2009
Contents
Portsnap
Portsnap is used to update the FreeBSD ports tree
This will fetch a new copy of the ports tree
portsnap fetch
This will extract the new tree to /usr/ports
portsnap extract
Finding Ports
find /usr/ports/ -name <NAME OF PORT>*
or
locate <NAME OF PORT>
Installing Ports
cd /usr/ports/<CATEGORY>/<PORT> make install clean
Removing Ports
cd /usr/ports/<CATEGORY>/<PORT> make deinstall
Making Changes / Reinstalling Ports
cd /usr/ports/<CATEGORY>/<PORT> make config make deinstall ;; make reinstall
Clean Up
make clean
Resetting Configs
make rmconfig