Pages
Mikael Ståldal
Software projects
Categories
Archives
- November 2022
- July 2019
- June 2016
- February 2016
- August 2015
- July 2015
- June 2015
- May 2015
- December 2014
- October 2014
- June 2014
- March 2014
- December 2013
- October 2013
- August 2013
- January 2013
- August 2012
- July 2012
- January 2012
- December 2011
- November 2011
- October 2011
- July 2011
- May 2011
- April 2011
- November 2010
- August 2010
- June 2010
- April 2010
- November 2009
- September 2009
- August 2009
- July 2009
- April 2009
- January 2009
- December 2008
- July 2008
- October 2007
- May 2007
- March 2007
- September 2006
- May 2006
Monthly Archives: January 2009
Things you might want to change in Ubuntu 8.04 (hardy) desktop, part 2
After installing Ubuntu 8.04 (hardy) desktop, there are some things you might want to change. This article focus on user configuration (mostly editing dot files in your home directory) and do not require superuser access. Some of this changes requires … Continue reading
Posted in Linux
Comments Off on Things you might want to change in Ubuntu 8.04 (hardy) desktop, part 2
How to setup PPTP VPN in Linux
1. Create a file /etc/ppp/peers/name: pty “pptp host –nolaunchpppd” name username remotename PPTP require-mppe-128 file /etc/ppp/options.pptp ipparam name 2. Add this line to the file /etc/ppp/chap-secrets: username PPTP password * 3. Create a file /etc/ppp/ip-up.d/tunnel #!/bin/sh if [ “${PPP_IPPARAM}” = … Continue reading
Posted in Linux
2 Comments
Things you might want to change in Ubuntu 8.04 (hardy) desktop, part 1
After installing Ubuntu 8.04 (hardy) desktop, there are some things you might want to change. This article focus on system configuration (mostly editing in /etc) and requires superuser access (using sudo). Some of this changes requires reboot to take effect. … Continue reading
How to use mousewheel in GNU Screen
GNU Screen has support for scrollback, but by default you have to use awkward keys to use it. I would like to be able to use Shift-PageUp, Shift-PageDown and the mousewheel to scroll, just like you can do in xterm. … Continue reading
Posted in Linux
12 Comments
How to use Ctrl-Tab in GNU Screen
GNU Screen allows you to open several sub-windows within one terminal window. By default, you switch between them using Ctrl-A followed by n or p. I think this is a bit clumsy, I would like to switch with Ctrl-Tab and … Continue reading
Posted in Linux
9 Comments