If you want to access your windows PC from Linux, then install tsclient.
sudo apt-get install tsclient
Then enter Windows PC details in order to connect to Windows PC.
Use CTL+ALT+ENTER key combination to toggle between Fullscreen mode.
Monday, April 19, 2010
Wednesday, March 3, 2010
Tuesday, March 2, 2010
Monday, March 1, 2010
Friday, February 26, 2010
Suggestion for new PC or Laptop buyer
If you buy new laptop or PC, then in future you may need to format it due to various reasons such as slow speed, defragment of disk or virus. The new installation takes lots of time and also you need to install other useful software which is again time consuming task. In order to save all this, its better to first create disk image and save it. So in future whenever you need to format you can just restore this image which is very fast as compare to individual software installation.
Wednesday, February 24, 2010
How to redirect stdout and stderr output to file
Sometimes you need to redirect output of some command to file. The command may print its messages both on stdout and stderr device, in this case simply redirecting stdout to file does not help. Use following command to redirect both stdout and stderr output to file.
$ command 1 > outputfilename.txt 2 > &1
$ command 1 > outputfilename.txt 2 > &1
Subscribe to:
Comments (Atom)