make search name=wget
找到wget的port目录,cd到那个目录:
tip:
第一次装时贪心都选了,结果被告知:
===> wget-1.11.2 GNUTLS and OPENSSL are mutually exclusive, enable at most one of them.
*** Error code 1
两者只能选其一,这时可以删除配置文件再重新安装就可以更改选项了:
// end
testsina# whereis wget
wget: /usr/local/bin/wget /usr/local/man/man1/wget.1.gz /usr/ports/ftp/wget
说明安装成功,su 到普通用户wget即可!一般来说已经添加到PATH变量了,如没有将/usr/local/bin/添加到环境变量PATH中即可!
后来发现更简单快捷的查找ports的方法:whereis wget
反安装:
===> wget-1.11.2_1 is already installed
You may wish to ``make deinstall'' and install this port again
by ``make reinstall'' to upgrade it properly.
If you really wish to overwrite the old port of ftp/wget
without deleting it first, set the variable "FORCE_PKG_REGISTER"
in your environment or the "make install" command line.
在 Redhat/Fedora 是预设安装好 wget,而 FreeBSD 则预设没有安装,要在文本模式下载文件很不便。在 FreeBSD 要安装 wget 很容易,只要使用 ports 就行了,方法如下:
cd /usr/ports/ftp/wget
make install clean
那么系统就会自动替你完成安装了。
或者使用命令
pkg_add -r wget就可以把wget安装上去了
找到wget的port目录,cd到那个目录:
# make install clean;rehash
tip:
第一次装时贪心都选了,结果被告知:
===> wget-1.11.2 GNUTLS and OPENSSL are mutually exclusive, enable at most one of them.
*** Error code 1
两者只能选其一,这时可以删除配置文件再重新安装就可以更改选项了:
# make rmconfig
# make&make install
或者:make install clean;rehash// end
testsina# whereis wget
wget: /usr/local/bin/wget /usr/local/man/man1/wget.1.gz /usr/ports/ftp/wget
说明安装成功,su 到普通用户wget即可!一般来说已经添加到PATH变量了,如没有将/usr/local/bin/添加到环境变量PATH中即可!
后来发现更简单快捷的查找ports的方法:whereis wget
反安装:
===> wget-1.11.2_1 is already installed
You may wish to ``make deinstall'' and install this port again
by ``make reinstall'' to upgrade it properly.
If you really wish to overwrite the old port of ftp/wget
without deleting it first, set the variable "FORCE_PKG_REGISTER"
in your environment or the "make install" command line.
在 Redhat/Fedora 是预设安装好 wget,而 FreeBSD 则预设没有安装,要在文本模式下载文件很不便。在 FreeBSD 要安装 wget 很容易,只要使用 ports 就行了,方法如下:
cd /usr/ports/ftp/wget
make install clean
那么系统就会自动替你完成安装了。
或者使用命令
pkg_add -r wget就可以把wget安装上去了
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/1485/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2010-3-4 13:19
评论列表