$ sudo package-cleanup –cleandupes
Archives
All posts for the month December, 2013
Just wasted about 3 hours of my life trying to figure out WTF I did to Apache that made it start giving me this error. Turns out I added a virtual_host section and added all the SSL directives, but I also had all the Global SSL directives enabled as well. Remove one set of SSL lines and finally that shit stared. Now where was I?
Realtime utility that will help show the TCP connection states a TCP connection goes through as it works it’s way to established connection then tears itself back down. Also displays source/destination and bandwidth usage. Has ability to read from pcap files.
Examples of usage:
# tcptrack -i eth0
# tcptrack -i eth0 port 80
# tcptrack -T filename.pcap
tar czvpf backupfile-date +%Y%m%d.tar.gz /opt/directory /usr/local/directory /etc/directory
perl -I/opt/rt4/lib -MRT -e’
RT::LoadConfig( ); RT::Init( );
my $u = RT::User->new($RT::SystemUser);
$u->Load(“root”);
print $u->PrincipalObj->GrantRight(
Object => $RT::System,
Right => “SuperUser”
);
‘
This will turn any RT user into a superuser. Replace root user with any other valid user.