| bio | website | sbin-jodie.blogspot.com |
|---|---|---|
| location | Oklahoma | |
| age | ||
| visits | member for | 1 year, 4 months |
| seen | Apr 8 at 2:38 | |
| stats | profile views | 48 |
|
Feb 14 |
comment |
Split log file by time range You might check cronosplit to split the files out. |
|
Feb 2 |
comment |
What distro is the most similar to RHEL 5? As I said, it's derived from RHEL and is almost identical in practice. That wouldn't preclude the differences in package repository handling. |
|
Jan 15 |
awarded | Yearling |
|
Dec 8 |
comment |
How can I “cat” a file and remove commented lines? Another one I've done that always stuck with me was grep '^[^;]' filename. I can't speak to its portability though! |
|
Dec 4 |
comment |
receiving command as a parameter in bash I wonder if $($1) would fix anything. Couldn't hurt to try. |
|
Nov 29 |
comment |
Tracing RHEL system hack Generally speaking if they have physical access to the machine you're out of luck, and since they had root they can erase any record of their access. There are some physical security and encryption controls that you can use to reduce the risk of physical access. Look at the CIS RHEL5 Benchmark and the NSA guide for securing RHEL for information on physical security controls. |
|
Nov 21 |
awarded | Altruist |
|
Nov 19 |
comment |
Is there a way track bandwidth over time like days, months? Are you already logging with sysstat's sar? You might have everything you need already. |
|
Nov 14 |
awarded | Nice Answer |
|
Nov 12 |
comment |
Easiest way to manage users for two machines The example was meant to complement your answer, I just added the last line to reiterate for the asker's benefit that such an implementation could be done in any config management system. |
|
Nov 11 |
comment |
Easiest way to manage users for two machines Here is how a large organization takes that approach with Puppet and SSH keys. The puppetmaster distributes the local user accounts, ssh settings directory for each user, and sets a password for each user. This can be replicated in just about any config management system, not just Puppet. |
|
Nov 11 |
awarded | Investor |
|
Nov 11 |
awarded | Nice Answer |
|
Nov 11 |
comment |
Why does a default Linux installation run more processes than a default OpenBSD installation? On a CentOS 6.3 machine (minimal w/ redhat-lsb), ps aux|grep -v "\[.*\]"|wc -l returns 26 processes. |
|
Nov 11 |
answered | No network connection in CentOS 6.3 Minimal under VMWare Player |
|
Nov 11 |
comment |
how to allow SSH connection with a password instead of key exchange. What package and version of SSH are the two machines running? |
|
Nov 10 |
answered | What distro is the most similar to RHEL 5? |
|
Nov 10 |
revised |
In bash, is it possible to use an integer variable in the loop control of a for loop? clarification, troll-prevention |
|
Nov 10 |
answered | Is there a program that can send me a notification e-mail when a process finishes? |
|
Nov 10 |
comment |
In bash, is it possible to use an integer variable in the loop control of a for loop? Builtins are not problematic at all. I wanted to provide an all-bash solution for the asker. If you want to keep arguing about this, take it to chat; comments aren't good for this sort of thing |