Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:So what? (Score 2, Informative) 315

That's because XP x64 isn't actually XP (NT 5.1), it's Windows Server 2003 (NT 5.2). That is, it's really only XP in name as it is built off the Windows Server 2003 codebase. It has all the server functionality of its counterparts removed as well as some minor functionality present in XP but absent from the server releases included. Consequently, they share the same service packs and updates, with the latest service pack for Windows Server 2003 being SP2. Unless of course, you meant the original "XP" Itanium release, which really is built off of XP, but support for that was discontinued a long time ago.

Comment Re:Stop preaching Linux (Score 1) 449

Then they're not competent, or more likely, they did something catastrophic to the operating system that makes reinstalling the easier solution than hunting down the actual cause(s) and fixing it/them. For example, a seriously nasty virus infection that hoses operating system components, or disk corruption that takes out half the registry without a backup. Linux, while less susceptible to some of these problems for various reasons, isn't immune to them.

I have well over a decade of experience using MS operating systems and I've never had to reinstall a system because I absolutely couldn't fix it; I've chosen to reinstall systems that were compromised by an infection because, although I could remove it, I lack confidence that it is 100% removed and the system is back to a pristine state. I've done the same for Linux boxes that were hit by rootkits; I simply can't guarantee trust of that system anymore knowing that install has been thoroughly compromised. As far as configuration issues go, versus security or data destruction issues, I've never had to revert to a reinstall.

Typically, I also find it unproductive, as you don't learn anything. Even if it's a bastard to track down the issue, you learn a lot from the experience, and that will help you solve the same or similar problems in the future. Reinstalling any operating system is a very blunt approach. More to the point, for most systems I use as well as friends and family, reinstalling is more time consuming in the long run for sheer time and effort invested backing up data, reinstalling apps, restoring data, and getting the configuration back to a state that you like. Then there's the problem that sometimes the reinstall didn't fix the problem, and you've wasted a monumental amount of time. So I view reinstalls as a solution on any OS as a particularly poor solution; it's frustrating it is so common on Windows systems as to me it demonstrates a lack of technical proficiency by many who would claim competence with the system.

Comment Re:System restore stinks. Image your disk (Score 2, Insightful) 449

Security policy is just one aspect of Group Policy, and a small one at that relative to the total set of configurable options. In essence, if it is a configurable Windows setting, Group Policy can configure it; including settings that have no GUI front-end outside of the GPO configuration window (ie. typically registry settings without a Control Panel UI). The point being, of all the configurable settings in Windows (or any OS), security settings tend to be a minority considering everything else.

That aside, while deploying secure systems in the first place is unquestionably the smart thing to do, security tends to be dynamic, and security configurations change. When they do, even on Linux, a mechanism to quickly and easily update security settings company wide (e.g. for LDAP authentication or NFS/SMB authentication) is obviously incredibly useful, and pasting together scripts that modify the relevant files (hopefully at the individual settings level instead of just nuking the entire file with a new copy and potentially wiping out custom settings) is a clunky business at best, and definitely not elegant.

You're correct hands-down though that Linux is far superior for pushing out whole applications through an internal repo or other solution. There's some interesting stuff going on with using WSUS to deploy 3rd-party apps, and AD can do it with MSI packages, but it's still not even close to the power of rpm/deb and associated distribution technologies generally, and certainly not as easy to setup and manage.

Comment Re:Won't somebody please think of the children!?!? (Score 2, Informative) 255

Um, Xenophon is against the filter, and has publicly stated this several times. I don't agree with everything he says by a long shot, but he's definitely not a crackpot like Steve Fielding or Tony Abbott. Further, independents can often be a good thing, primarily because they don't toe the party line and are more likely to vote based on their personal beliefs than what will get them a promotion to the front bench. I'd rather politicians who vote for what they believe in (even if I disagree) than vote for what earns them a larger salary or a nicer job. I'd say his electorate and who they vote for is a fair indication of whether he is being a tosser. Considering how difficult it is to get elected as an independent, without the massive financial and human resources you'd have at your disposal as a member of one of the major parties, I'd suggest he by definition has to be quite in tune with them. You might want to check the actual policies and standpoints of members of parliament before unleashing abuse on them.

A recent interview with Xenophon: Q&A: Xenophon on ISPs, Telstra and the cloud.

