How to remove the existing wireless network profile on Windows 8?

Removing wireless network profile may become necessary when you try to connect to a wireless network after you changed its password (without renaming it), so that it can identify the new one.

Solution 1
Step1 Click on the Wi-Fi icon at the right-hand corner in the task tray, and it will bring out all the available wireless signals;
Step 2 Right click on the existing wireless network name and select forget this network;
 Step 3 Reconnect to the wireless network.

Solution 2
 Step 1 You can also bring out all the wireless networks by a way of control panel;
Press ‘Windows key +X’, and click on Control Panel:
 
Step 2 Then click on Network and InternetàNetwork and Sharing CenteràChange Adapter Settings (on the left):


Step 3 Right click on Wi-Fi icon and locate on Connect/Disconnect, then you will see the existing wireless network:

Step 4 Remove the existing profile as mentioned in Solution 1.
Step 5 Reconnect to the wireless network.

Windows commands to show and delete wifi profiles



To show the list of profile connected 

netsh wlan show profiles


netsh wlan delete profile name="ProfileName"

Where ProfileName is the name of the profile you set while creating the connection

How to remove the existing wireless network profile in Windows 7

Step 1
Click Start->Control Panel, Select Network and Internet, and then click Network and Sharing Center
 
Step 2
In the task list, please choose Manage wireless networks.
 
Step 3
In the Network table, please select the existing profiles and click Remove.
 
Step 4
You may see a warning dialog box, just click OK.
 
Step 5
Then please go back to Network and Sharing Center and choose Change adapter settings -> right click Wireless Network Connection -> click Connect/Disconnect.
 
Step 6
Click the refresh button to view available wireless networks. Highlight the network which you want to connect, double click it or click Connect button.

How do I delete a wireless network from my list of available networks?

Windows 8
  • Access Settings and then choose the Wireless icon.
  • Right-click on the network and choose Forget this Network.
Windows 7
  • Go to Start > Control Panel > Network and Internet Network and Sharing Center
  • Choose Manage Wireless Networks from the options on the left.
  • Highlight the network from the list and choose Remove
Mac OS X (10.8)
  • Go to System Preferences Network
  • Select Wifi on the left
  • Choose the wireless network from the list & then click on the Disconnect button.
  • Click on the Advanced button
  • Select the wireless network from the list and then click on the (-) button to remove it from the list.
  • Click on the Ok button
  • Click the Apply button in the Networks 

Downloading the OS X Mavericks Installer from the OS X Yosemite App Store


To be able to find the Mavericks installer app, you must have downloaded it at some point with the same Apple ID you are using to access the App Store. If you never previously downloaded it or installed it on a Mac, you will not find the installer available on that account.

Go to the  Apple menu and choose “App Store”

Click on the “Purchases” tab and log in to your Apple ID if you haven’t done so already
Scroll through the list of purchased / downloaded apps and find “OS X Mavericks”, then click the “Download” button next to its name

How to Create an OS X Mavericks USB Installation Drive

Download OS X Mavericks from the Mac App Store, if you haven't already. If it tries to start the installation, just close it.

Insert your USB drive (you'll need one that's 8GB or larger) and open Disk Utility.

Select your drive in the sidebar and go to the Erase tab. Format the drive as "Mac OS Extended (Journaled)" and name the drive "Untitled." (Note: if you already have a drive or partition named "Untitled" connected to your computer, name it something else and change the corresponding variable in step 5's terminal command, or you might experience data loss!).

Click the Erase button and wait for Disk Utility to finish.

Close Disk Utility and open up a Terminal window. Copy and paste the command into the Terminal.

Run this in terminal and wait about 20 minutes:

sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction

You should see something like this:

Erasing Disk: 0%... 10%... 20%... 100%...
Copying installer files to disk...
Copy complete.
Making disk bootable...
Copying boot files...
Copy complete.
Done.

so don't cancel it or eject your USB drive while it's doing its thing.

When it's done, you should get a message stating the process is finished. Now, you can restart your computer, hold the Option key to access the boot menu, and select your new USB drive. From there, you can launch disk utility, format your drive, and do a clean install of Mavericks.

Install MySql using Yum install

  1. Install MySQL
    yum install mysql-server mysql php-mysql

How to configure MySQL

  1. Set the MySQL service to start on boot
    chkconfig --levels 235 mysqld on
  2. Start the MySQL service
    service mysqld start
  3. Log into MySQL
    mysql -u root
  4. Set the root user password for all local domains
    SET PASSWORD FOR 'root'@'localhost' = PASSWORD('new-password');
    SET PASSWORD FOR 'root'@'localhost.localdomain' = PASSWORD('new-password');
    SET PASSWORD FOR 'root'@'127.0.0.1' = PASSWORD('new-password');
  5. Drop the Any user
    DROP USER ''@'localhost';DROP USER ''@'localhost.localdomain';
  6. Exit MySQL
    exit