“mount.nfs4: Operation not permitted” when mounting NFS device

This is a configuration issue. A required parameter needs to be added to the file /etc/exports to define the root file system for mounting.

The parameter that needs to be added follows:

fsid=0

An example line would look like the following:

/storage *(rw,fsid=0,sync,insecure_locks,insecure,no_root_squash)

Additional information

NFSv4 works differently and no longer references the root of the file system but instead requires the root to be defined with fsid=0.

If fsid=0 is not present, permission will never be granted for the file system to be mounted.

via RHEL6: “mount.nfs4: Operation not permitted” when mounting NFS device – IBM System Cluster 1350 (1410).

NFS4 is different.   After configuring exportfs the old fashioned way the nfs mounts did not work at all.  I narrowed it down to the CentOS server running nfs4 and then found this article from IBM.  It seems to work now.

CentOS 64 bit bad ELF interpreter

You’re on a 64-bit system, and don’t have 32-bit library support installed.

sudo yum install glibc.i686

via linux – CentOS 64 bit bad ELF interpreter – Stack Overflow.

Also had to yum install gtk2.i686.  Here’s the solution from the above link for  Debian based systems:

Updated: Since it seems this answer is still getting viewed, and occassionally up-voted, note that the solution above works on CentOS, Fedora, or Red Hat derived operating systems; on a Debian or Ubuntu derived system, however, one would instead use

 sudo apt-get install ia32-lib 

For some reason, after all these years of using 64 bit OSs, and still having an active, running FC10 installation, this was the first time I had no choice but to run a 32-bit app on a 64 bit machine.
The above solution worked

The Future Fruits Of Apple + Facebook

And while Facebook is struggling to make money on small mobile screens, Facebook TV could be a more natural place for display ads. Advertisers have been demanding a bigger, flashier ad formats that Facebook TV could host. We’re so used to watching commercials on TV that a glossy still ad every 10 minutes or 10 photos, or the occasional fifteen-second pre-roll might not seem out of place.

Apple would gain a good showcase for how existing mobile and web apps could be reformatted for the television. The special Facebook app could also be a selling point for Apple’s new TV hardware. Facebook needs to be on televisions and Apple needs Facebook on its televisions, so this collaboration seems inevitable if not imminent.

via The Future Fruits Of Apple + Facebook | TechCrunch.

What goes around comes around.  The first computer to use the TV as a monitor was the VIC-20 or Commodore 64.  Then there was WebTV.  Now Apple wants to pipe Facebook to TV? Not having a TV or a Facebook account I have no basis for an opinion on this.

Which carcass is worth more for Microsoft’s vultures, RIM or Nokia?

Nokia and RIM, the two former leaders in the early smartphone market, are now basically at the end stage of their downward spirals. This is an opportunity for Microsoft, which wants to make some inroads in the smartphone market, assuming Microsoft it can play its cards right.

via Microsoft Explorer : Which carcass is worth more for Microsoft’s vultures, RIM or Nokia?.

Researcher: Interdependencies could lead to cloud ‘meltdowns’

Ford compared this scenario to the intertwining, complex relationships and structures that helped contribute to the global financial crisis.

New cloud services may arise that essentially “resell, trade, or speculate on complex cocktails or ‘derivatives’ of more basic cloud resources and services, much like the modern financial and energy trading industries operate,” he wrote.

via Researcher: Interdependencies could lead to cloud ‘meltdowns’.

IN DEPTH: Staying ahead of cloud complexity

Android Open Source

Here you can find the information and source code you need to build an Android-compatible device.

Android is an open-source software stack for mobile devices, and a corresponding open-source project led by Google. We created Android in response to our own experiences launching mobile apps. We wanted to make sure that there was no central point of failure, so that no industry player can restrict or control the innovations of any other. That’s why we created Android, and made its source code open.

via Welcome to Android | Android Open Source.

Linaro: open source software for ARM SoCs

Linaro is a not-for-profit engineering organization consolidating and optimizing open source Linux software and tools for the ARM architecture. Find out more…

via Linaro: open source software for ARM SoCs.

From:Android is about to get a lot faster thanks to Linaro

The folks behind the Linaro open source software project have put a little time into tweaking Google Android to use the gcc 4.7 toolchain. The result is a version of Android that can perform many tasks between 30 and 100 percent faster than the version of Android Google 4.0 Google currently offers through the AOSP (Android Open Source Project).

Google and Netflix Make Land Grab On Edge Of Internet

Many of these deals are secret, but Deepfield Networks knows of about 40 companies that are setting up their own content delivery networks with service providers, according to Craig Labovitz. But he’s bound by non-disclosure agreements, and can’t name names.

via Google and Netflix Make Land Grab On Edge Of Internet | Wired Enterprise | Wired.com.

Andy Ellis, a chief security officer with Akamai, agrees. Yes, companies have been moving to cache their content locally with ISPs, but there are still plenty of services — security and analytics, for example — that Akami can sell them. “I don’t think we’re yet seeing a land rush into the ISPs,” he says. “I think you have to be really really big to be interesting enough to the ISPs.”

Of course, five years ago, did anyone really think that Netflix would be responsible for 20 percent of U.S. Internet traffic? Back then, they were just the guys who mailed you CDs.

LinkedIn Password Leak: Salt Their Hide

Let me walk through the process of password protection and explain why unsalted passwords are only infinitesimally better than plaintext passwords:

via LinkedIn Password Leak: Salt Their Hide – ACM Queue.

Conclusion

LinkedIn is learning fast right now, according to their damage control missives, they have now implemented salting and “better hashing.” But we have yet to find out why nobody objected to them protecting 150+ million user passwords with 1970s methods.

And everybody else should take notice too: Even if you use md5crypt, you should upgrade your password scrambling algorithm. As a rule of thumb: If it does not take a full second to calculate the password hash, it is too weak.