Saturday, July 4, 2009

Some Important Vista commands

Here are some important commands for vista.
You can use these commands from the "run" program.

List of Commands:

  1. Color Management : colorcpl
  2. Computer Management Launcher : CompMgmtLauncher
  3. Control Panel : control
  4. Credential Backup and Restore Wizard : credwiz
  5. Defragment User Interface : dfrgui
  6. Driver Package Installer : dpinst
  7. DVD Player : dvdplay
  8. Display Adapter Troubleshooter : AdapterTroubleshooter
  9. Encryption File System : rekeywiz
  10. Event Viewer : eventvwr
  11. Fax Cover Sheet Editor : fxscover
  12. Firewall Settings : FirewallSettings
  13. Firewall Control Panel : FirewallControlPanel
  14. Help Pane : helppane
  15. iSCSI Initiator : iscsicpl
  16. Iexpress : iexpress
  17. Logoff from Vista : logoff
  18. Language Pack Installer : lpksetup
  19. Microsoft Sync Center : mobsync
  20. Microsoft Support Diagnostic Tool : msdt
  21. Optional Features Manager : optionalfeatures
  22. People Near Me : p2phost
  23. Performance Monitor : perfmon
  24. Presentation Settings : presentationsettings
  25. Printer Migration : PrintBrmUi
  26. Snipping Tool : snippingtool
  27. Software Licensing/Windows Activation : slui
  28. Sound Volume : sndvol
  29. Sound Recorder : soundrecorder
  30. Sticky Note : StikyNot
  31. System Properties : SystemPropertiesAdvanced
  32. User Accounts : Netplwiz
  33. Windows Fax and Scan : wfs
  34. Windows Mobility Center : mblctr
  35. Windows Backup Utility : sdclt

Friday, July 3, 2009

START AND STOP PARAMETERS for XAMPP on UBUNTU 9.04

Parameter Description
start Starts XAMPP.
stop Stops XAMPP.
restart Stops and starts XAMPP.
startapache Starts only the Apache.
startssl Starts the Apache SSL support. This command activates the SSL support permanently, e.g. if you restarts XAMPP in the future SSL will stay activated.
startmysql Starts only the MySQL database.
startftp Starts the ProFTPD server. Via FTP you can upload files for your web server (user "nobody", password "lampp"). This command activates the ProFTPD permanently, e.g. if you restarts XAMPP in the future FTP will stay activated.
stopapache Stops the Apache.
stopssl Stops the Apache SSL support. This command deactivates the SSL support permanently, e.g. if you restarts XAMPP in the future SSL will stay deactivated.
stopmysql Stops the MySQL database.
stopftp Stops the ProFTPD server. This command deactivates the ProFTPD permanently, e.g. if you restarts XAMPP in the future FTP will stay deactivated.
security Starts a small security check programm.


Example:
sudo /opt/lampp/lampp startssl

find more on parameters

Installing XAMPP on Ubuntu 9.04

Install XAMPP on ur ubuntu just in follwing simple steps....

Step 1: Download the installation package

At first download the package. Click here to download.

Step 2: Installing

1. Open the terminal [1. Open The terminal [Application-->Accessories-->Terminal]
2. Write the quoted code or copy and paste it in terminal [without the "" symbols]
"sudo tar xvfz xampp-linux-1.7.1.tar.gz -C /opt"
when prompted give ur sudo password.

now xampp is installed on ur machine in opt folder.

Step 3:Start

Now start the xampp .
to start xampp just write the following code in terminal [without "" symbols]
"sudo /opt/lampp/lampp start"

Step 4:Test

To test the xampp, just open any browser and in the browser's address bar
just write "http://localhost"

u r done...............

Find more on XAMPP

Changing MAC address in Ubuntu 9.04

To change your current or existing MAC address in ubuntu 9.04 just follow the follwing steps.... hope yours will be changed..

1. Open The terminal [Application-->Accessories-->Terminal]
2. Write the quoted code or copy and paste it in terminal [without the "" symbols]
"sudo gedit /etc/init.d/bootmisc.sh"
give sudo password when prompted.
3. A file will be opened. In that file after the last line write the following codes or paste it.

killall dhclient
killall dhclient3
ifconfig eth0 down
ifconfig eth0 hw ether 001CC019A888
ifconfig eth0 up
/sbin/dhclient
/sbin/dhclient3

4. Now save the file and restart your machine.

You are done.