#!/bin/sh #Change permissions on the following devices so KDE and Audio programs have access as user in Vector Linux. #K3B uses /dev/srX #This allows for CDDB and Audio Ripping for K3B #KDE multimedia uses /dev/sgX #This allows for Audiocd:/ (Konqueror file manager), CDDB, and Kaudiocreator to view/rip CD's. #Vector uses /dev/scdX if you load hdX=ide-scsi #This allows for user access to the device. #X=device number chmod a+rw /dev/scd0 /dev/scd1 /dev/sr0 /dev/sr1 /dev/sg0 /dev/sg1 #Most people do not have more than 2 CD devices--if so, they will need to expand the perms to the other devices. #Should this script be placed in /etc/profile.d? #Inggy .