Categories
Tags
aastra apache asterisk centos cheatsheet chrome cisco comic dd dropbox email esxi fedora file sharing find gmail gnome google grep im feeling lucky linux migration networking olf openfiler openoffice replace rpl scm search security sed sp3 spyware ssh storage subversion tips tomcat twitter ubuntu vmware voip windowsArchives
Tag Archives: linux
Open Source storage server
This is not going to be a full review, but more a general take on things.
Since moving from VMware Server to ESXi to host my virtual machines, I’ve been very interested in looking into some more of the advanced features of ESX and ESXi yet most of these require iSCSI. I remember from a few [...]
OhioLinux September 25-27, 2009
This years OhioLinux Fest starts tomorrow and runs until Sunday. I’ll be there. You should to. More info at the OhioLinux website
Check speed of connected link in Linux
If you’ve ever wanted to check on the status of your Ethernet links, you’ve probably used the ip commands (or ifconfig) to view some basic information. However, you might have noticed these commands do not tell you what the current link speed is, or other possibly important details. That’s where ethtool comes in.
[jonmoore@megaton ~]$ sudo [...]
Extend the timeout on SSH connections
A quick google search will quickly answer this question, but I’ve found myself asking it a few times lately. Often when I let an SSH session go idle, I’ll end up being disconnected. By adding ServerAliveInterval 60 to ~/.ssh/config I’ve managed to limit this from happening.
There is also a similar server side fix for this. [...]
Creating empty files in Linux
I had a need for several files of various sizes to do some network testing with. I found a very good us for dd here.
dd if=/dev/zero of=10mb-file.bin bs=1024k count=n
Using the above command (and replacing n for a value) allows the creation of empty files with the size specificed. Need a 10Mb file, n = [...]
Arrow keys not working in VMware?
Mine didn’t
Luckily Google helped me find a solutation rather quickly, and using information from this site I was able to get things working again.
Basically, I added xkeymap.nokeycodeMap = true to /etc/vmware/config and things started working right. Another on the forum suggested remapping the keys, but I didn’t try that.
Super simple, limited and basic look at tar
Create a tar archive
tar -c -f archive.tar *
Create a compressed archive with gzip
tar -c -z -f archive.tar.gz *
You can also condense down the commands like so..
tar -czf archive.tar.gz *
Find Text and Find/Replace Easier Than You Think in Linux