PKG_PATH="http://ftp.NetBSD.org/pub/pkgsrc/packages/$(uname -s)/$(uname -m)/$(uname -r|cut -f '1 2' -d.)/All"
I got this line from the quickstart guide on pkgsrc.org
the above line didnt work and caused the error i was getting
but by adding a "/" at the end of it everything became fine
so with this line, everything is fine
PKG_PATH="http://ftp.NetBSD.org/pub/pkgsrc/packages/$(uname -s)/$(uname -m)/$(uname -r|cut -f '1 2' -d.)/All/"
i pulled pkgsrc via cvsit seems i can connect to the internet with no problemi am running netbsd on virtualboxsome background information,greetingsi am getting the following error from pkg_add
# pkg_add vim
pkg_add: Can't process http://ftp.NetBSD.org:80/pub/pkgsrc/packages/NetBSD/amd64/6.1/All/vim*: Non-recoverable resolver failure
pkg_add: no pkg found for 'vim', sorry.
pkg_add: 1 package addition failedand ping ftp.netbsd.org resolves fine/etc/resolv.conf contains the following lines
# Generated by resolvconf
nameserver 10.0.2.3so it seems at least to me that my netbsd virtualbox vm, is setup fineany hints where to look?regards