Windows Bash on Ubuntu】的更多相关文章

windows Bash on Ubuntu, 之前就是尝试一下,更多是在不安装虚拟机的情况下,学下 bash. 这几天,在 上面 make u-boot,这个用起来比 cygwin方便多了. 之前在cygwin下 make u-boot,除了很多问题,当然解决也是一种学习,但工欲善其事,必先利其器. 感觉 微软也在拥抱开源,是提高 windows 作为生产力工具的 具体体现. 后续,可以在个人机层面,直接替代 虚拟机/cygwin 做大部分嵌入式开发的事情了. ================…
今年微软Build 2016大会最让开发人员兴奋的消息之一,就是在Windows上可以原生运行Linux bash,对于非开发人员来讲,可能不知道这意味着什么,而对于开发人员来说,意味着Windows弥补了相比于MAC OS的终端的短板,你可以运行你熟悉的Linux bash,python,perl,使用一些Linux下的library……而不需要再安装一个Cygwin或者,安装一个虚拟机来跑Linux了. 具体新闻请参考: http://www.cnbeta.com/articles/4880…
1 #  Bash on ubuntu on Windows http://www.cnblogs.com/anonymous-ufo/p/6143480.html 1 1 如何启用Bash on ubuntu on Windows 微软在 Build 2016 大会上宣布将 Bash Shell 带到 Windows 10 当中进行原生集成,并进行了相关效果演示.消息一经发布,不仅在 Windows 社区,更是在 Linux 社区引起了轰动.现在我们来说说具体的 Bash on ubuntu…
前言 Win10 上的 Bash on Ubuntu 是个很好用的玩具,让windows开发环境下的人能无缝操练Linux,但是涉及到网络部分还是有很多要该进的地方,比如Nginx的安装就遇到了问题. 过程 安装 sudo apt install nginx 启动 sudo service nginx start 报错: 大意端口无法绑定,关闭IIS或者修改nginx 端口为8080依旧无法启动,并且bash中ps -ef无法查看到端口情况 解决方法 查找github上的Bash on Wind…
前言 Zsh是一款非常棒的Shell,使用Linux和Mac系统的人,基本上都知道zsh的存在. 问题 在安装完Zsh后,zsh是可以使用的,但是重启之后,又恢复至默认的bash. 我在安装好之后,使用命令chsh -s /bin/zsh切换默认shell. 然后,输出$SHELL变量是这样的: root@XY ~ # echo $SHELL /bin/bash 设置无效,我以为要重启. 于是,重新启动Bash On Ubuntu On Window. 结果依然无效. 办法 我在BashOnWi…
$sudo apt-get install xrdp $cd ~ $sudo vim .xsession gnome-session --session=ubuntu-2d 在windows下进行远程链接 引用: [1] Remote Desktop Connection from Windows 7 to Ubuntu 12.04 in youtube.…
让windows能像ubuntu一样方便的神器: Let's get Chocolatey! Chocolatey NuGet is a Machine Package Manager, somewhat like apt-get, but built with Windows in mind.…
Windows 10 子系统 Ubuntu 中安装 FastAdmin 打开 Windows 10 子系统 安装 Ubuntu 修改安装源为阿里的 %LOCALAPPDATA%\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\rootfs\etc\apt deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe mult…
Windows remote connect ubuntu desktop 1. install xRDP sudo apt-get update sudo apt-get install xrdp 2. install XFCE4 sudo apt-get install xfce4 3, configure xRDP echo xfce4-session >~/.xsession sudo vi /etc/xrdp/startwm.sh add the blow content #!/bin…
Go Cross Compilation from Windows to Linux/Ubuntu I have GO 1.7 installed on my Windows 10. I created test program and it works perfectly in Windows. Next step is to try to run it on my docker virtual machine with Ubuntu. Answer: That other question…