Search Results

2
votes

Increasing Battery Life Under Linux

Lesswatts.org has a number of tips that will help. akdom mentioned PowerTOP, which will tell …
1
vote

Mapping my custom keys in Debian

Running Debian, I had the same issue. What I did is run xev and see what keycode those keys return. Microsoft likes to break standards a little, so some of the multimedia keys just won't work. But …
3
votes

Best Linux Distro for Computer Repair

I swear by SystemRescueCd. It offers all the tools you could possibly need to save a system. This includes dd/ …
9
votes

Is Ubuntu an acceptable distro for running a production server?

Nothing strictly disqualifies Ubuntu as a server distro. If I recall, Ubuntu even has a server-oriented variant (Ubuntu Server). The thing that makes Ubuntu less production-ready is that there isn' …
1
vote

VMware and iptables

Your second log line is trying to match packets sent to 10.10.1.33, but you changed the destination address to 192.168.0.33 on the line above it. I'm not sure why you don't see the outgoin …
0
votes

Bash Shell Scripting: what simple logic am I missing

You can't use cd in a bash script. You could alias the cd and path though. alias goto='cd /path_to_work/usr/dir' UPDATE: you would put that line in your .bashrc fi …