Put WordPress list in ascending order

Open your theme's page and put this code: <!--?php query_posts($query_string. "&order=ASC"); ?> before the <!--?php if ( have_posts() ) : ?> <!--?php while ( have_posts() ) : the_post(); ?> Or change another query_posts that you find in your code to add the order=ASC instruction. Source: http://wordpress.org/support/topic/posts-in-ascending-order-1

Move WSUS data to another directory

Command: wsusutil.exe movecontent %content path% %logfile% –skipcopy%content path% : The new root for content files. The path must exist. %logfile% : Path and filename of the log file to create. -skipcopy : Indicates that only the server configuration should be changed and that the content files should not be copied. Source: http://bartvdw.wordpress.com/2010/03/07/move-wsus-content-to-another-drivepartition/

Remove linux kernel images properly from Ubuntu/Debian

After some system upgrades with apt-get, you can get the /boot full of different versions of linux kernels. If the last one is stable for you, there is no reason to keep the old ones. A simple way to get this directory clean in a good way is to run this command: dpkg --get-selections|grep 'linux-image*'|awk … Continue reading Remove linux kernel images properly from Ubuntu/Debian