Elevator HelloWorld by neudeep - February 6, 2019March 4, 20190 Elevator is nothing but one or more cars which are metal boxes which rise up and down for vertical transport of people or goods. Parts: Car(metal boxes)CounterweightElectric motor ,Braking systemStrong metal cables and pulleysControl SystemSwitches and SensorsSafety system Basic diagram of elevator system It uses motor for hoisting the car. For vertical movement it uses strong metal cables and pulleys. There are different types of elevators based upon different factors like technologies used,application,speed,hoist mechanism used,whether it carries people or good ,control system used,etc. Two types of elevators that are most commonly used in residential and commercial buildings are: Traction elevators and Hydraulic elevators.For high speed and high rising modern buildings,traction elevators are used.Traction elevators are also energy efficient
How To Install SVN Server On Ubuntu 18.04 LinuxAdmin by blog_1buq8n - February 6, 2019July 26, 20191 In every software project there is need for version control system. Here we will list out steps for install SVN server on Ubuntu machine. Install Apache sudo apt-get update sudo apt-get install apache2 sudo systemctl start apache2 Install Apache Subversion sudo apt-get install subversion libapache2-mod-svn sudo apachectl -M sudo a2enmod dav sudo a2enmod dav_svn sudo a2enmod authz_svnsudo service apache2 restart Create SVN Repository Most common places for Subversion repository are: /srv/svn, /usr/local/svn and /home/svn. Here we will assume /home/svn as repository sudo mkdir /home/svn Create svn repository. Here we create a repository called “IEC1000” sudo svnadmin create /home/svn/IEC1000 change ownership and permissions sudo chown -R www-data:www-data /home/svn/IEC1000/ sudo chmod -R 775 /home/svn/IEC1000 If you are using windows system use "TortoiseSVN" to create repository and add files/folders to SVN. If you are using Linux system use "rabbit SVN"