That doesn't really cover remote management, though.
Microsoft Announces Nano Server
61–70 of 118 posts
Re: Microsoft Announces Nano Server
#62Re: Microsoft Announces Nano Server
#63What is the use-case for this? Modern Linux distros have all the tooling, libraries, utilities already - is the idea to use this for hosting .Net stuff?
Running stuff that requires Windows.
Re: Microsoft Announces Nano Server
#64Earlier quoted context omitted.
No, there's a lot of confusion from bad messaging with the Pi 2 and Windows 10 announcement. By all reports Win 10 on the Pi 2 is a system to run services that have no GUI, desktop, or other UI.
Is that actually true? MS has demoed Windows IoT with a UI on minimal devices already. Both ARM and x86. I don't know if the dragonboard 410c is in a different class than the pi2 however. Take a look on Don Box's presentation at WinHEC from last month. Device talk stats about ~40 mins, device demo starts at ~44 mins. http://channel9.msdn.com/Events/WinHEC/2015/Developing-for-t...
Re: Microsoft Announces Nano Server
#65--92 percent fewer critical bulletins --80 percent fewer reboots Compared to what a barebones Linux install (Say... a Docker instance)? I can easily shut off a service in Linux. And I can turn it on. The only reboot needed is for the Kernel itself, and that is soon changing. What I'm reading here is that MS is most of the way there to Linux.
net start [service name] net stop [service name]
Important utilities:
- findstr ('grep') - sc (control services) - taskkill (kill/control processes) - netsh (everything network) - wevtutil (windows event log)
Re: Microsoft Announces Nano Server
#66Earlier quoted context omitted.
> The 2008 R2 development system we have needs to be rebooted every two weeks, on average, due to Windows Updates that require a reboot. Uhh they literally don't release updates that often, so you'll have to explain that one to us... > Updates come in almost every day for CentOS and I only need to reboot once ever couple of months for new kernels. Windows doesn't support hotpatching, Linux does, it really is as simpl…
>Uhh they literally don't release updates that often, so you'll have to explain that one to us... Microsoft most certainly releases reboot updates more often than the once a month patch Tuesday. I'm not sure if they apply to the OP's specific system, Win2008 R2, but I am rebooting my various computers more than once a month. My system's update history shows two fixes around Mar 27 (KB2976978 and KB3048778) and one of…
The first one is a Windows 10 pre-checker (KB2976978), so zero chance of Windows Server getting it, and the second one (KB3048778) isn't a critical update (solves a minor Explorer bug) so would have to be manually installed.
You likely have "Give me Recommended updates the way I receive important updates" checked in the Windows Update GPO/applet and also just seem to think there is no difference on how Windows Server and Windows Desktop are patched (which there is, massively).
A Server 2012 box I happen to have open, has restart events that are corresponding with patch Tuesdays but months are often skipped. You'd likely see a little more if you weren't using Server Core, but nothing like the number you're describing. The thing doesn't even install updates between monthly pushes.
I'm seeing approx. 4-5 a year. Which is still much higher than Linux, but nothing like Windows Desktop.
Re: Microsoft Announces Nano Server
#67Earlier quoted context omitted.
I'm not a ssh expert (I live in the MS world), but powershell remote sessions (PSSession) seems like what you are talking about here... it's like running in a powershell window on a remote machine.
I'm not too confident powershell is really good enough to compete with the ancient unix shell. I've tried using it to automate windows machines, but it's certainly not a smooth experience. Part of that is the lack of a history of automation - basic things to do with processes and I/O are kind of schizophrenic. All of the basics are clearly unix inspired (standard streams, processes, redirection - this is all unix-lik…
As a JS guy, these days most of my scripts run via node/iojs and are as platform agnostic as possible. More and more I know it only needs to run in linux, or is guiding dockerization. Even then, bash scripts tend to be easier to reason about.
Re: Microsoft Announces Nano Server
#68Earlier quoted context omitted.
SSH access to PowerShell would be a game changer IMHO for Microsoft. Also, have you seen this? http://www.powershellserver.com/download/
I don't know if it exists the other way around or not, but it would be really nice if Windows had a built in SSH client as well. I can't tell you how many times I've been working on a client's Windows Server machine and needed to remote into a Linux server, but neither I nor they had access to download Putty.
Re: Microsoft Announces Nano Server
#69Oh. Microsoft reimplemented Unix, at last. Congratulations :-)
Re: Microsoft Announces Nano Server
#70Earlier quoted context omitted.
I'm not a ssh expert (I live in the MS world), but powershell remote sessions (PSSession) seems like what you are talking about here... it's like running in a powershell window on a remote machine.
I'm not too confident powershell is really good enough to compete with the ancient unix shell. I've tried using it to automate windows machines, but it's certainly not a smooth experience. Part of that is the lack of a history of automation - basic things to do with processes and I/O are kind of schizophrenic. All of the basics are clearly unix inspired (standard streams, processes, redirection - this is all unix-lik…