Comment Re:For a program so hard to turn off (Score 1) 472

On the other hand, I consider a weasel word that describes something that lacks transparency, isn't understandable, and is unnecessarily complex.

Not really, it makes a lot of sense once you bother to learn about it rather than just flame about it on Slashdot. Although, you may not necessarily agree with the design principles behind it. Svchost (Service Host) isn't difficult to understand; "encapsulates" is a fair choice of word as that's really all that it does: executes multiple services under a single process (ie. hosts them). An important distinction is that it hosts services that exist as DLLs, not binary executables (most Windows OS services are implemented in this way, 3rd-party services far less so). Multiple svchost processes can exist concurrently and each host one or more services, commonly loosely grouped into different svchost processes by category, importance, etc...

Why have svchost at all? The answer is basically performance. Windows processes are "expensive" relative to Unix systems from a resources perspective. They require greater overhead to setup and for the OS to maintain, and so Windows tends to have a greater emphasis on a proliferation of threads than a proliferation of processes. At any given time a modern Windows OS is likely to be running a lot of services, and hosting each of these in a different process would potentially incur a lot of resource overhead that is ultimately just a waste. The primary benefit of doing so would be stability. Why? Because if one of the services hosted in a svchost process crashes, it'll bring down the rest of the services in the svchost process with it. Obviously, if it's a svchost process running important services and/or a lot of services, the results can be catastrophic. To be fair, this is in my experience extremely rare (I can't in living memory remember ever seeing this occur firsthand).

Netstat is admittedly fairly useless for inspecting ports with respect to svchost hosted services, but the reason why is obvious: it would need "special" coding to give it an understanding of svchost specifically, rather than just an understanding of processes. However, Sysinternals Process Explorer can quickly and easily show you which services are hosted in which svchost process, as well as which TCP/IP connections (and listening ports) belong to which service in any given svchost process. It's not ideal, but it does work and well at that; any Windows sysadmin worth their paycheck should have a copy of the Sysinternals Suite on hand anyway.

Comment Re:Sooooo (Score 3, Informative) 236

I also found it bizarre that at no point did he seem to think of checking the setup logs. Admittedly, it probably wouldn't have helped him in this case, as logs often don't reveal anything in the case of intermittent hardware failure, but really, if I have a problem with setup, the first thing I'd think to check would be the log files in case they turn up something interesting. That's, you know, kind of why they're there...

Comment Re:One of Many (Score 1) 396

My point was that if you think that a) free market naturally tends to produce a failure that needs to be artificially corrected and that b) government regulation is obviously the cure that makes things better...

I don't think there's any economic system, free market or otherwise, that is wholly self-sufficient without any need for external input to (attempt) to ensure the best possible outcome. This is precisely my problem with individuals such as yourself, that are so absolute in their beliefs in the infallability of a given ideology. Essentially, you believe your philosophy is perfect. The world is not black and white, and this extends to economics. Further, your distaste for government regulation is quite obvious, to the extent you're willing to jump to conclusions at the moment of its mention. You suggest that I think that "government regulation is obviously the cure", yet, I specifically stated that excessive government regulation is no better, and may well make things significantly worse. As always, moderation is essential, and staunch devotion to any given ideology, in some attempt to maintain "purity", is simply folly. I don't believe government regulation is the solution, any more than I believe free market economics are the solution, but rather, that together when both used appropriately, they can yield the best possible outcome combined.

you are contradicted by all experience in modern history, which is that the more free the economy of a country is, the more prosperous that country is.

China begs to differ (prosperous and not free), as does the United States (highly free with economic crisis). Further, considering that the entirety of modern history has resulted in regulated economies, unless every single economic system in modern history is a failure in your book, then your assertion is false. Further, extremely deregulated economies (I acknowledge you accept some degree of limited regulation) have yet to my knowledge been implemented in any Western society, at least, not to the extent you'd like, in which case, your preferred system is an unknown quantity. Any assertion as to its historical success is therefore, also invalid.

I looked at the Index of Economic Liberty and it seems somewhat ridiculous. The most prosperous countries right now include the likes of China, which, anyone not living in a cave will tell you is hardly free in any sense, economic or otherwise. The indicators are also, by definition, difficult to accurately quantify, and so I view such studies as only of mild usefulness.

