Posts

Showing posts from March, 2013

How to change the splash screen on ubuntu 12.04

Run bellow command on the shell. sudo update-alternatives --config default.plymouth Then it will ask you to select the default one from the available list Selection Path Priority Status ------------------------------------------------------------ 0 /lib/plymouth/themes/edubuntu-logo/edubuntu-logo.plymouth 150 auto mode 1 /lib/plymouth/themes/edubuntu-logo/edubuntu-logo.plymouth 150 manual mode * 2 /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth 100 manual mode Press enter to keep the current choice[*], or type selection number: You can select appropriate number from the list and enter.   If your login screen is not graphical on ubuntu 12.04 you can change it back to the normal operation as bellow. Run command  sudo gedit /etc/default/grub  And edit the grup file as bellow. Bellow line should be active (No # at the beggining) and

Webdav example in Spring Security with password encription

You can find few set of link which will guide you to do the spring configuration for the webdav. But, i have reallized that most of the readers getting trouble when implementing those codes as they are not properly explain how to do it basic level. Here is the clear working guide for the spring webdav integration with encripted password. 01. Setup the spring blank project from your desired developement tool (netbeans, eclipse,intelliJ IDEA). I am using intelliJ on this tutorial. And setup spring security example based on the available sources on the web. Here is the few links you may try. http://blog.solidcraft.eu/2011/03/spring-security-by-example-set-up-and.html http://static.springsource.org/spring-security/site/docs/3.0.x/reference/sample-apps.html After completing the above steps, you could be able to log in to the web application using form based authontification with encripted password on the database. Now lets setup for the webdav folder access for the above web proj