Managing Oneself–Notes Taken

Managing Oneself ---Peter Drucker --Reading Notes Understanding oneself and planning based on that is very important in nowadays. For that we need to consider the following things What are my strengths? A decent information can be obtained from feedback analysis. ( How your past plans and expectations matched or deffered with the output) How do… Continue reading Managing Oneself–Notes Taken

FOSS12-APT

setting up local apt repository make a folder containing all debs called mydebs apt-get install dpkg-dev copy mydebs to /usr/local/ write a script on /usr/bin with following contents #! /bin/bash cd /usr/local/mydebs dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz give it execute permission chmod u+x update-mydebs modify the sources.list file deb file:/usr/local/mydebs ./   (from… Continue reading FOSS12-APT

FOSS8

Web Technologies setup LAMP install apache,php, mysql,phpmyadmin and connectors apt-get install apache2 mysql-server php5 php5-mysql libapache2-mod-php5 phpmyadmin. test apache -------enter localhost test phpmyadmin------localhost/phpmyadmin test php vim /var/www/html/info.php <?php echo phpinfo(); ?> localhost/info.php login form creation   vim /var/www/html/login.php   !DOCTYPE html> <head> </head> <body> <form action="handle.php" method="post"> <input type="text" name="username" /> <input type="password" name="password" />… Continue reading FOSS8

FOSS7

Final set of  preparations... virtualbox in ubuntu setup my apache download virtualbox deb install deb enable virtualization from BIOS install debian download iso create a new virtual machine install debian install guest additions download the iso . install guest additons if auto-run not working...use sh VBoxLinuxAddtions.run restart to see full-screen Debian Desktop Files Section files… Continue reading FOSS7