成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

使用Cygwin在Windows上體驗Linux的快感

運維 系統運維 Linux
對于剛進入Linux世界的新人來說,使用Cygwin可以讓你在Windows下面練習Linux的Bash,以及常用工具,而不需要安裝Linux,也不用擔心Windows被破壞,給每個人多一種選擇也蠻好的。

[[141926]]

前言

記得大學的時候就曾經使用過Cygwin,可惜當時沒有發現她的美,我相信現在大多數朋友可能會更加傾向于使用Git或者干脆直接使用虛擬機以及原生Unix。不過對于剛進入Linux世界的新人來說,使用Cygwin可以讓你在Windows下面練習Linux的Bash,以及常用工具,而不需要安裝Linux,也不用擔心Windows被破壞,給每個人多一種選擇也蠻好的,***再一次感謝163為開源做出的努力。

更新歷史

Cygwin - http://www.cygwin.com/
163源 - http://mirrors.163.com/cygwin/

按照個人習慣一步步勾選即可,軟件源我選擇163,如果網絡不給力可以下載我提供的完整離線包。

在線安裝

  1. 點擊下一步
  2. 選擇Install from Internet
  3. 自定義安裝路徑
  4. 自定義Local Package Directory
  5. 自定義網絡連接下載方式(可以使用代理加速)
  6. 選擇http://mirrors.163.com作為下載源
  7. 選擇自己所需的Packages

離線安裝

  1. 點擊下一步
  2. 選擇Install from Local Directory
  3. 自定義安裝路徑
  4. 定義Local Package Directory為mirrors.163.com
  5. 選擇自己所需的Packages

軟件庫

你同樣可以在Cygwin上編譯安裝和執行Unix下的程序

Select Packages界面搜索并勾選所需的包或者直接全部install Devel,舉個GoAccess栗子

  1. Administrator@PC-20150629NSFI ~/goaccess-0.9.2 
  2. $ ./configure --enable-utf8 
  3. checking for a BSD-compatible install... /usr/bin/install -c 
  4. checking whether build environment is sane... yes 
  5. checking for a thread-safe mkdir -p... /usr/bin/mkdir -p 
  6. checking for gawk... gawk 
  7. checking whether make sets $(MAKE)... yes 
  8. checking for gcc... gcc 
  9. checking whether the C compiler works... yes 
  10. checking for C compiler default output file name... a.exe 
  11. checking for suffix of executables... .exe 
  12. checking whether we are cross compiling... no 
  13. checking for suffix of object files... o 
  14. checking whether we are using the GNU C compiler... yes 
  15. checking whether gcc accepts -g... yes 
  16. checking for gcc option to accept ISO C89... none needed 
  17. checking for style of include used by make... GNU 
  18. checking dependency style of gcc... gcc3 
  19. checking whether gcc and cc understand -c and -o together... yes 
  20. checking for pthread_create in -lpthread... yes 
  21. checking build system type... x86_64-unknown-cygwin 
  22. checking host system type... x86_64-unknown-cygwin 
  23. checking whether to build with rdynamic for GNU ld... no 
  24. checking for mvaddwstr in -lncursesw... yes 
  25. checking for ncursesw/ncurses.h... yes 
  26. checking for ncurses.h... yes 
  27. checking for pkg-config... /usr/bin/pkg-config 
  28. checking pkg-config is at least version 0.9.0... yes 
  29. checking for pkg-config... /usr/bin/pkg-config 
  30. checking for GLIB2... yes 
  31. checking for g_list_append in -lglib-2.0... yes 
  32. checking for socket in -lsocket... no 
  33. checking for gethostbyname in -lnsl... no 
  34. checking how to run the C preprocessor... gcc -E 
  35. checking for grep that handles long lines and -e... /usr/bin/grep 
  36. checking for egrep... /usr/bin/grep -E 
  37. checking for ANSI C header files... yes 
  38. checking for sys/types.h... yes 
  39. checking for sys/stat.h... yes 
  40. checking for stdlib.h... yes 
  41. checking for string.h... yes 
  42. checking for memory.h... yes 
  43. checking for strings.h... yes 
  44. checking for inttypes.h... yes 
  45. checking for stdint.h... yes 
  46. checking for unistd.h... yes 
  47. checking netinet/in.h usability... yes 
  48. checking netinet/in.h presence... yes 
  49. checking for netinet/in.h... yes 
  50. checking sys/socket.h usability... yes 
  51. checking sys/socket.h presence... yes 
  52. checking for sys/socket.h... yes 
  53. checking arpa/inet.h usability... yes 
  54. checking arpa/inet.h presence... yes 
  55. checking for arpa/inet.h... yes 
  56. checking locale.h usability... yes 
  57. checking locale.h presence... yes 
  58. checking for locale.h... yes 
  59. checking netdb.h usability... yes 
  60. checking netdb.h presence... yes 
  61. checking for netdb.h... yes 
  62. checking for stdint.h... (cached) yes 
  63. checking for stdlib.h... (cached) yes 
  64. checking for string.h... (cached) yes 
  65. checking for unistd.h... (cached) yes 
  66. checking stddef.h usability... yes 
  67. checking stddef.h presence... yes 
  68. checking for stddef.h... yes 
  69. checking for an ANSI C-conforming const... yes 
  70. checking for off_t... yes 
  71. checking for size_t... yes 
  72. checking whether struct tm is in sys/time.h or time.h... time.h 
  73. checking for ptrdiff_t... yes 
  74. checking for working strtod... yes 
  75. checking for _LARGEFILE_SOURCE value needed for large files... no 
  76. checking for working memcmp... yes 
  77. checking whether lstat correctly handles trailing slash... yes 
  78. checking whether stat accepts an empty string... no 
  79. checking for strftime... yes 
  80. checking for regcomp... yes 
  81. checking for strtoull... yes 
  82. checking for memmove... yes 
  83. checking for floor... yes 
  84. checking for gethostbyaddr... yes 
  85. checking for gethostbyname... yes 
  86. checking for memset... yes 
  87. checking for setlocale... yes 
  88. checking for strchr... yes 
  89. checking for strdup... yes 
  90. checking for strerror... yes 
  91. checking for strrchr... yes 
  92. checking for strstr... yes 
  93. checking for strtol... yes 
  94. checking for realpath... yes 
  95. checking for malloc... yes 
  96. checking for realloc... yes 
  97. configure: creating ./config.status 
  98. config.status: creating Makefile 
  99. config.status: creating src/config.h 
  100. config.status: executing depfiles commands 
  101.  
  102. Your build configuration: 
  103.  
  104.   CFLAGS = -pthread 
  105.   storage: On-memory Hash Database (GLib) 
  106.   prefix: /usr/local 
  107.   package: goaccess 
  108.   version: 0.9.2 
  109.   bugs: goaccess@prosoftcorp.com 
  110.  
  111.  
  112. make && make install 
  113.  
  114. $ goaccess -V 
  115. GoAccess - 0.9.2. 
  116. For more details visit: http://goaccess.io 
  117. Copyright (C) 2009-2015 GNU GPL'd, by Gerardo Orellana 