My issue with Ayn Rand is simple, I don't agree with her Objectivist philosophy. I think it is ultimately shallow, and doesn't in any way contribute to any meaningful impetus to better ones-self or the broader humanity. I do not view selfishness as a core principle worth consideration, far less adopting. Further, it amazes me an author of fiction manages to command such respect as a source of inspiration and authority for economics in the real world. Atlas Shrugged, for the record, is not a biography. I could write an essay on my distaste for the philosophy, but this is Slashdot, not a philosophy forum.

The rest of your post is really just a rail against government; you acknowledge the issues of corporations with respect to their own self-interest, yet are wholly pre-occupied with how that relates to government and the influence they attempt to exert on it. This pre-occupation (or fixation if you prefer), results in an inability to realise that corporate corruption extends beyond government, and into the economy itself, negatively impacting other businesses as well as consumers themselves. It's a distinctly Libertarian bent to blame all of society's ills on government, but a wrong one. It's simplistic in analysis, ignoring all the myriad of other societal issues that exist independent of government. In some respects, it's a quick-fix mentality, wishfully identifying a single cause for the woes of a group, and steadfastly advocating its removal, in complete ignorance of the larger, far more complex relations that form modern culture.

Regardless, I don't think either of us are going to change our minds, so I won't be replying any further.

Comment Re:One of Many (Score 1) 396

Alan Greenspan is a particularly amusing choice of individual to cite, considering he publicly admitted only recently that his faith in free market economics as his central ideology had been fundamentally shaken by the recent economic crisis in the US. The relevant segment from Wikipedia would be (all cited, see Alan Greenspan article):

In Congressional testimony on October 23, 2008, Greenspan acknowledged that he was "partially" wrong in opposing regulation and stated "Those of us who have looked to the self-interest of lending institutions to protect shareholder's equity — myself especially — are in a state of shocked disbelief."[36] Referring to his free-market ideology, Greenspan said: “I have found a flaw. I don’t know how significant or permanent it is. But I have been very distressed by that fact.” Rep. Henry Waxman (D-CA) then pressed him to clarify his words. “In other words, you found that your view of the world, your ideology, was not right, it was not working,” Waxman said. “Absolutely, precisely,” Greenspan replied. “You know, that’s precisely the reason I was shocked, because I have been going for 40 years or more with very considerable evidence that it was working exceptionally well.”[64] Greenspan admitted fault[65] in opposing regulation of derivatives and acknowledged that financial institutions didn't protect shareholders and investments as well as he expected.

With respect to your larger reply, I'm not sure that government regulation can necessarily "prevent" monopolies, as the establishment of them tends to be through illegal means, often only that come to light after the monopoly is established. Regulation in that respect has a disciplinary function more than a preventative function. The function being to level the playing field to encourage competition due to the illicit gains made by the incumbent. Providing some real world examples of unregulated markets leading to monopolies is exceptionally difficult, primarily because I'm not aware of any wholly unregulated markets. All economies of any size have regulation, the degree of which differs, but it is all present. The US market is regulated, and is only notable in degree of regulation in comparison to other markets. Your suggestion that the vast majority of monopolies have arisen as a result of regulation is presumably referencing government sanctioned monopolies. While I'd contest that the assertion that "almost all examples" might be an exaggertion, I don't disagree with the premise that excessive regulation can be a very bad thing. There are interesting arguments with respect to the RIAA/MPAA being something of a government sanctioned monopoly with respect to their control of the media industry; as always, balance is key, and I tend to subscribe to the view that regulation is necessary, but must be moderated. Too much will be just as damaging as too little.

My quote of "natural tendency of business is to damage the economy for selfish material gain" references the fact that what's good for the economy isn't often what is good for business. Businesses exist to make a profit, and that core objective often runs contrary to what would be in the interests of the larger economy, and its components (consumers, employers, corporations, etc...). Businesses, like people, are at heart selfish entities, and acts of altruism that benefit the economy but hurt the business (hurt being relative, a profit may still be gained, but not as great a profit as otherwise) tend to be rare. Things such as diversity and competition are good for the economy and (most of) its participants, but not necessarily individual businesses. Competition and diversity don't contribute to profits, they tend to reduce them. That's not some complex reasoning, it's an obvious conclusion when observing the key reason for existence of business.

