On Thursday 28 Apr 2016, Mamadou NGOM wrote: > Hello, > it doesn't work my dahdi yet .for information, i use debian 8 . > I put the file dahdi.bash in /etc/init.d and I gave it the permission 755 > but i have the same error: bash: /etc/init.d/dahdi: No such file or > directory
You need to name the file just "dahdi", not "dahdi.bash"; because the command "service dahdi start" is looking for a file just called "dahdi". If you run # mv /etc/init.d/dahdi.bash /etc/init.d/dahdi then # service dahdi start should work. You probably also need to run # update-rc.d dahdi defaults to ensure it starts up everytime the computer is booted up. -- AJS Note: Originating address only accepts e-mail from list! If replying off- list, change address to asterisk1list at earthshod dot co dot uk . -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