責任編輯:火鳳凰 來源: HelloDog博客
相關推薦

2018-03-28 09:08:39

微軟開源Windows

2014-07-22 15:33:02

Ubuntu

2009-08-14 09:35:31

Windows 7云計算LiveMesh

2009-01-06 10:04:44

CygwinGCCGUI

2023-08-21 14:18:58

ReactWindows系統

2012-11-23 14:33:06

IBMdW

2015-12-01 16:39:04

工業4.0華為

2017-08-01 09:19:47

小米MIUIMIUI9

2018-09-10 13:55:19

2009-12-04 15:49:14

無線路由器加速

2015-01-15 10:50:46

CoreOSUnitedStackDocker

2010-03-24 11:14:41

TurboLinux系

2018-09-04 23:28:06

2009-04-28 18:59:56

LinuxWindows體驗

2010-03-31 10:50:17

Ubuntu操作系統

2021-09-18 09:14:54

LinuxWindowsWindows 11

2013-05-14 10:13:06

WindowsLinux操作系統

2012-09-28 09:20:41

WPS for Lin

2013-05-06 13:52:46

WindowsRedis

2021-10-09 11:14:29

英偉達DLSS驅動程序
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 狠狠色综合久久婷婷 | 日韩亚洲欧美综合 | 日韩中文字幕在线观看 | 一二三在线视频 | 国产一区二区三区在线 | 亚洲视频国产视频 | 亚洲一区二区av在线 | 国产 亚洲 网红 主播 | 亚洲国产一区二区三区 | 国产黄色在线 | 国产美女视频一区 | 一区二区三区免费 | 中文字幕免费 | 欧美日韩视频在线 | 天天色图| 日韩国产一区二区三区 | av三级在线观看 | 性欧美精品一区二区三区在线播放 | 欧美日韩在线国产 | 亚洲精品一区二区三区中文字幕 | 狠狠插狠狠操 | 一级毛片视频 | 亚洲精品2| 免费观看的黄色网址 | 精品欧美一区二区三区久久久 | 国产人久久人人人人爽 | 国产精品视频入口 | 久久av一区二区 | 日本黄色高清视频 | 国产精品永久在线观看 | 亚洲天堂av网 | 秋霞影院一区二区 | 成人日韩 | 国产精品久久久久久久久久久免费看 | 国产乱肥老妇国产一区二 | 夜夜爽99久久国产综合精品女不卡 | 日韩一区二区三区视频 | 精品入口麻豆88视频 | 亚洲激精日韩激精欧美精品 | 精品久久久网站 | 红桃成人在线 |