Cool. CoLinux does something similar
I thought it's been dead for ages
Foreign Linux: Run Linux binaries on Windows without drivers or modification
41–50 of 149 posts
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#42Firstly, this looks brilliant. If anyone can remove the extra layers of cygwin, mingw, xming etc. and provide a direct ability to execute linux programs from powershell/cmd , I call Black Magic. Voodoo I tell you; Windows cannot be this user friendly (I work with it every day). Secondly, completely off topic, I noticed that Github picks up 0.4% of the code-base as Objective-C ( https://github.com/wishstudio/flinux/se…
Github's language detection is actually open-source — you can have a look at what it does here: https://github.com/github/linguist Linguist uses a number of different 'strategies' to identify the language – in the case of C vs. Objective C, it uses a pretty simple heuristic ( https://github.com/github/linguist/blob/master/lib/linguist/... ) to disambiguate C/C++/ObjC where required (such as in header files, which can…
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#43Very impressive. I'd appreciate if they could get WINE working under this though..... :-)
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#44Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#45Earlier quoted context omitted.
I think it would mainly be used by Linux users forced to use Windows for some reason (at work, for example).
I totally agree with you. Some of us who really like Linux are forced to use Windows at work. This project is really going to help a lot of people :)
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#46Cygwin is impressively complete - if you haven't checked in on it recently, there are over 5000 packages in the official repo (that's more than Arch Linux's official repos), and adding the http://cygwinports.org/ repo gives you full KDE, GNOME 3 and Xfce on windows (although KDE has a first-party port). What this tool offers over Cygwin is the ability to run unmodified linux binary-only software for which you do not…
1: https://github.com/transcode-open/apt-cyg
EDIT: changed to github url
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#47Earlier quoted context omitted.
To be honest, and I say this with a massive cringe, after 20 years of Unix I'm more productive with PS in a couple of months! It's quite refreshingly easy to use and I genuinely had no idea how much time I was wasting on parsing streams. Now I feel horrible for revealing my dirty secret :(
What do you use for grep? I tried using Powershell and did a few things with it, but while it is a great shell, the lack of good tools like grep prevented me from being really productive.
Select-String "pattern" -Path file.txt | ForEach-Object { Write-Output $_.Line } | Out-File t.txt
Slightly Heath Robinson, but by default PS will truncate lines to terminal width, even when writing to a file, which is a disaster for any kind of subsequent machine processing.
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#48Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#49Cygwin is impressively complete - if you haven't checked in on it recently, there are over 5000 packages in the official repo (that's more than Arch Linux's official repos), and adding the http://cygwinports.org/ repo gives you full KDE, GNOME 3 and Xfce on windows (although KDE has a first-party port). What this tool offers over Cygwin is the ability to run unmodified linux binary-only software for which you do not…
Re: Foreign Linux: Run Linux binaries on Windows without drivers or modification
#50Cygwin is impressively complete - if you haven't checked in on it recently, there are over 5000 packages in the official repo (that's more than Arch Linux's official repos), and adding the http://cygwinports.org/ repo gives you full KDE, GNOME 3 and Xfce on windows (although KDE has a first-party port). What this tool offers over Cygwin is the ability to run unmodified linux binary-only software for which you do not…
For me I've had too many problems with cygwin and $DAYJOB installs BLODA, so I'm really interested to see what comes of this, also since it uses arch and pacman, which are my distro of choice, it sounds pretty perfect to me! (no more having to recompile everything from source with cygwin or `rebaseall` and suchlike)