Trylinux.org
 

September 3, 2008

wordbook

Filed under: General, tools — admin @ 10:21 pm

I just installed the wordbook plugin for my wordpress blog.  Hopefully this will help me add some content to my facebook page which I have seriously neglected.  It seems like a nice plugin, let’s hope it works.

October 18, 2007

convert is awesome

Filed under: linux, tips, tools — tip @ 9:17 pm

Someone was asking how to convert PDFs to JPGs and I thought to myself, surely there is a Linux utility to do this. Well ImageMagick comes with a utility called convert and the syntax is really easy.

convert test.pdf test.jpg

This will create a jpeg for each page of the pdf.  Simple right?  Plus it supports many input and output formats.

October 4, 2007

Automating system management

Filed under: linux, tools — tip @ 3:26 pm

I ran across a great utility called puppet to help manage Linux servers today written in Ruby. I hope to give it a try sometime soon.

http://reductivelabs.com/trac/puppet

Screen

Filed under: linux, tips, tools — tip @ 2:13 pm

If you haven’t used screen yet, then you should really check it out. It’s great for running those long jobs (or bittorrent, for legit purposes of course) and coming back to it at a later time. Anyway I always wished that I could share a screen session with another user. Well I should have read the man file because it is already there.

screen -x Attach to a not detached screen. (Multi display mode).

Now if they would just allow scrolling back through the history with <shift><pgup>.