Showing posts with label multiple. Show all posts
Showing posts with label multiple. Show all posts

Monday, March 10, 2014

How to Create Multiple YouTube Channels in one account

Well, if you have already one YouTube Channel and need to create another one YouTube Channel with the different name then follow the steps given below.
1
Go to Google and Sign in with your Google account’s email ID and password
2
After signing in with Google , go to YouTube by clicking on YouTube icon for the more information check the screenshot below.
Go to YouTube from Google Search Page
3
After clicking on YouTube Icon you will be redirect to the YouTube, there you will see your Google+ Profile pic at right top corner of the page. Click on your pic then few options will be show up as drop down Then click “Switch Account“. See the screenshot below for the example :
Switch YouTube Channel
4
When you click on “Switch account” option, Then, new box will be appear with options to switch your YouTube Channel account but if you haven’t created any account earlier then switching account option will be disappear and you have to choose and click on “All My Choices” see the screenshot below, for the more information.
All my choices - YouTube
5


Now, you will be taken to the different page, where you will be able to see listing of all your YouTube channel (if you have) or you will see “Create a New Channel” option to create new channel with your same account.
Read more »

Friday, February 21, 2014

Control Multiple Computers With One Keyboard And One Mouse


Synergy is the application that I use to share a single keyboard and Mouse between multiple computers. Its just like dual display setup, i.e. you move your mouse over to one edge of the screen and it goes to other computer. I have been using Synergy to share USB keyboad and USB mouse plugged into one laptop with other, both running Ubuntu. You can also share between different OS like Windows and Mac.

To share the keyboard and mouse between two Ubuntu laptops follow the steps below.

First decide which laptop will be the server and the host. The servers keyboard and mouse will be used to control both the servers and clients operation. After deciding go to the server compuetr and install synergy. You can click here to install Synergy in Ubuntu.

Create a file called .synergy.conf in your home folder with following text.

section: screens
HP:
Lenovo:
end

section: links
HP:
right = Lenovo

Lenovo:
left = HP
end

section: aliases
HP:
HP-540-laptop
Lenovo:
Lenovo-laptop
end

This file has three sections.

The last section is the aliases section. Here you can define aliases to the hostname or IP address of your computer so that you can address them easily in other sections. If you dont define them here, you have to use the hostname or IP address in other sections instead.

The first section is the screens, just list the aliases of computer here.

The second section is the important section. Here you have to define the physical location of the computers. Actually you define what edge will jump the mouse to other computer. So, here Ive first defined for HP. To the right of HP Ive Lenovo, i.e. when I move mouse over to right edge it will go to Lenovo. Similarly Ive defined settings for Lenovo saying to the left of Lenovo is HP. When I move mouse over the left edge of Lenovo, the mouse will move to HP.

Now I can run synergy server by running the command synergys from terminal. Run this command in the server, for me its HP.

Now time for the client setup.

Make the same file in same location in your client computer. Run the synergy client command synergyc <server_hostname>
from terminal. HP-540-laptop.local is my server, so Id run 
synergyc HP-540.local

Synergy setup is complete. Now you should be able to control both the computer with single keyboard and mouse.
Read more »