Archive for the ‘Operating Systems’ Category

Front doors

Operating Systems, Security

We’ve all heard of “back door” access. This refers to a situation where some kind of access to the system is available that does not go through the normal procedures, and is sometimes present during the early stages of development to provide convenient and efficient ways to interact with a partially complete system.

Obviously, it is essential that the final version of the solution is built without these back doors present, otherwise you have a major hole in your security.

Then there is the front door, and that will be present in the final version you put into the hands of your customers.

During development it is tempting to make the front door as “convenient” as the back door, just [click title to read more…]

Long, long, long paths

Operating Systems

You may not be familiar with the MAX_PATH limitation in Windows, but if you are then you know how much of a nuisance it can be. Windows, unlike Unix, limits the full path of a file to 260 characters. People of a certain vintage who remember the 8.3 file name format will laugh at 260 characters being called a limitation but to Unix followers the notion of such a limit is crazy.

That 260 character limit is there, has been for a very long time, and is even present in the current incarnation: Windows 10.

Why is this a problem? Normally it is not and one can work away for years and not even be aware of it, but as [click title to read more…]

All mapped out

Business, Operating Systems, Technology

I think it is pretty clear to everyone that location is a key concept in mobile data services today, whether you are using native apps or Web-based services. So it came as a bit of a surprise that Apple released their home-grown iOS 6 map application to replace the one based on Google’s map data. Google has spent about 7 years collecting map data, including satellite images, street images, locations of significant structures/businesses, public transport routes and timetables and much more. This made Google’s solution an excellent component in location-based services. There were a few map-related omissions in Google’s offering for the iPhone/iPad platforms, such as being unable to get a rotatable 3D perspective, or to have turn-by-turn directions spoken [click title to read more…]

CentOS 6 in VMWare 4

Operating Systems []

Here’s a quick summary of installing CentoOS 6 into VMWare Player 4. This summary isn’t for beginners, so I’m not going to mention the “obvious”…

First, my environment: I’m running Windows 7 as the host on an Intel dual-core machine with 8Gb RAM, on which I’ve installed the free VMWare Player version 4, and I have downloaded the DVD ISOs of the latest CentOS 6 distribution. Player 4 will happily run VM images created for Player 3, so if you are still on 3 then now is the time to upgrade.

Run Player and at the main window you get the option to run existing VMs or create a new one. Create a new VM with at least 2 Gb [click title to read more…]

Installing SVN and Apache on Centos 5

Coding, Operating Systems, Web [ | ]

Having done this many times already, here’s a quick recipe for putting Subversion (with Apache) on a fresh install of CentOS 5.5. It assumes you will put your repositories into /var/svn/repositories, the user credentials are held in /var/svn/passwords, you will have a user called testuser and an initial blank repository called myrepos. I’ll also assume your server is called svn.example.com. The procedure also opens port 80 in the iptables firewall. Edit the details to suit your own requirements:

# yum install httpd subversion mod_dav_svn # mkdir -p /var/svn/repositories # chown -R apache:apache /var/svn # chcon -R -h -t httpd_sys_content_t /var/svn # htpasswd -c /var/svn/passwords testuser * enter password for 'testuser' (twice) # vi /etc/httpd/conf.d/subversion.conf Changes: * Uncomment the <Location> config [click title to read more...]