22
01
2009
PureFTPD is a secure and easy to configure FTP server. It has all the features you usually need, like TLS encryption, virtual users, quotas and limits. The only downside is that PureFTPD is not easy to install on a virtual server because the default Debian package is compiled with some options that are not supported by the standard OpenVZ and Virtuozzo kernels. Therefore you need to recompile PureFTPD with some reasonable settings. In This post I will explain how to do that and do a basic service setup.
Read the rest of this entry »
Comments : 4 Comments »
Categories : FTP, Linux
17
01
2009
By default the terminal app in OSX is not configured the way you are used to on a Linux system. There is no color output for ls and things like page up and page down are not working via SSH. Fortunately this can be corrected with some small configuration tweaks.
The first thing is to open the prefenreces panel and set the “Pro” theme as the standard theme. I also like to activate text antialiasing. My font of choice is “Monaco 12pt.”.
To enable the page down, page up, home and end keys you need to go to the keyboard tab and set the following key actions:
Home = \033[1~
End = \033[4~
Page Up = \033[5~
Page Down = \033[6~
To activate colored output for ls with a decent color scheme that works well on a dark background, create a file .profile in your home directory with the following contents:
export CLICOLOR=1
export LSCOLORS=cxexcxdxbxfxfxbxbxcxcx
Comments : No Comments »
Categories : Mac