RSS

Tag Archive | "copy"

Grabbing and Sending files and folders over SSH

Saturday, August 15, 2009

0 Comments

SCP allows you to transfer files over ssh between computers Copying to remote machines To copy a file to a remote machine run the following scp ~/file/to/be/transfered username@hostname:~/destinationfolder If you want to copy a directory you would use -r which would look like this scp -r /folder/to/be/transfered username@hostname:/path/to/destination and if you want to specify a SSH port use -P which [...]

Continue reading...

Windows 7 Move the Users and Program Files Directories To A Different Partition

Wednesday, August 5, 2009

24 Comments

After installing windows 7 you will be greeted with a user creation prompt press shift+f10 and you should get a cmd window up like in the image below Copy the Users Profiles, Program Files And ProgramData Folders onto the Partition you want to use robocopy "C:\Users" "D:\Users" /E /COPYALL /XJ robocopy "C:\Program Files" "D:\Program Files" /E /COPYALL /XJ robocopy [...]

Continue reading...

Windows Keyboard Shortcuts

Monday, July 6, 2009

0 Comments

Key Command Windows Key Or Ctrl+ESC Opens The Start Menu Windows key + L Locks Computer Windows Key + M Minimizes All Windows Windows Key + R Opens Run Windows Key + Pause Opens System Properties Ctrl + Alt+ Del Opens Windows Task Manager Ctrl + A Select All Ctrl + C Copy to the Clipboard Ctrl + D Unselect all Ctrl + V Paste from the clipboard Ctrl + x Cuts to the clipboard Ctrl + Y Redo Ctrl + [...]

Continue reading...

Pastebin from command line

Thursday, May 28, 2009

0 Comments

Have you ever wanted to show data from your command line but couldn't copy it? there is now a solution the script below will allow you to paste the output of commands into the tuts4tech pastebin just copy the script below and save it in /usr/bin/pastebin then you'll be able to do | pastebin e.g [...]

Continue reading...