12 Jul, 2010
Posted by: Thomas In: Linux
If you edit a file and vim does not recognize its syntax correctly or not at all you can set its syntax manually with :set syntax=[SYNTAX] Do you want to know which syntax your vim installation understands you can list all with this find: find /usr/share/vim/*/syntax -name “*\.vim”. This is also the place where to [...]
07 Jul, 2010
Posted by: Thomas In: Linux
Have you ever wanted to set permission to all directories under a certain directory to 755 and permissions to files under that certain path to 644?
28 Jun, 2010
Posted by: Thomas In: Linux
This is an update and in depth look to my previous Blog post of “How to get absolute path within the running shell script“. In my previous post i used a solution with readlink which is not available everywhere. Especially on Mac OS there is no readlink. But, we do not need readlink anyway…
If you want to free the memory from all unused “crap” you can run this little one liner as root: sync;echo 3 > /proc/sys/vm/drop_caches The sync command flushes all buffers from memory to disk so you are safe that you do not loose anything. Keep also in mind that not everything from the cleared memory [...]
23 Jun, 2010
Posted by: admin In: Linux
cd /home/USER tar cf – . | (cd /dir/where/you/want/to/copy && tar xBf -) This has some advantages over cp -rfp. You can read it in detail at O`Reilly
06 Feb, 2009
Posted by: admin In: Linux
Take a look at my updated post Have you ever needed the absolute path of the shell script within this script? I do not mean the current working dir (pwd). That is different, because you do not know from which path the bash script is called. In my case i needed the absolute path, because [...]
18 Dec, 2008
Posted by: admin In: Air|Linux
A few weeks ago Adobe announced to release new versions of the Flash player and Air simultaneously for the 3 major operating systems Linux, Mac and Windows. Today Adobe released AIR for Linux in Version 1.5 to catch up with the others. So in future Linux Users of AIR do not have to wait for [...]
16 Oct, 2008
Posted by: admin In: Overall
Yesterday Adobe released a new Version of their Flash Player – Version 10. For the first time they released it simultaneous for Linux, Mac and Windows. Adobe has not the best reputation in the Opensource World in the past but they want to change this. I think this is good thing.
18 Sep, 2008
Posted by: admin In: Air|Linux
Until now Adobe does not provide full Cross Platform Support for their RIA Project AIR. AIR was only available for Windows and MAC. Now the Linux version gets a little bit closer to this versions. With the Release of the Adobe AIR 1.1 Beta for Linux all Applications which runs on MAC and Win are [...]
31 Mar, 2008
Posted by: Thomas In: Air|Linux
Version 1 der Multi/Cross Plattform API von Adobe wurde ja kürzlich veröffentlicht. Wie von Beginn an angekündigt wird nun laut einem Bericht von CNET eine erste Alpha Version für Linux erscheinen. Interessant wird ob und wie allgemein die API von AIR nun auch unter Linux zu verwenden sein wird. Das wird vor allem bei Dateisystemoperationen [...]
13 Jan, 2008
Posted by: Thomas In:
Gentoo PHP Web Development Appliance for VMware Download WebDev Appliance Version 1.1: Download Size: 1.4GB md5: fe1d6f6b90fd9a859cd8c6fbe669bf8b WebDev Appliance on VMware Marketplace I made this appliance because i needed a small appliance, small enough to store it on a USB Stick, because i am developing on my desktop PC and from time to time on [...]
Tags:
apache,
bash,
development,
fop,
gentoo,
Linux,
MySQL,
pdftk,
PEAR,
PHP,
vmware,
VMware Appliance,
Zend Framework
Das 7zip Kompressionsformat wird nicht “Out-Of-The-Box” unterstützt. Das Programm kann einfach mit thomas@gentoo ~ $ emerge -av p7zip installiert werden. Einfaches schnelles Komprimieren Eine Datei oder ein ganzen Verzeichnis mit den Standard Optionen zu komprimieren ist ganz einfach. Nehmen wir an, wir wollen ein ganzes Verzeichnis komprimieren. thomas@gentoo ~ $ 7za a test.7z test-verzeichnis/ Starkes [...]
Die Basis bei Google ist Open-Source Software. Ein angepasstes GNU/Linux als Betriebssystem wird für deren Server Mainframe verwendet. Ausserdem wird MySQL sehr stark eingesetzt. Als Programmiersprachen werden hauptsächlich Python und Java verwendet. Die hier genannten sind nur einige wenige Open-Source Projekte die von Google verwendet werden. Kann man am Erfolg von Google also ablesen das [...]
27 Dec, 2007
Posted by: Thomas In: Linux
Wird durch den Kernel eine neue Mac Adresse erkannt, wird angenommen das es sich dabei um ein neues Netzwerk Interface handelt. Dieses neue Device muss anschließend auch neu konfiguriert werden. Soweit so gut. Möchte man aber seine Netzwerkkarte gegen eine neue tauschen, aber denselben Device Namen behalten, um so die evtl. bereits erstellte und wahrscheinlich [...]