| bio | website | systemajik.com |
|---|---|---|
| location | Gatineau, Canada | |
| age | 58 | |
| visits | member for | 2 years, 4 months |
| seen | Jun 14 at 18:52 | |
| stats | profile views | 67 |
I have over 30 years experience in all phases of software development and delivery. I have administered a variety of midrange servers, and worked with systems from PCs to Mainframes.
|
Mar 11 |
answered | Crontab syntax: using '*' for minutes value |
|
Mar 11 |
answered | Establish openvpn tunnel in bash script |
|
Mar 7 |
comment |
Best practice to use $? in bash? If you use this functionality inline and don't want to return from the true side you can replace return $? with the : builtin. |
|
Mar 7 |
comment |
Best practice to use $? in bash? You can also use the code in this format. <pre>function try { |
|
Mar 7 |
comment |
Why do /usr and /tmp directories for Linux miss vowels in their spellings? Most file systems store the file in blocks. Sizes range from 512 bytes on up in powers of 2. Available sized depend on the file system. Some filesystems will store the tail (partially filled last block) in the inode stucture. Occupied space may be more closely related to the number of bytes, than is found with systems that only use block level storage. |
|
Mar 6 |
awarded | Nice Answer |
|
Mar 6 |
answered | How can I tell if my system is keeping the system time up to date? |
|
Mar 6 |
revised |
Why do /usr and /tmp directories for Linux miss vowels in their spellings? Add some specs on PDP-7; added 6 characters in body |
|
Mar 6 |
answered | Why do /usr and /tmp directories for Linux miss vowels in their spellings? |
|
Mar 6 |
revised |
bridged networking with kvm Add some testing options.; edited body |
|
Mar 6 |
answered | bridged networking with kvm |
|
Mar 5 |
comment |
How to tweak Linux to run reliably on flash memory? OpenWRT puts /tmp on a tmpfs file system. Frequently changed parts of var which do not need to persist are symlinked into /tmp. There is no default swap device. The filesystem on flash only gets updated when the configuration is changed or files are modified in /root. I mount an old USB flash drive for swap and /home. I should redirect /root to /home/root. |
|
Mar 5 |
answered | /usr/bin vs /usr/local/bin on Linux |
|
Mar 3 |
answered | Sharing Linux Printer to windows |
|
Mar 3 |
awarded | Commentator |
|
Mar 3 |
comment |
squid (reverse proxy) configuration @Wolfy: For a reverse proxy I would configure Apache (or nginx) to act as a reverse proxy. Apache has very good controls to restrict access by IP address and/or require a password. Apache can be configured as to cache responses if that is what you need. |
|
Mar 3 |
comment |
exim4 on debian: why does this ACL work when testing with -bh but not in actual use? @jcomeau_ictx On its own this rule is quite accurate, but after applying other rules, it becomes highly inaccurate. I am testing with the added condition added in my edit. I no longer allow Spamhaus listed senders to send the email body, so my stats will be understated for the percentage that Spamhaus rejected. |
|
Mar 3 |
revised |
exim4 on debian: why does this ACL work when testing with -bh but not in actual use? Added results of checking my database of email |
|
Mar 3 |
answered | exim4 on debian: why does this ACL work when testing with -bh but not in actual use? |
|
Mar 2 |
answered | How to cache or otherwise speed up `du` summaries? |