I'll read your article later tonight, I promise, but I'll need some sedatives first. Ayn Rand tends to offend me, as does her philosophy and those who subscribe to it, and I'm not sure a Greenspan essay from 1961 is even relevant, as in light of his recent "revelations" (see above), it may well not even be in line with his current thinking. I'll read it later regardless.

Comment Re:One of Many (Score 3, Insightful) 396

So would a company that made lots of money and squashed competition leading to fewer and less diverse jobs (and thus less chance for employees to find a better paying job) be "good" or "evil"?

Um, this is pretty much the dead-on objective of effectively all companies. Make lots of money? Yes. Squash competition? Yes. The more competition, the harder it is to compete, and the less likely your product will be used. Reducing competition by destroying your competitors is an objective of all companies, as by definition, they are a threat to your business. You may not like it (I don't), but that kind of business model and associated ideology is the cornerstone of capitalism. The only real question is do they make lots of money and squash competition legally, by delivering a better product and out-classing their competitors, without violating any applicable laws.

More employers and business diversity is of course a good thing, and there-in comes the delicate balancing act of ensuring the economy remains healthy against the natural tendency of businesses to damage it for selfish material gains. Typically, government regulation is what is used to achieve this, by holding businesses that violate various agreed on "principles" of fair trading and conduct accountable. Which makes the staunch objections of many to any sort of regulation all the more bizarre as rational analysis of the capitalist model would seemingly conclude that some reasonable degree of regulation is in almost everyones interest, possibly excluding the filthy rich at the top of the hierarchy of enormous multinationals. But, that's another debate!

Comment Re:One of Many (Score 1) 396

I'm having a really hard time seeing how any of the reasons you cite are evidence of being "evil" (an extreme categorisation that is bandied about far too much these days):

1. Oracle hasn't really truly found a way to live with Open Source yet and their core database business is under threat by Open Source solutions.

So because Oracle doesn't use your preferred software ideology, they are inherently evil? By this same logic, every company and individual that doesn't release their software under an open-source license is also evil. Stallman might agree with you, I doubt many others will.

2. Oracle still makes their money on software. Making money by selling people extremely expensive software licenses only really works if you can get various kinds of locks and holds on them, if you can control their behavior. You can sell them consulting, support and hardware all day without needing any kind of lock, but not software.

How exactly is making money on software evil? Good software takes a lot of time and effort to create, and if the developer wishes to make people pay for it, I can't fathom how that's even remotely evil. Nasty DRM solutions that treat customers as criminals definitely could fall into the evil category, but you don't provide any evidence that Oracle does this, just a vague assertion that they must because their software is expensive. Even if they do use such DRM, I'm not sure that warrants qualifying an entire company and all who work for it as evil, I bet many of the programmers who work there (and other employees) have exactly the same qualms.

3. Oracle has very little real in-house innovation to speak of. The most innovative things I know of happening at Oracle is btrfs, and that's only really happening at Oracle because the main people who work on it are there.

This may well be true, although I'm not really interested in databases, so I'm not really in a position to comment on any innovations Oracle may or may not have made with their DBMS, as I wouldn't likely be aware of them. But a lack of imagination is evil? Presumably, the bulk of humanity is pure evil for not being blessed with a powerful creative imagination.

4. Oracle thinks it can kill an Open Source competitor by buying it or the technologies it relies on.

This is one explanation for Oracle's buy-up of Sun, but one I don't subscribe to. One, because you'd have to have especially stupid management/executives to believe this is plausible (even by management standards), as the licensing of said open-source technologies is going to go a long way to preclude this possibility. More likely, Sun's assets would go a long way to improving Oracle's competitiveness with IBM; in particular, their hardware and Solaris (Oracle has always integrated well and had great support for the OS). This puts Oracle in a similar position to IBM in that it can now provide the complete system of hardware+OS+database (as IBM does now) instead of just the database and relying on other companies to provide the rest (Oracle Linux not withstanding). I think the notion that Oracle bought Sun to kill MySQL is somewhat wishful thinking, as really, I don't think MySQL is a major competitor to Oracle. Oracle is "big-boys" database technology (which can also be read as "fat and bloated"); primary competitors would include IBM DB2 and MS SQL, primarily in the corporate and government sphere (web companies tend to be more forward thinking and more willing to embrace open-source technology).

Finally, I think you have some fairly naive views on just how friendly IBM is to open-source, in a similar way that many do of Google. IBM is pro-OSS when it is convenient to do so (that is, will likely boost their profits). Their hardware is not open-source (no surprise, no-one makes their hardware open-source except a few niche vendors), but neither is AIX, DB2, or any number of other expensive software technologies they market. They support Linux because it can run on their hardware, and boost sales of it for those who don't wish to run their mainframe Unix system. That is, it's beneficial to support Linux, as it'll boost profits on their expensive server systems. People seem to have this bizarre view OSS is altruistic in nature, when really, a far more common motive is the saving of time, effort, and money through harnessing the collective power of the interested community. The benefits this gives in openness are of course excellent, but they are secondary, if they didn't result in greater profit than a closed-source ideology in the same scenario, I doubt they'd be used. IBM exists to make money and please their shareholders, not to lose money "doing the right thing", unfortunate as this is.

Comment Re:Par for the course? (Score 2, Insightful) 510

So, to conclude and better explain things: the PS3 avoided commercial drivechips by having good drive security (something sorely lacking on other consoles), and avoided noncommercial software piracy by removing the incentive for homebrewers to hack the system (which will inevitably happen otherwise, as has been proven time and time again).

This conclusion surprises me a little, as my understanding was that while the OtherOS feature would permit alternative operating systems to install and run (primarily Linux), aspects of the hardware would be restricted, most notably, the RSX, which I'm told is essentially the PS3 GPU. This would seem to me to be a fairly significant handicap? Even if not a major handicap, most hackers I know (and the hacker mentality itself) would find the notion of having a piece of hardware which you can only partially utilise completely offensive, due to "x" entity trying to keep you in a virtual "walled garden" so that the full potential of the device remains locked.

I guess I'm just surprised that even the fact that they allow you to install an alternative OS would placate hackers and the homebrew scene (and of course, the overlap). Because really, while it's a nice gesture, and definitely a major positive versus the competition (until now), it's still limited in that the rules of the game on its usage and capabilities are dictated by Sony, as they're now demonstrating by taking the capability away, and this just wouldn't be good enough for most.

My impression has always been that the lack of any major hacks of the PS3 hardware has been a combination of good security (the firmware doesn't seem to have any obvious exploits and especially the BD-ROM drive security, as you discussed above), and also, just general disinterest. The latter might be a combination of expensive hardware, but also the architecture of the system itself is quite unique and not necessarily accessible to others. The Xbox was something of a homebrew dream due to both how easy it was to hack through a modchip and how easy it was to code for, in that the architecture was so familiar, just an x86 box in a console case. I'm just not entirely convinced that the OtherOS is the primary reason for the PS3's lack of hacks, but rather, security a notch above the competition and lack of interest.

Please, correct me if I'm completely wrong, as I am interested in how the PS3 fits in with the other consoles from a security/homebrew perspective.

Comment Re:Dormitories... (Score 4, Interesting) 394

Security wise, most dorms I've seen are weakest in physical security; WPA2-PSK and a TrueCrypt encrypted volume aren't useful when you can just sneak in and attach a USB keylogger to the PC.

Fun Fact: At the boarding house at my secondary school, every single door had the lock punched out (some sort of pnuematic job, ala. No Country For Old Men?), apparently for fire safety reasons in the event of needing to evacuate the building. Suffice to say, stolen hardware was the norm.

Somewhat unrelated, but still, physical security tends to be an afterthought, or not thought about at all, when it's often the weakest link for someone who has more than a casual interest in getting to your data.

Comment Re:Nothing new (Score 4, Insightful) 152

Yes, the SVG support in the Platform Preview is definitely a work in progress; it really should be viewed as an early alpha in overall completeness and quality. However, MS has apparently committed to a full and proper SVG implementation in IE9. Some links worth checking out:

Platform Preview gives Web developers first taste of IE9 - Scroll down to SVG heading for a nice summary

SVG in IE9 Roadmap - Official IE blog post on SVG

Slashdot Top Deals

Our business in life is not to succeed but to continue to fail in high spirits. -- Robert Louis Stevenson

Working...