Showing posts with label linux commands. Show all posts
Showing posts with label linux commands. Show all posts

Saturday 6 September 2014

How to run .exe file in linux

.exe file in linux

 



we generally can't execute a windows executable(.exe formate file) on Linux.
but it is now possible to run .exe file in any of the the linux through a software called WINE.

wine is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, Mac OSX, & BSD. Instead of simulating internal Windows logic like a virtual machine or emulator, Wine translates Windows API calls into POSIX calls on-the-fly, eliminating the performance and memory penalties of other methods and allowing you to cleanly integrate Windows applications into your desktop.
                          Click here  for more information.



For running .exe file in linux perform two simple steps:-


1. open linux command prompt and enter the commands one by one
  
  a) sudo apt-get update 
   
   b) sudo apt-get install wine1.7.26

      (Here 1.7.26 is the version of the WINE you want to download.) 


2. After installing the wine just Right click on the file you want to open let suppose my.exe and open it with Wine.
and enjoy...!!!!


Also you can install wine through Ubuntu software center and install thru GUI based process.

Download wine from here.


Friday 15 August 2014

FREE LINUX/UNIX PDF DOWNLOAD


Linux-OS-Logo_1920x1080_6052
Today more than 90 percent of supercomputers (including the complete top 10), more than half of all smartphones, many millions of desktop computers, around 70 percent of all web servers, a large chunk of tablet computers, and several appliances (dvdplayers,
washing machines, dsl modems, routers, …) run Linux. It is by far the most commonly used operating system in the world.
Linux kernel version 3.2 was released in January 2012. Its source code grew by almost two hundred thousand lines (compared to version 3.1) thanks to contributions of over 4000 developers paid by about 200 commercial companies including Red Hat, Intel,
Broadcom, Texas Instruments, IBM, Novell, Qualcomm, Samsung, Nokia, Oracle, Google and even Microsoft.

Sunday 2 March 2014

UNIX/LINUX COMMANDS

Unix/Linux Command 


NOTE- "DON'T INCLUDE "-" USED AT THE END OF THE EVERY COMMAND..

HERE IT IS USED JUST TO MAKE YOU SEE IT IN A PROPER WAY."

File Commands

1. ls -                                         Directory listing
2. ls -al -                                    Formatted listing with hidden files
3. ls -lt -                                     Sorting the Formatted listing by time modification
4. cd dir -                                  Change directory to dir
5. cd -                                       Change to home directory
6. pwd -                                    Show current working directory
7. mkdir dir -                              Creating a directory dir
8. cat >file -                               Places the standard input into the file
9. more file-                              Output the contents of the file
10. head file-                             Output the first 10 lines of the file
11. tail file -                               Output the last 10 lines of the file
12. tail -f file-                            Output the contents of file as it grows,starting with
                                                  the last 10 lines
13. touch file -                           Create or update file
14. rm file -                                Deleting the file
15. rm -r dir                               Deleting the directory
16. rm -f file                               Force to remove the file
17. rm -rf dir                              Force to remove the directory dir
18. cp file1 file2                         Copy the contents of file1 to file2
19. cp -r dir1 dir2                      Copy dir1 to dir2;create dir2 if not present
20. mv file1 file2                        Rename or move file1 to file2,if file2 is an existing
                                                 directory
21. ln -s file link                         Create symbolic link link to file