I was at the Chennai West, Road Transport Office (RTO) today to get my learner's licence for driving Light Motor Vehicles(LMV). My college mates will remember that I took quite a few attempts to get my two wheeler licence.
When I was applying for the two wheeler licence I did not have any address proof documents with me. So I had to file for an affidavit and get it attested by a notary. This time around I had the ration card. So I expected the whole affair to be smooth.
I took an extended weekend last week and visited the RTO on Friday, September 17th. I paid the fees (Rs. 30) and submitted the completed application forms. I was turned off by the inspector with the reason that people should either apply for LMV through a driving institute or
have the documents of a vehicle on which the driving test will be conducted. This was not mentioned in the application forms for the Learner's licence. Naturally, I was quite peeved. I thought my visit to Chennai had gone waste. Actually that was not to be, I had a great time the following weekend with my family, visting the Elliots beach and the Fruit Shop on Greams road (Besant Nagar).
Luckily I did not have to wait for long before I had another go. I had an appointment at the American Consulate for my visa on September 28th. I decided to take another day off and visit the RTO with all the necessary documents. This time around i.e. September 27th today, I was successful. I took copies of documents of my neighbour's car. I got my Learner's licence.
A few tips for people going to the RTO office for the Learner's licences for LMV. This should be applicable for two wheelers also.
- Completed application for Learner's licence, this includes a doctor's attestation that your general health is sound
- Proof of address - any of the following
- Ration Card
- Passport
- For any other document, please get in touch with your local RTO offices
- Proof of age
- Your school mark sheets (10th, 12th) should suffice
- You would not need the above documents (proof of address and proof of age) if you already have a driving licence for a different category vehicle
- Any of the following
- A driving institute's certificate
- or
- Documents of the car you are going to drive during the driving test
- Registration Crtificate (R.C. book)
- If you are not owner of the vehicle, then an authorisation from the vehicle owner
- Vehicle's insurance papers
- Vehicle's tax papers
- Vehicle's emission certificate
You would be submitting copies of the document along with your Learner's licence application form. The inspector will check the originals and return them to you. You do not have to undergo the written test if you already have a licence issued by the same RTO for a different category of vehicle than the one you are applying for now.
Another general tip, reach the RTO as early as possible. Being among the first applicants has its advantages. The officers are less irritable and you are more likely to meet honest, punctual officers if you are early and on time. Have all documents in place, you are less likely to be turned away if you have all the necessary documents. Do not give the officer a chance to turn you off. (some of them love doing so)
I got to read one of O Henry's short stories -
The Last Leaf. It is nice little short story with a twist. No doubt O Henry is regarded as a master of twist. You can read the online version of the story at
The Last Leaf.
Natarajan
Access Control Lists (ACL from now on) is a mechanism by which you can have fine grained file access permissions.
A scenario to explain the utility of ACL
How many times you wanted two users to have access over a particular file, and you had to create a group with the concerned users as members? ACL comes to your rescue in such a situation. You can just give the multiple users permissions for the file without having to create a group.
Pre-requisites for ACL
- Your filesystem has to support ACL extensions. Kernels configurations that come with latest distros have the ACLs enabled by default. If not, you would need to have the CONFIG_EXT2_FS_POSIX_ACL, CONFIG_EXT3_FS_POSIX_ACL, CONFIG_REISERFS_FS_POSIX_ACL (in the filesystem configuration section of your kernel) selected depending on which filesystem you use. Mandrake 10 official on which I tried using ACL had these configurations turned on by default. But I had to remount my filesystem with the acl option
- You filesystem must be mounted with the acl option.
- # mount / -o remount,acl
- You could set this option on in fstab to have it turned on at boot. For this add acl to the option section in the fstab line
Example
I have a directory
natty_kumar for which users natty and kumar need to be given read/write/execute access.
total 8
drwxr-xr-x 2 natty natty 4096 Sep 25 23:27 natty_kumar
-rw-r--r-- 1 natty natty 1406 Sep 25 23:28 acl.html
To see the current access control list for the directory
natty_kumar use the following command
[natty@localhost linux]$ getfacl natty_kumar/
# file: natty_kumar
# owner: natty
# group: natty
user::rwx
group::r-x
other::r-x
Now I need to give permissions to user kumar for this directory
[natty@localhost linux]$ setfacl -m u:kumar:rwx natty_kumar/
You can see the new access permissions for the directory with
[natty@localhost linux]$ getfacl natty_kumar/
# file: natty_kumar
# owner: natty
# group: natty
user::rwx
user:kumar:rwx
group::r-x
mask::rwx
other::r-x
Now user kumar has read/write/execute permissions on the natty_kumar directory.
To revoke all ACL permissions given, you can use
[natty@localhost linux]$ setfacl -b natty_kumar
This is a small intro to ACLs. For further reading:
Hope you found it useful.
Natarajan