Forum: Networking Hardware Configuration Mar 16th, 2007 |
| Replies: 9 Views: 3,967 Re: Wireless signal keeps dropping Yes, I agree you should try something simple/basic first. I just fixed my brother-in-law's problem with the same symptom. Turns out, he's been associating to the neighbor's Access Point this whole... |
Forum: Networking Hardware Configuration Mar 7th, 2007 |
| Replies: 9 Views: 3,967 Re: Wireless signal keeps dropping What you need first is to obtain a airwave analyzer application. It is not as scary as it sounds... something like AirSnort or NetStumbler for Windows will probably do (disclaimer: I run Linux and... |
Forum: Shell Scripting Mar 7th, 2007 |
| Replies: 2 Views: 1,557 Re: pattern searching and comparing I would use a combination of grep and sed to do this... use grep for the pattern matching, and use sed to do the inline text editing. Do you have to do this with just shell script? Personally, I... |
Forum: Shell Scripting Mar 7th, 2007 |
| Replies: 2 Views: 2,764 Re: Need a shell script for rsync Here's a quick one to get you started:
#!/bin/bash
rsync -aze ssh username@server:/path/on/remote/box /local/path 2> /home/err.log
if [ -s /home/err.log ] ; then
# file is not empty, some error... |
Forum: Getting Started and Choosing a Distro Feb 5th, 2007 |
| Replies: 6 Views: 2,414 Re: Custom Debian CD Maybe this will fit your needs better:
http://wiki.debian.org/DebianInstaller
Personally I have not done it with Debian-based distro yet, but I've had experience using RPM-based distros, and I got... |
Forum: Perl Feb 5th, 2007 |
| Replies: 1 Views: 3,790 Re: cut a column Here's a quick script that will read the input from STDIN (<>) and chop everything by spaces, and construct a 2D matrix (2 dimensional array) out of it. Say, your input is something that looks like... |
Forum: Shell Scripting Feb 1st, 2007 |
| Replies: 3 Views: 1,563 Re: Quick question about text processing If your needs are more complicated, you can use fancier tools like perl or python, or if your needs are fairly simple, sed will probably fit your needs just fine.
Take your example, you have a file... |
Forum: Shell Scripting Feb 1st, 2007 |
| Replies: 1 Views: 1,360 Re: Spare few minutes First of all, you need to find the oldest file in the folder, you can do it with some switches in 'ls':
ls -t
This will list the files and sort by time, the newest first, then the oldest. Not put... |
Forum: RSS, Web Services and SOAP Jan 31st, 2007 |
| Replies: 8 Views: 3,163 Re: soap security Thanks for the links Artemis.
I did not know that there were XML firewalls out there myself, although I dealt with SOAP quite a bit in my last project. I guess just not too many people have the... |
Forum: RSS, Web Services and SOAP Jan 31st, 2007 |
| Replies: 8 Views: 3,163 Re: soap security I have implemented some SOAP/XML solutions at my last job, and we used a combination of layer 3+4 ilter (iptables), SSL, and authentication (login).
I am not sure what you mean by SOAP firewall and... |