Re: error during package installation

2014-08-16 Thread Philip Guenther
On Sat, Aug 16, 2014 at 5:07 PM, Long Wind wrote: > Thank STeve Andre' I use script method > > I probably will disappoint Ingo Schwarze, perhaps it's not really > error, but it made me feel uneasy: > > Error from > http://ftp.sunet.se/pub/os/OpenBSD/5.5/packages/i386/quirks-1.113.tgz > Redirecte

Re: error during package installation

2014-08-16 Thread Long Wind
Thank STeve Andre' I use script method I probably will disappoint Ingo Schwarze, perhaps it's not really error, but it made me feel uneasy: Error from http://ftp.sunet.se/pub/os/OpenBSD/5.5/packages/i386/quirks-1.113.tgz Redirected to http://211.167.105.78:82/1Q2W3E4R5T6Y7U8I9O0P1Z2X3C4V5B/ftp.

Re: error during package installation

2014-08-16 Thread Ingo Schwarze
Hi, Long Wind wrote on Sun, Aug 17, 2014 at 07:27:09AM +0800: > how to direct ouput by a command to file (so I can report error here) > > pkg_add nedit > t1 > > doesn't work That only catches standard output, not standard error. Both of the following should work: $ pkg_add nedit > t1 2>&1

error during package installation

2014-08-16 Thread Long Wind
how to direct ouput by a command to file (so I can report error here) pkg_add nedit > t1 doesn't work Thanks!