Reputation: 1
I am using linux kernel 3.8, ubuntu 13.04, I am curious if there is a way to do this. Also, I would like to know if there is some generic reason for why this doesn't work for me. Thanks.
Upvotes: 0
Views: 578
Reputation: 129139
Device files are created with mknod
. Permissions and owner can be changed with chmod
and chown
respectively. If the device file already exists, you may want to create a symbolic link to it instead using ln -s
.
Upvotes: 1