Re: [vox-tech] Thoughts on a Firewall Laptop

2010-09-20 Thread Jan W
Hi Edwin: I would look at making some custom udev rules. Here is a line that renames a certain usb ethernet device usb_eth instead of ethN: SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:14:d1:*", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="usb_eth" Look at

Re: [vox-tech] Converting to Kubuntu

2009-05-09 Thread Jan W
A friend of mine last night showed me "awesome", a tiling window manager based on twm (I think). Looked incredibly nimble, with really good options for tiling, resizing, floating, and such without window decorations or animation or fancy stuff. --food for thought jan > > Truth be told, I'm d

Re: [vox-tech] Utility to image a hard drive

2009-04-10 Thread Jan W
Some things of note: If you use any kind of Logical Volume Management (LVM) and setup the disc in such a way that everything is installed on an LV, you can back things up easier. It gives you a bit more flexibility on a layer below the filesystem. Fedora, RedHat Enterprise (and the clones) ha

Re: [vox-tech] Crontab oddity - server timeout?

2009-03-28 Thread Jan W
Hi Bill: In your script, you have: STATUS=`wget --save-headers http://www.MYSITE.com/ -O - 2> /dev/null | head -1 | cut -d " " -f 2` If wget hangs on some part of the transmission, a bunch of your script instances could pile up depending on which timeouts apply (somewhere between fastcgi, li

Re: [vox-tech] CIFS sharing question

2009-01-22 Thread Jan W
Hi Bill: Sorry to hear that you're having trouble. The permissions and user config is one of the toughest things to get _right_. Some thoughts: The umask is set per share (as well as globally for samba). I would try setting values for the "create mask=" directive in the share definition. I

Re: [vox-tech] Copying/ Moving Large number of files

2008-12-11 Thread Jan W
I would 'cp' them then remove originals. 'mv' will be fine, if it's all in the same mounted filesystem. If you're crossing filesystem boundaries, it's usually safer to cp then delete original. At least, that has had the most luck for me. --cheers jan <><><><><><><><><><><><><><><><><><><><

Re: [vox-tech] Xorg help new Ubuntu

2008-11-03 Thread Jan W
Hi Alex: Let me preface: I don't know much about your problem, only what I have done in the past to correct problems like this. I'm just going to suggest some things to look at. Which version of the X11 libraries is the Qt library linked against? It sounds like two different versions of libX

Re: [vox-tech] [OT] Re: sharing a printer with samba

2008-02-01 Thread Jan W
--- "Mark K. Kim" <[EMAIL PROTECTED]> wrote: > Try: > > \\HOME\SAMBA\xerox > > ... with two backslashes to indicate that the path is on the network, > followed by single backslashes for DOS-style path separators. > > -Mark Also try (on the smb.conf on the machine hooked up to the printer):

RE: Fwd: Re: [vox-tech] How to tell if a pdf is text or image?

2007-03-23 Thread Jan W
Hi Alex: We do similar things here where I work. We have been through this a few times. The problem is that some PDFs are font info plus text (with script like "draw a 12pt arial font with text 'hello world' at 30,30). Some pdfs are images with 'hidden' text behind regions with no font info (te

Re: [vox-tech] CD Burner Recomendation?

2006-07-26 Thread Jan W
I have put alot of different DVD and CD burners through their paces with linux here at my work. Plextor CD/DVD drives are a bit pricier, and the highest quality that I have seen. Usually the plextor drives we have here survive longer than the motherboards and power supplies of the boxes they are

Re: [vox-tech] selinux woes

2006-06-14 Thread Jan W
Hi Z: Check the logs. The /var/log/messages should have entries about selinux applying its policy (if selinux is the problem). Also, check the apache logs (/var/log/httpd by default). The logs should give you an idea if it's standard unix permissions or the selinux policy. If the user that apa

Re: [vox-tech] K3B problem

2006-05-31 Thread Jan W
--- "Micah J. Cowan" <[EMAIL PROTECTED]> wrote: > I was thinking that might not be enough on some setups. Don't some > desktops actually use "helper daemons" of their own, or somesuch, to > achieve the desired automounting? Or do they all just use autofs at > some > level? > I believe the way

Re: [vox-tech] K3B problem

2006-05-31 Thread Jan W
--- "Micah J. Cowan" <[EMAIL PROTECTED]> wrote: > On Tue, May 30, 2006 at 10:53:09PM -0700, Chris Horsting wrote: > > Micah J. Cowan wrote: > > > On Mon, May 29, 2006 at 10:16:13PM -0700, Chris Horsting wrote: > > > > > >> Hi, > > >> I am using Fedora 4.0 and when I tried to copy a CD with k3

Re: [vox-tech] re: iptables questions

2006-05-16 Thread Jan W
--- Cylar Z <[EMAIL PROTECTED]> wrote: > I wrote a bash script as you suggested, one that > inserts the rows into iptables. However, I still have > to re-run that script every time the system reboots. > > To get around the problem and make the rules > permanent, I followed this advice: > > "Us

Re: [vox-tech] ip tables questions

2006-05-15 Thread Jan W
Hi Z: 1: [EMAIL PROTECTED] iptables -A INPUT -s 123.456.789.0/24 -j ACCEPT You just need to add the '-s'ource address before you '-j'ump to your target. 2: fedora/redhat comes with a utility called 'iptables-save'. This dumps your current rules to stdout. If you redirect those to a config f

Re: [vox-tech] Dying Power Supply killed drive

2006-03-02 Thread Jan W
Hi Alex: I would use knoppix and another machine. I would hook up your dying drive and another (maybe removable usb?, that is if you're not copying gigs of stuff) drive to copy it to. Boot knoppix, and mount the two drives. If the drives both mount, then you're probably going to be fine. If yo

Re: [vox-tech] quick apache question

2006-02-25 Thread Jan W
Hey Z: I think what you're looking for is the UserDir directive. Is that enabled in the conf file (for your target user at least)? Check this out for more info: http://httpd.apache.org/docs/2.0/mod/mod_userdir.html --HTHO jan --- Cylar Z <[EMAIL PROTECTED]> wrote: > Hey all, > > Thanks to

Re: [vox-tech] quick apache question

2006-02-25 Thread Jan W
Sorry for the dupe. --j <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< I believe that unarmed truth and unconditional love will have the final word in reality. That is why right, temporarily defeated, is stronger than evil triumphant. Martin Luther King Jr., Accepting N

Re: [vox-tech] Dealing with different UIDs and GIDs

2005-12-15 Thread Jan W
Richard: Does the user that Samba runs under (I think it's 'nobody' by default) have permission to read the mountpoint directory? I would add the samba user (the UID that samba runs as) to the group that can read (or write to) the directories. Or am I missing something else? -HTHO jan --- Ri

Re: [vox-tech] display mess

2005-11-07 Thread Jan W
Having absolutely _no_ idea as to which service might have caused this, I would try posting the output of `chkconfig --list` to list which daemons/applications run at which runlevel. At runlevel 5 (normal X11), I think Fedora needs gdm (Gnome Display Manager, or some such) to run the graphical lo

Re: [vox-tech] 32 vs. 64

2005-10-21 Thread Jan W
--- Mike Simons <[EMAIL PROTECTED]> wrote: > I've not checked how FC4 does it, but most 64-bit linux flavors > install > "32-compat" libraries also... some default to 64 bit in /lib and use > /lib32, others default to 32 bit and provide a /lib64. I think that FC uses the /lib64 for 64 bit libs

Re: [vox-tech] NFS mounting a VFAT filesystem - uid and gid issues?

2005-08-17 Thread Jan W
Hi Marc: I think the permissions on /var/www/tiny is your problem. Try chmod 775 (world read and execute) /var/www/tiny so that apache (or whatever user/group that apache runs as) can read from your mounted directory. Or, you could set apache to run as nobody:users, since that is the user/group

Re: [vox-tech] WiFi Part II

2005-07-21 Thread Jan W
One Suggestion: I must say that wireless support in redhat/fedoracore was not what I was hoping for. I think that SimplyMEPIS is a great distro that has good wireless support. I had alot of trouble getting redhat/fedora to recognize my intel centrino/IPW2100 builtin card (this was with fc2 i bel

Re: [vox-tech] DVD burning front ends

2005-03-08 Thread Jan W
Hi all: I had problems getting some systems to recognize the images i had burned with k3b. Not to say that it can't be done, but I just thought k3b was just 'almost there'. It's a really great project, but a bit overkill on the graphics and stuff for what I need to use it for. Here's my setup f

Re: [vox-tech] RAID systems

2004-10-20 Thread Jan W
--- Bill Broadley <[EMAIL PROTECTED]> wrote: > > > Measuring a real world workload in real world conditions. Short > > > of that I'd recommend bonnie++ and "PostMark: A New File System > > > Benchmark" > > > > Right now all I have been doing is cron'ing iostat to give me > snapshots > > every f

Re: [vox-tech] RAID systems

2004-10-18 Thread Jan W
--- Bill Broadley <[EMAIL PROTECTED]> wrote: > On Fri, Oct 15, 2004 at 02:08:42PM -0700, Jan W wrote: > > Hi all: > > > > I just finished setting up 3 tb raid systems, and I have some > general > > questions about raid: > > > > 1. What are the

[vox-tech] RAID systems

2004-10-15 Thread Jan W
Hi all: I just finished setting up 3 tb raid systems, and I have some general questions about raid: 1. What are the best methods to get benchmarks for speed/timing? 2. What are the best recovery tools in case of failure? 3. What filesystem/raid options work best for lots of small files being

Re: [vox-tech] Does anyone use Clara OCR?

2004-09-28 Thread Jan W
I tried it out. Wasn't all that great. That was maybe 2 years ago. Haven't checked it out since then. It had some sort of learning function that had to be 'trained'. Really wasn't viable for our OCR needs, so I haven't looked at it for awhile. You also might look at j/gocr at: http://www.sf.

Re: [vox-tech] VPN question

2004-09-27 Thread Jan W
I know that M$ uses something called Remote Desktop Protocol for the terminal services crap they use (RDP). It's like most of the VPN clients, a remote framebuffer so that you can mouse and keyboard around your desktop. All that I know about the linux VPN stuff is that some of them use this proto

Re: [vox-tech] Cyrus-imap and qmail -- RESOLVED

2004-09-13 Thread Jan W
, for simplicity's sake, and maybe a security hole). The problem was that lmtpd only accepts from cyrus user, and since qmail-smtpd runs as qmails (as per the lwq install instructions), it was erroring out. Hope that helps someone besides myself, jan --- Jan W <[EMAIL PROTECTED]> wrote

Re: [vox-tech] linux box as a router

2004-09-13 Thread Jan W
Hi: Yea, I have done this sort of setup before. Any distro will usually work fine, as long as it has iptables (just my preference), and iproute utilities (including tc). Most of the stuff you would manage with are just scripts that you write yourself (you can find alot of help on tldp, the advan

[vox-tech] Cyrus-imap and qmail

2004-08-25 Thread Jan W
Hi All: I am trying to paste together this email system on FC2, and I have hit a snag: I have qmail running and configured and accepting mail. I have cyrus-imapd running and happy. I have a nice little wrapper script to deliver mail from qmail into cyrus mailboxes (qmail2cyrus). The problem co

Re: [vox-tech] SSH question

2004-08-10 Thread Jan W
My $0.02: If you want to make sure that iptables never starts again (assuming that it runs at boot): # chkconfig --level 345 iptables off Other than that, the stuff mentioned (hosts.allow/deny, telnetting to the port, looking through logs, capture with tcpdump) is all great advice. HTHO, jan

[vox-tech] Limiting Bandwidth with tc (and iptables)

2004-07-29 Thread Jan W
Hi All: I have seen some discussion about limiting bandwidth about a month ago, and I thought that I would reiterate the tome of knowledge that allowed me to do it: http://www.lartc.org/lartc.html I think someone mentioned it earlier, but I never looked very deeply into it. One thing that I wou

Re: [vox-tech] Easiest way to calculate date in 100 ns increments?

2004-06-23 Thread Jan W
--- Rick Moen <[EMAIL PROTECTED]> wrote: *snip* > I used to know how to do > this, but that would have been in structured Fortran. ;-> [1] > In the db environment that I use, time is weirdly handled to accommodate weirdness like this: $H -> Reports the number of days since Dec 31, 1840, and th

[vox-tech] Locales and installed languages/charsets (in C)

2004-05-25 Thread Jan W
Hi all: My question is mostly for Mark. I am a _complete_ language/locale/charset noob (I only speak english, for shame). so here goes: I have a fltk app (tuxpaint-config) which allows users to reset the language of the (tuxpaint) application. However, I need to know how to get things to displ

Re: [vox-tech] Removing Files

2004-05-20 Thread Jan W
Does 'ls -i' report an inode number? It sounds like the inode is in trouble, and probably should be deleted I would try: # ls -Ri ./movies (get inode number) # find . -inum (inode to be deleted) -exec rm {} \; I dunno, tho. Just trying to help out... --htho jan --- Daniel Hurt <[EMAIL

Re: [vox-tech] fltk + SDL and questions about handling events

2004-05-18 Thread Jan W
--- "Mark K. Kim" <[EMAIL PROTECTED]> wrote: > So basically you're doing the following, right?: > >while(1) { > // poll FLTK > // poll SDL events > > // do something >} > > But the problem is this is a tight-loop and it's gonna eat up all of CPU > time. So you'll need so

[vox-tech] fltk + SDL and questions about handling events

2004-05-18 Thread Jan W
Hi all: I have a question about events structs with fltk and SDL: here's the guts of my main function: int main(int argc, char **argv) { // I have two functions defined to handle events: Fl::add_handler(my_event_handler); //and SDL_Init(SDL_INIT_VIDEO); //and I have SDL_Event *sdlevent pointer

Re: [vox-tech] [OT] windows XP CD won't boot

2004-05-15 Thread Jan W
Here's a strange idea: boot from win9x floppy. insert win xp cd. run installer .exe from cd. Already tried? I know nothing of these strange, inferior OS's tho:)... --HTH jan --- dylan <[EMAIL PROTECTED]> wrote: > things are of course stranger than expected > > the machine boots fine

Re: [vox-tech] Success with fltk and SDL_image

2004-05-13 Thread Jan W
--- Peter Jay Salzman <[EMAIL PROTECTED]> wrote: > > i was once told that the military uses quaternionic rotations in mission > critical applications. not sure if the person was talking out the side > of their butt or not. but it sure sounds impressive! :-) > > pete > I dunno anything about

Re: [vox-tech] Success with fltk and SDL_image

2004-05-11 Thread Jan W
; > > 2. Get a library that does it for you from www.libsdl.org/libraries.php > > > > 3. Do it yourself. There are lots of websites and books that talk about > > it. You can probably figure it out yourself with some matrix > > operations, too. > &

[vox-tech] Success with fltk and SDL_image

2004-05-11 Thread Jan W
Hi all: Just a question: Has anyone used SDL_image to do scaling and rotation? If so, is there anything that I could use to do basic image manipulations? I am looking for code examples/basic theories so that I can start off down a (more or less) reasonable path... I had an application that use

Re: [vox-tech] VMWare workstation version 4 for windows

2004-05-05 Thread Jan W
One question: How is the network adapter (in vm settings) configured now? Bridged? NAT? Host only? I use NAT, and it automagically worked (but my host is linux and guest is windows)... Any help I can give, I'll try, but VMware has always 'just worked' for me... :) jan --- Karthikeyan <[E

Re: [vox-tech] Has anyone done cartography on Linux?

2004-05-04 Thread Jan W
Hi Henry: This link might be helpful: http://www.engadget.com/entry/0141583269424672 It's about a guy who uses a garmin watch and uses it's xml export to overlay on satellite imagery... thought you might like to have a look. Here is a guy who has written some stuff for building jpegs from M$'s

Re: [vox-tech] Re: [vox-if] [rsvp-May15] Mandrake 9.2 + WinXP; trying to install Fedora Core on Virtual PC

2004-05-03 Thread Jan W
Mark hit it on the head (except Mono is an Open Source implementation of .NET, it runs on windows as well). My logic is: (C & C++):(gcc)::(C# and VB.NET):(Mono). C# isn't a traditional compiled "language" (M$ calls it part of the .NET 'framework'), parts of it are interpreted. I don't think that

RE: [vox-tech] oracle -> MySQL conversion

2004-04-28 Thread Jan W
--- matthewlange <[EMAIL PROTECTED]> wrote: > Dylan, Definitely Postgres. > > You may not need the functionality now, but you may want it in the > future. > My $0.02: Unless you really need the advanced features of Postgres, MySQL should do everything you need it to do, and be a little more li

Re: [vox-tech] kde upgrade wrecked gnome

2004-04-13 Thread Jan W
--- Bruce Wolk <[EMAIL PROTECTED]> wrote: > When I try to run mozilla or firefox I get: > > [EMAIL PROTECTED] mozilla-1.4]$ ./mozilla > ./mozilla-bin: error while loading shared libraries: libgtk-1.2.so.0: > cannot open shared object file: No such file or directory > > [EMAIL PROTECTED] firefo

Re: [vox-tech] is Java Compiler already installed in Fedora

2004-03-29 Thread Jan W
AFAIK: I think for sun's version, you need to download and install. If you intalled all packages, or chose the GNU java compiler that comes with the rest of the GNU compilers (gcc), then that one would be there (naturally). "rpm -q gcc-java" will tell you if the gnu java package is installed. As

Re: [vox-tech] recent RedHat glibc upgrade, warning

2003-11-15 Thread Jan W
> > p.s. I am slowly switching all my machines to gentoo. Very slowly... > I have been in the process of getting one of my machines switched to gentoo. It's awesome, and I find myself wondering: why did I wait so long to try this distro out? It is _so_ cool. I was frustrated with the redhat

Re: [vox-tech] samba help: win2k

2003-10-28 Thread Jan W
--- [EMAIL PROTECTED] wrote: > dear jeff, mike and jan, > > new information. i should mention this, because it's relevent. we have > three main computers: > > satan linux my main system. has printer. > navalle linux/win98rhonda's main system / engineering stuff > lucifer linux/w

Re: [vox-tech] samba help: win2k

2003-10-28 Thread Jan W
I'm no M$ expert, but I have set up samba to talk to most flavors of windows --- Michael J Wenk <[EMAIL PROTECTED]> wrote: > On Tue, Oct 28, 2003 at 10:25:27AM -0500, Peter Jay Salzman wrote: > > i'm trying to set up samba to share files between linux (satan) and > > win2k (lucifer). > > > >

Re: [vox-tech] Passing the proper username from Windows XP to Linux via Samba

2003-10-07 Thread Jan W
As mentioned previously, samba is using the 'guest account'. If you want a quick-and-dirty fix, try editing (or maybe adding) the following line in smb.conf: guest account = unixacct This solves most of my permissions problems. The smbpasswd thingy works, as well, but I rely more on this one (I

Re: [vox-tech] Third NIC question

2003-10-02 Thread Jan W
FWIW: The best tutorial (for me, at least) for set up of iptables is at: http://iptables-tutorial.frozentux.net/iptables-tutorial.html Explaination of everything is there, should you need it. Hope it helps, jan --- Michael J Wenk <[EMAIL PROTECTED]> wrote: > > Here's a networking question.

Re: [vox-tech] backing up DVDs (was Re: [vox] fair use / DVD questions)

2003-09-16 Thread Jan W
think). HTHO, jan --- [EMAIL PROTECTED] wrote: > On Tue 16 Sep 03, 3:15 PM, Jan W <[EMAIL PROTECTED]> said: > > I have done a bit of burning of DVD+R and +RW media for work here. > > > > I use cdrecord-prodvd and xcdroast for the GUI. > > > > I have successfu

Re: [vox-tech] backing up DVDs (was Re: [vox] fair use / DVD questions)

2003-09-16 Thread Jan W
I have done a bit of burning of DVD+R and +RW media for work here. I use cdrecord-prodvd and xcdroast for the GUI. I have successfully recorded 4.7 GB of data on +R media, but I have no experience with -R media whatsoever. We use Plextor 504A. >From what I know of DVD, can't you use a block cop

Re: [vox-tech] no boot on G4 laptop

2003-09-08 Thread Jan W
> UNLESS YOU'RE PREPARED TO WIPE EVERYTHING OFF THE HARD DRIVE! You've been > warned. > > -Mark > > On Mon, 8 Sep 2003, Jan W wrote: > > > Hi all: > > > > I am a mac-clueless-type, and a friend of mine has a G4 laptop that refuses > to > > boot. H

[vox-tech] no boot on G4 laptop

2003-09-08 Thread Jan W
Hi all: I am a mac-clueless-type, and a friend of mine has a G4 laptop that refuses to boot. He says the problem is with the display, but the LCD is just really dim, there are images that come up. The problem: Power up the machine, the little apple comes on screen, with the little spinning icon

Re: [vox-tech] vim question

2002-11-12 Thread Jan W
Hi Peter: Look in ~/.viminfo There should be a line like: # File marks: '0 37 0 ~/textfile3.txt '1 35 0 ~/textfile.txt I think that is the place that you are talking about. :) HTHO, jan --- Peter Jay Salzman <[EMAIL PROTECTED]> wrote: > hi lugod, > > i've seen vim on a mandrake syste

Re: [vox-tech] iptables

2002-10-04 Thread Jan W
I haven't heard about any of those tools... I just use the vanilla iptables scripting. Here is a link to the best HOWTO that I have found: http://people.unix-fu.org/andreasson/iptables-tutorial/iptables-tutorial.html Most of what I talked about was from that tutorial. There are plenty of othe