Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I open a cygwin terminal?

Tags:

windows

cygwin

I'm using a windows 8 and have cygwin installed. However, when I navigate to the folder it's contained in, the only subfolders are usr and var, and neither contains something that looks like a terminal. How can I open a cygwin terminal?

like image 405
Everyone_Else Avatar asked Jan 05 '16 00:01

Everyone_Else


People also ask

What is Cygwin terminal?

Cygwin is a collection of open source tools that allows Unix or Linux applications to be compiled and run on a Microsoft Windows operating system (OS) from within a Linux-like interface. Cygwin offers users a Linux-like experience in a Windows environment.

Is Cygwin command prompt?

Cygwin is a collection of tools that provide a Linux Operating System's terminal look, feel, and some of its basic functionality for users of Windows OS who want to have a go over the basic commands of Linux without worrying about installing a Linux OS.


1 Answers

You should use mintty executable for this. In case of a default install path it is located here: c:\cygwin\bin\mintty.exe Cygwin installation puts a shortcut to the start menu, but perhaps this feature was broken in win8. I checked this shortcut on my computer, and it contains this command as a "Target":

C:\cygwin\bin\mintty.exe -i /Cygwin-Terminal.ico -

You should create a shortcut like this. Replace the given path, if your cygwin is located anywhere else. -i command line argument is not necessary. For further info check the manual page of mintty, which is located here.

like image 111
szkj Avatar answered Sep 24 '22 19:09

szkj