Make /home/

Because pulling users in from the AD doesn't make their /home/ this can cause problems with some things such as ftp. To make the home directories for users use this script (as root)

code

#!/bin/sh 
#all lines starting with "#" are comments

for user in $( wbinfo -u|grep -v [$]|grep [.] );

do #start a loop
# echo "user is: " $user; #output user name
su --command="exit" $user
done # end of script

description

Give all users audio permission

To give all the users access to use audio I used a similar script:
#!/bin/sh 

for user in $( wbinfo -u|grep -v [$]|grep [.] );
do
addgroup $user audio
done