Linux Advocate Suggests Using More Closed-Source Software (techrepublic.com)
An anonymous reader writes: Open Source advocate Jack Wallen is a writer for Linux.com and Tech Republic. He predicts that both Windows and OS X will be Open Source within 5 years, writing that "neither Microsoft nor Apple make serious money from operating systems any longer" (with both companies giving away major OS upgrades), but argues that smaller software companies still see close-sourced code as a profit center. So yesterday Wallen wrote a surprising column urging Linux fans to begin considering closed-source software.
"That doesn't mean, in any way, you are giving up on the idea of freedom. What it means is that the best tool for the job is the one you should be using...be that open, closed, or somewhere in between. Should you close your mind to close sourced tools, you could miss out on some seriously amazing applications. On top of that (and this is something I've harped on for decades), the more you use closed source applications on open source environments, the more will be made available."
I'd be curious to hear how many Slashdot readers agree with Mr. Wallen...
"That doesn't mean, in any way, you are giving up on the idea of freedom. What it means is that the best tool for the job is the one you should be using...be that open, closed, or somewhere in between. Should you close your mind to close sourced tools, you could miss out on some seriously amazing applications. On top of that (and this is something I've harped on for decades), the more you use closed source applications on open source environments, the more will be made available."
I'd be curious to hear how many Slashdot readers agree with Mr. Wallen...
I'm not giving up the idea of freedom, by giving up freedom.
yeah, i don't think that word means what you think it means.
Absolute statements are never true
I'll believe that when me shit turns purple and smells like rainbow sherbet.
The Mac OS X kernel and many other system components are already open source and available on Apple's developer site. This has been the case for years.
Similarly, Microsoft has started to open source .NET, ASP.NET and related tech as well as their plan to bring SQL Server to Linux. I think at this point a mix of closed and open source is already happening. Even in the Linux world, some people run Oracle or IBM software that is commercial on linux. This isn't a new thing.
MidnightBSD: The BSD for Everyone
He's wrong on all counts.
- Apple will not be open-sourcing their OS modifications to BSD
- Microsoft will not open-sourcing their OS
- NEITHER OF THOSE POINTS Is relevant to software applications available for LInux
(In other words even if both Apple and Microsoft open-sourced their OSs that has
nothing to do with application availability under Linux)
Finally regardless of all the above, FOSS supporters aren't here to "get more apps".
We want freedom to enjoy our apps as per the freedoms of open source software.
Sure, we COULD have MOARE apps. If they're closed-source or blobs we don't
want them.
Ehud
Tucson AZ
It's hot here, but not as hot as the hell that those who want to adopt closed-source
software on Linux will burn in.
I want more open source stuff, not more free stuff. I don't want more closed source applications on Linux, I want more open ones. Linux moves fast, and any closed source software is a pain in the ass.
There's also that free as in beer but closed source is pretty much synonymous with "we track your every move", because they've got to pay the bills somehow.
Hell, Windows 10 costs money, and it has bloody ads in the start menu. Screw that.
"Use the best tool for the job..." Now remember, we wouldn't have Git if it were't for some stubborn activist who ignored admonishments from high ranking Linux developers which inspired Linus to write it. Git is revolutionary because it is free software. Bitkeeper was just "the best tool for the job." Notice how we have several companies making crazy money from using Git (like GitHub), so there's something in it for the "profit motive" types as well.
Remember when they were opening up all their software because they had a hardware guy in charge and would make it back in hw? *flushing noise*
If you want to start smoking, you should smoke a pipe. You'll look like a distinguished gentlemen and it smells a hell of a lot better.
Seriously?
https://www.microsoft.com/inve...
What he seems to be missing entirely is that free software isn't about the money, it's about freedom. I admit I've used closed software when it was convenient, even one of the programs he listed, Insync. It seemed like it was a perfect solution but after a while I ran into performance issues and without being able to debug the process to identify the cause, I could only report the bug as best I could which resulted in a "can't reproduce, ticket closed" situation. So now, I have software that works kinda but I cannot fix or even say what needs to be fixed. This is the true cost of closed-source software.
Anons need not reply. Questions end with a question mark.
The market's up! It's a good time to buy/sell!
The market's down! It's a good time to buy/sell!
The market's crashing! It's a good time to buy/sell!
The market is so fucked you shouldn't buy or sell right now! It's a good time to buy/sell!
So this dumbshit is advocating closed source so we can lock ourselves into proprietary software, hoping that "someday" the owners of the proprietary shit MAY open source it. "Out of the goodness of their hearts."
Dude needs to stop huffing his compressed air cans... He's delusional.
Chas - The one, the only.
THANK GOD!!!
I'd pick a tool that I can debug over one that i cannot, even if the latter seems superior
CLI paste? paste.pr0.tips!
To be more accurate, you remember OSS software folks being combative, and the reason you remember that is because closed-source software people have fought us every step of the way. We don't have a choice but to be combative, because it's the only way to hold our ground.
Sit, Ubuntu, sit. Good dog.
We want freedom to enjoy our apps as per the freedoms of open source software.
Sure, we COULD have MOARE apps. If they're closed-source or blobs we don't
want them.
Free software is distinguished by the end user having the right and ability to make and share improvement to the software. It works well for libraries and for applications used by businesses, which can afford to hire someone to improve the software and contribute improvements back upstream. But there still exist several categories of software for which a viable free software business model has not yet been demonstrated. How would high-production-value video games, software for playing rented (as opposed to purchased) movies, and annual updates to tax return preparation software to reflect amended tax codes be developed under a free software model?
1. Port Windows and Mac OS X to run on top of a Linux kernel (and merging the best bits of each) so that all have a shared foundation.
2. Allowing apps for each platform (and you may as well do likewise with Android etc.) to send objects via simple IPC and shared memory (data structures like those you see in clojure, are a good idea here) basically an improvement upon the CLR idea MS has.
3. Open sourcing much of those foundations.
4. Putting ARM cores like those on smartphones onto the GPU, and running most of the GUI on the GPU. This is a throwback to X11, but based around modern GPUs with the pcie backplane being the network.
5. Having the GUI frontend be a separate small OS running on said ARM cores, which both runs the GUI, sound and such, and brings up the main processors, which are then freed up for the general purpose processing tasks they are best at.
6. Moving away from binary code to higher level code (android runtime sort of illustrates this) which can be comipiled either AOT or JIT when loaded onto a system.
7. Using dynamic compilation for both performance and security purposes (this entail rethinking the syscall interface, so that a process can only access the syscalls it needs: something akin to capability security, which can be achieved via the AOT and JIT compilation so that a process is limited in what syscalls it can make: do not allow processes to create executable binary code without explicit permission, and so on. This would make reverse engineering much easier, which is why things probably aren't heading this way, but Free Software would not suffer in the same way. (The thesis on the Synthesis OS, from quite a few years back, is worth a quick perusal.)
8. Do likewise as the coprocessed GUI for sound, and synchronosed sound and graphics, and IO (rather than taxing the main processors with the overhead of USB, having a small ARM core or similar doing this would get us back some of the advantages Firewire traditionally had over USB.
The thing is, small ARM cores (or similar) as we find in mobile phones, raspberry pis and so on, can be cheaply added to e.g. a GPU, and since main processors (intel and amd) are hitting a wall with single core performance, it is sensible to start offloading to coprocessors as we had to do in the old days. But these days a small ARM core together with a specialised processor would be the way to go. Making it ubiquitous would lead to economies of scale (provided patent nightmares don't rear their ugly head as they tend to).
Having done the above, OS architecture would need a bit of chanigng.
John_Chalisque
Just think about it. Does microsoft want a windows version, where things like the win10 installer can be removed easily?
They want to make money with their app store, to copy the apple business model. This needs a tight coupling of app store and operation system, because currently the system works fine with non-appstore programs.
Google can afford an open source android, as most people install the play store as very first thing on their custom rom. Because without appstore you're pretty much fucked when you want to run commercial apps (you may buy and install them, but their drm requires google or amazon appstore).
Microsoft cannot, as all programs already bring their own drm and their own updater programs. An appstore is convenient for programmers, but not required to achieve the things, which an appstore provides. And people are used to find software without store, on mobile platforms most people do not consider other sources, not even installing something as f-droid or the amazon store (which even has a daily offer of one paid app for free).