Posts

Showing posts with the label without

SSH Login Without Password

SSH Login Without Password For this you required to generate your own personal set of private/public pair. ssh-keygen is used to generate that key pair for you. On the user�s home directory, on the localhost, type [local-host]$ ssh-keygen -t dsa This will ask you a passphrase. A passphrase is a sequence of words or other text used to control access to a computer system, program or data. A passphrase is similar to a password in usage, but is generally longer for added security. Once entered the passphrase you will be prompted to enter the same passphrase again for confirmation. The private key was saved in .ssh/id_dsa and the public key .ssh/id_dsa.pub. Now, copy the public key to the remote machine [ local-host ] $ ssh-copy-id -i ~ / .ssh / id_dsa.pub user @ remotehost or if you don�t have ssh-copy-id script installed use   [ local-host ] $ cat ~ / .ssh / id_dsa.pub | ssh user @ remotehost "cat - >> ~/.ssh/authorized_keys" Now on the localhost machine, on GNOME sel...

Speed up your pc without any software

Image
Speed up your pc without any software speed up your personal or any computer wothout using any software Reason of computer slow: Slow computers are the biggest reason you do not use the computer properly., Such as the hardware configuration of the computers speed depending on the way the software configuration , maintenance affects the speed. Depending on the operating system and the computers performance. Usually seen,The speed of the computers Windows setup. The speed will gradually slow down. Higher than necessary because of the software setup. Higher than necessary softwares setup, the memory pressure increases. Many programs that do not directly but in domestic service in a variety of ways. For example, the data base software, antivirus Etc. that may be. (A process running on your machine, it turned out to see the windows task manager.  go to the first search from the stat menu, and type task manager than hit inter. Click above to view running process.) Its the speed of y...

Speed up an Old Computer without Upgrading

Image
Speed up an Old Computer without Upgrading Click the Image Below to Expand | V Credits to: OpenPinoy download file now

Sony Ericsson XPERIA X2 Live life without boundaries

Image
Sony Ericsson XPERIA X2 Live life without boundaries Windows Mobile 6.5 � work on the move easier Make the most of the day � flexible desktop panels categorised for life: communication and fun, multimedia, business and internet Work without boundaries � instant synchronisation of mail, calendar powered by QWERTY keyboard messaging and Windows Mobile Slide view � quick access to frequently used phone activities and overview of missed incoming activity Present documents on the big screen � TV out cable Never get stranded - XPERIA exclusive travel insurance Enjoy amazing multimedia � 3.2� high resolution touch screen and DVD quality 8.1 mega pixel camera with Photo light � easily upload images to web albums Real 3D panel � 3D effects and zoom, music playback controls Big business meeting? Arrive charged with the Car Charger AN300 � ultra fast, ultra-safe and ultra-reliable. A perfect accessory for the XPERIA X2, it charges 40 per cent faster than most car chargers � just plug into the cig...

SQL Fetching Record One by One without using Cursor

SQL Fetching Record One by One without using Cursor --Fetching Record One-by-One without using Cursor DECLARE @EMP_ID CHAR( 11 ) SET ROWCOUNT 0 SELECT * INTO #MYTEMP FROM Employee SET ROWCOUNT 1 SELECT @EMP_ID = EMP_ID FROM #Employee WHILE @@ROWCO download  file  now

Spring Cleaning Your Mac Article 3 Moving It off the hard drive without causing more problems

Image
Spring Cleaning Your Mac Article 3 Moving It off the hard drive without causing more problems Now that you�ve identified your space hogs, what do you do with them? I suggest these steps: � 1. Copy them over to an external hard drive so that you don�t accidentally delete one you really wanted. 2. Decide which files and apps you don�t want on your boot drive. 3. Delete them with care, using the correct procedures. Think Before Hitting the Delete Key! 4. If you do not want to delete them, decide where to archive them for future reference.� 5. Remember, your goal is to ensure you have at least 20% of your hard drive free for the use of OS X itself.� � Copying Files to an External Hard Drive and the Choices it involves� You have three choices for copying files over to an external hard drive: 1. The easy way. Just clone the fat hard drive to a bigger external hard drive. You can use at least two different utility programs for this� 2. Picking and choosing which files and folders to copy over...

ssh Login to remote host without password

ssh Login to remote host without password Most of remote systems are secured by SSH, and to gain remote control with terminal, you would need to ssh into the server. You will be prompted to login with your password on every session. To avoid typing password everytime, you need to setup as authorized client. Here is how you can do that with ssh key. First on your own client machine, generate the $HOME/.ssh/id_rsa.pub file: bash> ssh-keygen # When prompted to enter password, simply hit ENTER key to skip it! bash> cat ~/.ssh/id_rsa.pub xxxyyyzzz zemian@myhost # You will see a very long string instead of "xxxyyyzzz". Now you need to copy this public key string into your remote host. You need to ssh into the remote host with your valid password first to setup. If successful, the subsequent ssh into the remote host will not prompt you for password! bash> ssh myremotehost # Enter password to gain access After you are in the remote host: myremotehost> vim ~/.ssh/autho...