Slashdot Mirror


User: pseudonomous

pseudonomous's activity in the archive.

Stories
0
Comments
243
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 243

  1. Re:Great logic there Lou on Yahoo IPv6 Upgrade Could Shut Out 1M Users · · Score: 1

    There are two major technical issues obstructing IPv6 adoption for home users:

    1. Your ISP doesn't provide you with an IPv6 address.
    2. Your network equipment's firmware can't handle IPv6, even though IPv6 has been standardized for over a decade. It's not particularly easy even to buy a new wireless/wired router and/or cable/dsl modem that supports IPv6.

    Now you're router is probably physically cable of handling IPv6 routing, a linksys wrt54g from 5 years ago can do it if you flash OpenWRT firmware onto it... so you just need a firmware update to add software support for IPv6 ... but good luck getting revised firmware from your manufacturer.

    So, in my opinion, basically no blame rests with network node users, because even if they wanted to enable IPv6 connectivity for their home network, they can't. Some amount of blame rests with your ISP (but I do think Comcast, at least, is exploring the possibility of offering IPv6 connectivity), and alot of blame rests with SOHO networking device manufacturers. Now, if equipment manufacturers and ISPs get their act together and offer IPv6 capable devices and service, then you can start blaming network node users for not getting onboard (and I'm sure, at that point, plenty of people will drag their feet about it).

  2. Re:I know the fix on Is Samsung Blocking Updates To Froyo? · · Score: 2

    I don't think there's anyway to reasonalby expect this to work. First off, you'd need to root the device first, second stock android might not even fully support your phone's hardware.

  3. Re:You lost me on Google To Drop Support For H.264 In Chrome · · Score: 1

    I think if the issue is that, even if there are no royalties paid, h.264 isn't really "free" in that it takes developer time away from other projects that they might work on, nobody at Mozilla is interested enough in h.264 to develop a playback plugin; besides, h.264 plugins sort of defeat the point of , since the idea was to enable video playback WITHOUT plugins. Also, note that Opera, which is a proprietary project doesn't want to support h.264 either. presumably because of malaise regarding royalties (Opera's creators aren't exactly rolling in dough). I think that Microsoft, Opera, and Firefox are all sort-of waiting for the dust to settle in the codec dispute. If it becomes clear that h.264 is the future, Opera and Firefox will have to find some way to support it; if vp8 or, less likely, theora, goes somewhere Microsoft will support it in new versions of IE. Apple, to some degree has a vested interest in opposing anything but h.264, so they might hold out even if it's clear the tide is changing toward another codec.

  4. Re:You lost me on Google To Drop Support For H.264 In Chrome · · Score: 1

    Firefox doesn't bundle flash, do you mean chrome?

  5. Re:This is why FreeBSD is not 'enterprise' on FreeBSD Running On PS3 · · Score: 1

    How can an OS level bug cause firmware/BIOS level problems? And or tell me what hardware I can reproduce this bug on.

  6. Re:It's not easy on The Challenge In Delivering Open Source GPU Drivers · · Score: 5, Insightful

    I'll admit I don't know too much about this but freebsd has managed to provide a stable ABI, I think back to the 4.x releases via compatibility layers (which are not installed by default but are available). I've heard that solaris's abi is stable back to the first official release. Linux devs could provide a stable abi ... but they don't care. They build their kernels from git anyway.

  7. Re:Business vs Open Source on Ex-Sun CEO Warns Oracle of Death By Open Source · · Score: 1

    And as McNealy says in the article: going the OEM route to sell x86 Solaris was a HUGE mistake. If Sun had shipped x86 Solaris boxes that they built in shop, they probably could've been "Apple of the enterprise market", selling high quality integrated software and hardware, keep a decent profit margin, but drop prices into a range where they were competitive vs. Linux.

    But instead they got mixed up in the whole anti-Microsoft lawsuit because Microsoft rigged the game for them to fail selling through OEMs. Even though Sun would eventually have some success in the courts, they still loss tremendous marketshare to Linux in the meantime. Now I wouldn't agree with McNealy that Solaris is superior in all ways to Linux, but there IS some good stuff in there that Linux doesn't have and it IS probably the most compelling commercial Unix left today. But by the mid-90's and maybe even earlier, there was just no way in hell that SPARC was competitive vs. x86 for anyone who wasn't already locked into the platform in some way, and not being able to enter the x86 market fast enough, in a big enough way, I think is what ultimately killed Sun. Because, like pre-iTunes Apple, they developed software, but mainly made their money off the hardware.

    And nothing about "Open Source" or anything they would do after that point mattered, they were just throwing everything they could at the wall, but nothing stuck.

  8. Re:Would it kill the submitters on Oracle Asks OpenOffice Community Members To Leave · · Score: 1

    Oracle tried to hijack and rebrand RedHat as "unbreakable linux". As far as I know, they're still selling licenses for it. It's basically like CentOS (rebranded, but built from RedHat sources, probably most common linux distro used in corporate environments) except they charge for it. I don't think it sells very well, but it does sell. And since Oracle basically puts no money into developing it, they probably make a decent profit off of it. Which is the problem with Oracle, they are a good at making money for Oracle, and it really doesn't seem like they care about anything else.

  9. Re:The hard way is more fun on Programming Things I Wish I Knew Earlier · · Score: 1

    I'd like to add to this that one of classic reasons why someone writes an appllication is because they need program to do something, on the other hand, if you always find and use existing solutions, you end up not writing any but short bash scripts. (I speak from personal experience)

  10. Re:Why? on Google's China Rival To Create Android-Like OS · · Score: 2, Insightful

    Correct me if I'm wrong, but android provides a lot of integration into ALL of Google's most popular web-services, not just search, so it could be that Baidu sees success of Android as being detrimental to Baidu offering competing web-services to things like g-mail, certainly it offers a bunch of apps to do this (I don't know to what extent there's anything actually in the OS that does this) Also they might want to offer a competing "app" marketplace. What probably makes the most sense, would be for Baidu just to take the Android source code, replace the stuff that integrates w/ google web-apps w/ stuff that integrates w/ Baidu web-services, and then publish it w/ their own Marketplace app. I doubt it will be particularly successful, certainly it has no chance at all EXCEPT in China, but who knows...

  11. Don't make snapshots, make backups on Volume Shadow Copy For Linux? · · Score: 1

    I'm not reading all of this crap, but there are plenty of methods for storing/restoring data that DON'T involve making backups. Here's a few:

    Use dar (search for "dar disk archive" so you don't get daughters of the american revolution)
    - dar allows you to get many of the features that snapshots provide by simply backing up files to disk. It supports incremental backups, and supports deleting files on a backups so when you restore from a dar backup it really does restore a given directory to it's state when the backup was made. It's also extremely complex, so you will probably end up writing scripts to automate using it.

    Other Options:

    -You can also use tar, but it's not as versatile, and only sort-of supports incremental backups, you could probably hack around this by scripting the capabilities yourself, but it's much simpler to use dar instead.

    -Use dump/restore (I haven't done this, and this method of backing up is OLD so there may be limitations that make it unusable in this context)

    -Use dd to clone partitions/disks to image files, takes a long time and creates huge files, requires harddisks with identical geometry for a restore. (well, not quite, but it makes it alot easier)

    There's also some client/server stuff like bacula and amanda, but I don't use them, it seems like much more work than is neccessary. Personally I just do dar backups to an external harddrive (or nfs-mounted share)

  12. It's free ... if you can connect on HotelChatter's Annual Hotel Wi-Fi Report 2010 · · Score: 1

    I don't know if this has been anybody else's experiance but I've stayed at a couple of hotels ... many had free wifi, but two stand out in my mind as having claimed to have "free wifi" but then when you associated to their access point you couldn't get an IP address. At first I thought "maybe it's because I'm using linux" ... because two friends who were staying with me were able to connect with their iPhones ... but on another trip both my dad and brother were unable to connect with their respectively Windows XP laptop, Macbook. So it seems like there's a whole lot of hotel wifi APs that are setup in a totally screwed up manor. Or maybe I've just had bad luck

  13. Re:Clash of titans, watch the fallout on Bing Loses More Money As Microsoft Chases Google · · Score: 2, Interesting

    In fact, you could argue Microsoft can't, long-term afford NOT to pump massive amounts of money into it's online services because if (and this may or may not be probable but I think anyone will admit it's possible), internet services usurp the vast majority of computing tasks from the desktop computing model, then Windows, Microsoft's core product, become much less relevant than it is today. If Microsoft makes headway in the cloud, at worst they have something to fall back on if the Desktop OS market tanks, and at best they can continue to prop up Windows by offering better integration with their Web-services on Windows then alternate platforms.

  14. On the other hand on US Students Suffering From Internet Addiction · · Score: 1

    spending time on the internet make me feel isolated and lonely ... although spending time around other people also makes me feel isolated and lonely so maybe I shouldn't read too much into that.

  15. Re:Isn't this like DRM for Open Source... on Checking For GPL Compliance, When the Code Is Embedded · · Score: 2, Insightful

    It's not at all like DRM, it's a forensics tool. DRM takes your file/software/whatever and asks "is this an authorized copy? should I let the user access/run this file?", this software looks at software that's already been compiled and is being used and determines if it likely came from known source code. Nor is this tool limited to use with open source software, it's just that tool itself is open-source.

  16. Re:Well... on Why Broadband In North America Is Not That Slow · · Score: 1

    And I live in Chicago, but the fastest residential connection option I can get, IN THEORY, is 20 Mb/s down and 6 Mb/s up. In practice I'm stuck w/ AT&T @ 6 Mb/s down + 712 Kb/sec up.

  17. The default GNOME theme on Ubuntu Gets a New Visual Identity · · Score: 3, Insightful

    I think if anybody ever bothered to use the default GNOME theme, the one the upstream developers ship, they would appreciate much of an improvement every Ubuntu theme has been over the default.

  18. How To do this with KDE on 2 Displays and 2 Workspaces With Linux and X? · · Score: 1

    Ok, you can't actually get seperate virtual desktops on different screens, however, using KDE you may be able to get something that's roughly feature equivalent.

    Using your favorite one of xrandr, xorg.conf, or the proprietary Nvidia/ATI tools, you can set up multiple monitors. The default behavior, in the latest Xorg, at least, will let you swap windows between your two displays, the default behavior for "maximize" in KDE will be to fill a single display with one large window, but if you do need a window to span multiple desktops, you can manually resize it.

    You can add a seperate KDE panel to each desktop, both can have thier own task managers which can be configure to only show that windows from a given display screen (or not). If you want, you can set things like the desktop background independantly on each display.

    Unfortunately, this still isn't quite as functional as actually being able to actually switch virtual desktop independantly on each screen, but it's still pretty nice. (this is my personal setup, when I have two monitors available). In fact, the tiling and tabbed window management features which are allegedly coming in KDE 4.4, may address some of the remain limitations of the current dual head setup in KDE, also, allegedly KDE 4.4 fixes the bug which currently makes the "systemsettings>display>multiple monitors" configuration tool un-usable for many people.

  19. Re:Disaggregation on Why Movies Are Not Exactly Like Music · · Score: 1

    I don't even watch the trailers anymore, I just skip straight to the comments...

  20. Re:Yes it is terrible! on Is Linux Documentation Lacking? · · Score: 1

    I second this motion, not only should people write software that I can download for free, they better have time to write quality documentation that they provide for free as well. And they should mail me cookies, otherwise I'll use windows.

  21. Re:The real reason on What Google's Chromium OS Is Reaching For · · Score: 2, Funny

    I think it will turn out to be a bigger mistake when we learn (for a very brief instant) not to trust cloud to NOT fire nuclear missiles.

  22. Re:This is how the HDD will finally die on Google Releases Source To Chromium OS · · Score: 1

    Screw 32G, it sounds like all they need is about 4G.

  23. Re:Reminds me of something on Google Releases Source To Chromium OS · · Score: 1

    x86 yes, but Google is targetting ARM too, and there they'd probably have the advantage over Windows CE/Mobile.

  24. Re:I agree, but it's not that simple on Psystar Crushed In Court · · Score: 4, Insightful

    By that logic, Windows is irrelavent (to any reasonable person) because you are tied to a single software vendor.

  25. Re:This comment surprises me on Psystar Crushed In Court · · Score: 0, Troll

    Actually, you have to wonder if maybe it was Microsoft behind Psystar, and if this really was EXACTLY the outcome they wanted, I mean, Microsoft itself has a fairly draconian EULA, and they just might have wanted a test case to set precedent for affirming it, backing someone to get sued by Apple (and lose) seems slightly less absurd then sueing themselves.