Posts

How to change Hostname in Ubuntu

Image
Some time we need to change host name in Ubuntu so I am going to describe it.This is common issue those who are not friendly with this os. There are many way for doing this task but I am going to change it by using GEDIT command. Before changing hostname- It is ubuntu Open Terminal and run given command: sudo gedit /etc/hostname it will ask for password after that below prompt will be displayed change name into this file. restart machine. Before changing Hostname;                               After Changing:

How to assign static IP address in windows through command Prompt

Image
Some time we required for assigning IP address to LAN card through command prompt. Please follow the process for doing same things. open CMD by using run as administrator : Then type command - netsh int ip set address "name of ethernet connection" address=192.168.X.X(enter IP address which you want to use)mask=255.255.255.0 gateway=192.168.X.X

How to configure email account in Windows Live Mail by using IMAP

Image
Before starting this you should enable IMAP for this account to receive emails. after enable imap service you will see below prompt . Now open windows live mail and click on Account then click on Email tab.  Enter email address and your password display name and then select manually configure server setting and click next and finish.

How to install XAMPP in ubuntu

Image
According your os version download  setup file for same. First of all run the below command first. sudo apt-get update Command 1: 32 Bit- wget http://sourceforge.net/projects/xampp/files/XAMPP%20Linux/1.8.3/xampp-linux-1.8.3-2-installer.run/download 64 Bit- wget http://sourceforge.net/projects/xampp/files/XAMPP%20Linux/1.8.3/xampp-linux-x64-1.8.3-2-installer.run/download Setup file will be download by the name of  download.Change it the name of xampp-linux-x64-1.8.3-2-installer.run  after that run below command. Command 2: sudo chmod +x xampp-linux-x64-1.8.3-2-installer.run Command 3: sudo ./xampp-linux-x64-1.8.3-2-installer.run After running this command follow the instructions.open any browser and type localhost for checking it. Start XAMPP- sudo /opt/lampp/lampp start Stop XAMPP- sudo /opt/lampp/lampp stop

How to configure SVN in Ubuntu 14.04

Image
According to your 32 and 64-Bit versions you can follow below steps for installing svn client in ubuntu os Step1- sudo apt-get update Step2- sudo add-apt-repository ppa:rabbitvcs/ppa and press enter to continue. Step3- sudo gedit /etc/apt/sources.list Step4- Add these two urls in this list.            deb http://ppa.launchpad.net/rabbitvcs/ppa/ubuntu precise main            deb-src http://ppa.launchpad.net/rabbitvcs/ppa/ubuntu precise main Step5- sudo apt-get update Step6- sudo apt-get install rabbitvcs-core Step7- sudo apt-get install rabbitvcs-cli Step8- sudo apt-get install rabbitvcs-nautilus3 Step9- sudo apt-get install rabbitvcs-gedit after that restart your machine and now you have svn.

How to deploy SVN Server in windows server 2008 R2

Image
There are two type of versions available for SVN in which Standard Edition is free and Enterprise Edition is not free.I am going through Standard Edition. 1) Install Windows Server where you want to create SVN server (Server OS is not required you can create it on Windows 7 and Windows 8) 2) Download SVN Server Setup file from below Location and run the .exe file following by the instructions.   http://www.visualsvn.com/server/download/ 3) After installing setup file we need to configure it.  4) If you are using active directory in your network then you can use your existing users for accessing SVN server repositories in place of create new users.   or if you are not having AD then you can create users from user management and you can assign permission according to your requirement.                            How to Assign different types of access  permissions to different users you can set permission according to your requirement.This is the Serv

How to create users & groups through command line in windows 11

Image
We can manage local user and groups from control panel and by clicking on my computer through manage option but we can also add, remove, disable, enable, reset user password    through command prompt. But we must be an administrator of the system. How to check current users . Command: Run-cmd-run command net user How to add new user Command: Net user +user name +password /add How to remove existing user Command: Net user +username /delete How to enable and disable user Command: Net user username /active: yes (For enable) Command: Net user username /active: No (For disable)   How to change password Command: Net user username+*press enter It will ask password which you want to change For example I have made test user in this screenshot. Here some Screenshot for more refrences.