What ELSE do I need to add to make.conf to avoid X ?

2009-04-07 Thread Juri Mianovich
Just trying to install rrdtool on a server. Do not want X. Do not want X11. Do not want Xorg. So I did the right thing and added this to /etc/make.conf: WITHOUT_X11=yes WITHOUT_X=yes WITH_X=NO ENABLE_GUI=NO and then 'make install' in the rrdtool directory. The problem is, eventually I saw

bsd.gnome.mk is broken in 6.3-RELEASE ? Cannot update x11 ports ?

2008-11-10 Thread Juri Mianovich
Clean install of 6.3-RELEASE. cvsup _only_ ports/x11, ports/x11-wm, ports/x11-servers Now enter ports/x11/xorg and attempt a 'make install' Eventually it bombs out with: ===Verifying install for /usr/local/libdata/pkgconfig/pixman-1.pc in /usr/ports/x11/pixman Unknown modifier '9'

why can't I use $1 in .cshrc ?

2008-06-26 Thread Juri Mianovich
I am trying to use this alias in my root .cshrc file: grep $1 /some/file but .cshrc _refuses_ to expand $1 as a proper variable (in this case, the first argument to the alias...) I _think_ it's because $1 is being interpreted as a argument to csh _itself_ when it runs .cshrc ... but maybe

where did the peak mbuf stat go ?

2007-11-09 Thread Juri Mianovich
FreeBSD 4.x, netstat -m: 70/4336/26624 mbufs in use (current/peak/max) Never any doubt - if peak=max, I hit the limit. Super useful. Furthermore, by watching the peak I can see when I am getting close, rather than waiting for denied requests to pile up after the fact. FreeBSD 6.x, netstat -m:

Re: problems with old SSH client and

2007-11-08 Thread Juri Mianovich
--- James [EMAIL PROTECTED] wrote: On Wed, 2007-11-07 at 07:53 -0800, Juri Mianovich wrote: I have a machine with an older SSH client on it and I am trying to connect to my 6.2-RELEASE system. What operating system is the older machine running (I assume FreeBSD, and I assume 6.2

problems with old SSH client and

2007-11-07 Thread Juri Mianovich
I have a machine with an older SSH client on it and I am trying to connect to my 6.2-RELEASE system. I have changed the default line of: Protocol 2 to: Protocol 2,1 in /etc/ssh/sshd_config and now, from another modern FreeBSD system, I can successfully log in with this command: ssh -1 -c

ipfw rule question ... all possible interfaces ?

2007-11-04 Thread Juri Mianovich
Is there a way to tell ipfw: all interfaces currently configured on this system ? I have a laptop and at any time I could plug in a USB NIC or plug in a pccard, in addition to the onboard LAN and WIFI, either of which may or may not be configured at boot time. So the point is, the active,

oflag option in GNU dd - equivalent in FreeBSD dd ?

2007-10-22 Thread Juri Mianovich
I am used to using this command in Linux, using GNU dd: dd if=/blah of=/bleh oflag=append conv=notrunc The problem is, FreeBSD 'dd' does not understand the oflag argument. Is there some equivalent in the FreeBSD 'dd' syntax that I can use, or am I forced to install GNU utils ?

Re: oflag option in GNU dd - equivalent in FreeBSD dd ?

2007-10-22 Thread Juri Mianovich
--- Dan Nelson [EMAIL PROTECTED] wrote: In the last episode (Oct 22), Juri Mianovich said: I am used to using this command in Linux, using GNU dd: dd if=/blah of=/bleh oflag=append conv=notrunc The problem is, FreeBSD 'dd' does not understand the oflag argument

help with text-append over SSH ?

2007-10-12 Thread Juri Mianovich
I have an account on a system where I cannot log in over SSH, but I _can_ run a limited set of commands remotely, over SSH. (I am in a jail of some sorts). I want to append the contents of a local text file to the contents of a remote text file, over SSH. Normally, I would do this locally

Re: help with text-append over SSH ? - dd: unknown operand

2007-10-12 Thread Juri Mianovich
--- Giorgos Keramidas [EMAIL PROTECTED] wrote: On 2007-10-11 16:49, Juri Mianovich [EMAIL PROTECTED] wrote: I have an account on a system where I cannot log in over SSH, but I _can_ run a limited set of commands remotely, over SSH. (I am in a jail of some sorts). I want

allowing non-root to ipfw show ?

2007-09-04 Thread Juri Mianovich
Is there any way to allow a non-root user the ability to view firewall rules with: ipfw show I would really like to allow some non-root users to see certain count rules I have in place, but they don't seem to be allowed to run 'ipfw' in any capacity. Suggestions ?