Sehr lustiger Test - soll mich das nachdenklich stimmen?
Leopard automatically comes with SSHKeychain support, so no external application is needed anymore. At first (before uninstalling) remove the mark “Manage (and modify) global environment variables” from SSHKeychain - then throw it away, it’s plist and remove it from the automatic startup. The easiest way is to reboot now, at least log off to remove the bash environment variable set by SSHKeychain.
Afterwards try following command:
kulawik-nb:.ssh skulawik$ echo $SSH_AUTH_SOCK
/tmp/launch-HYbqHA/Listeners
The result should be something like “/tmP/launch*” (otherwise SSHKeychain is still running).
Then change the ssh config file (this was previously done by SSHKeychain configuration):
joe ~/.ssh/config
and enter such lines (this ones could be repeated):
IdentityFile ~/.ssh/id_privat
To get best Linux experience (Page-up / down / et all) try my private Terminal.app settings for Leopard:
Thanks to Engadget:
Although we’ve been mostly happy with Leopard, one of the features we were most looking forward to was the ability to set Time Machine to use a NAS volume like Airport Disk, thus making laptop backups wireless and sexy (well, sort of sexy) instead of wired and cumbersome. Sadly, Apple cut the feature at the last minute, but as with all things OS X, nirvana is usually just a defaults write command away, and Volker Weber has got it sorted for us. Just pop open a terminal window and enter:
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
and you should be able to select NAS volumes in the Time Machine prefs. Of course, you should only re-enable this for giggles — we don’t know why Apple turned it off to begin with, and it could very well be full of bugs and hose your data. Considering some of the other glitches that have cropped up in Time Machine, we’d actually recommend staying well away from this one, but if you’re desperate, by all means — go for it and let us know how it works in comments!
Befindet sich unter: /System » Library » CoreServices » Screen Sharing.app
oder per vnc://1.2.3.4 im “Go” Menu.
Here’s a little perl script that can be used to find the top ten largest directories from the argument directories. To use it, save it as dirsize in your user’s .bin folder (and make it executable with chmod a+x dirsize), modify your .bashrc to add ~/bin to your path, then run something like this in Terminal: dirsize ~/*. Here’s the code:
#!/usr/bin/perl
use strict;
die “usage: $0 <directories>\n” unless @ARGV;
@ARGV = map { “‘$_’” } @ARGV;
my @results = `du -hs @ARGV`;
@results = sort human_sort @results;
@results = @results[0..9];
print @results;
#—————————————————————————
sub human_sort {
my ($size_a) = $a =~ /^(\S+)/;
my ($size_b) = $b =~ /^(\S+)/;
$size_a = $1 * 1024 if $size_a =~ /^(.*)k$/;
$size_a = $1 * 1024 * 1024 if $size_a =~ /^(.*)M$/;
$size_a = $1 * 1024 * 1024 * 1024 if $size_a =~ /^(.*)G$/;
$size_b = $1 * 1024 if $size_b =~ /^(.*)k$/;
$size_b = $1 * 1024 * 1024 if $size_b =~ /^(.*)M$/;
$size_b = $1 * 1024 * 1024 * 1024 if $size_b =~ /^(.*)G$/;
return $size_b <=> $size_a;
}
Nachdem das gute Letterbox seinen Dienst eingestellt hat oder einfach nicht mehr zuverlässig funktioniert, gibt es jetzt ein neues 10.5 Plugin für Mail.app welches den selben Zweck erfüllt.
Update: unter http://www.daneharnett.com/widescreen/WidescreenMailPlugin.html gibt es jetzt auch eine mehrzeilige Version mit Betreff in der zweiten Zeile! SEHR COOL!
Just install the latest Version for 10.4, afterwards create a symlink:
sudo ln -s /tmp/mysql.sock /usr/local/mysql/mysql.sock
Then mySQL can be started or stopped with this command:
sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop
sudo /Library/StartupItems/MySQLCOM/MySQLCOM start
A ps -awx | grep mysql should show this:
137 ?? 0:00.02 /bin/sh ./bin/mysqld_safe –datadir=/usr/local/mysql/data –pid-file=/usr/local/mysql/data/kulawik-nb.haj.kulawik.site.pid
189 ?? 0:22.95 /usr/local/mysql/bin/mysqld –basedir=/usr/local/mysql –datadir=/usr/local/mysql/data –user=mysql –pid-file=/usr/local/mysql/data/kulawik-nb.haj.kulawik.site.pid
Hammer, was man alles so machen kann. Aus der Not heraus geboren fing er an sein iPhone zu redesignen. Hut ab, das lässt sich sehen!

Hat zwar nix mit Macs zu tun aber trotzdem lustig ![]()
http://www.youtube.com/watch?v=uF2djJcPO2A












Recent Comments