I honestly don't really see the point in this. If you like Ubuntu/Linux more, then just install Ubuntu/Linux on the computer without Windows. Why go through the additional layer of Windows? Perhaps the use case is limited to people who need to run Windows/Mac-only software like AutoCAD or some Adobe software.
I like the Unix command line, but I don't really like Desktop Linux anymore (after having it used for >10 years), that's why I use OS X at home. At work I'm required to use Windows because I develop Windows software, so it's actually quite exciting that I get to use my most useful Unix utilities on my work computer as well.
Bash on Ubuntu on Windows
161–170 of 434 posts
Re: Bash on Ubuntu on Windows
#162Re: Bash on Ubuntu on Windows
#163Smart move by Windows. I guess that developer usage of an OS ultimately results in developer developments for the OS, though I don't have any number for this. It seems to me that a lot of developers, especially at startups, have switched to OS X with its shiny GUI and UNIX compatibility. I'd hazard the guess that this will ultimately result in OS X becoming more of a developer target over time. Initially for develope…
Is it that smart? Being developer friendly sounds like just plain common-sense, not some genius breakthrough. The question should be more why has it taken them so long to get to this point.
Re: Bash on Ubuntu on Windows
#164Man i do think this is a big step for windows , it's 2016 and still complex to pull a du -sh or df on windows. Things we take for granted on *nixes. Much love.
According to http://stackoverflow.com/a/868290/259130 function directory-summary($dir=".") { get-childitem $dir | % { $f = $_ ; get-childitem -r $_.FullName | measure-object -property length -sum | select @{Name="Name";Expression={$f}},Sum} } I could get a shorter non exact version if I was on windows.
> Get-ChildItem C:\windows | Measure-Object -property length -sum
Count : 28
Average :
Sum : 6407920
Maximum :
Minimum :
Property : length
For 'df': > get-WmiObject win32_logicaldisk
DeviceID : C:
DriveType : 3
ProviderName :
FreeSpace : 21796540416
Size : 31685865472
VolumeName :
DeviceID : D:
DriveType : 5
ProviderName :
FreeSpace :
Size :
VolumeName :
DeviceID : Z:
DriveType : 4
ProviderName : \\veertu\share
FreeSpace : 44674220032
Size : 399999991808
VolumeName : VeertuFSRe: Bash on Ubuntu on Windows
#165Can anyone comment to how nice or awful running some sort of Linux VM (maybe under Hyper-V) and using Putty to SSH to it for development on Windows would be? This work is promising, but doesn't appear "quite there", yet. I run OSX now, but don't really ever develop directly on the machine and am mostly SSH'ed to Linux hosts for development.
I sound like a Vagrant fanboy or shareholder but I'm just a very happy dev since I started using this setup.
Re: Bash on Ubuntu on Windows
#166Can anyone comment to how nice or awful running some sort of Linux VM (maybe under Hyper-V) and using Putty to SSH to it for development on Windows would be? This work is promising, but doesn't appear "quite there", yet. I run OSX now, but don't really ever develop directly on the machine and am mostly SSH'ed to Linux hosts for development.
Re: Bash on Ubuntu on Windows
#167Man i do think this is a big step for windows , it's 2016 and still complex to pull a du -sh or df on windows. Things we take for granted on *nixes. Much love.
According to http://stackoverflow.com/a/868290/259130 function directory-summary($dir=".") { get-childitem $dir | % { $f = $_ ; get-childitem -r $_.FullName | measure-object -property length -sum | select @{Name="Name";Expression={$f}},Sum} } I could get a shorter non exact version if I was on windows.
Re: Bash on Ubuntu on Windows
#168So 2016 is _finally_ the year of Linux on the Desktop?
Re: Bash on Ubuntu on Windows
#169Re: Bash on Ubuntu on Windows
#170Earlier quoted context omitted.
I highly doubt that "Winux" will really result in a large increase of people learning CLI tools. People that want to use those tools already have way that they're doing so. Consider that most people have difficulty using a basic word processor, much less Unix tools.
I'm considering the masses. But many in higher-education are on Windows (my experience here in the Netherlands). I can imagine that, for instance, they will use Winux at some point. Same for some IT professionals that use Windows (either since their job demands it, or out of preference). They might install Winux at some point to get some aspect of their work done faster. Again a lower barrier to get your CLI skills u…