DiskSpace full

If iradialer services are not coming up, check whether the diskspace is full using the following command.
df -h
This will show the disk usage of each partition.
Used -> Shows the current usage
Size -> Total DiskSpace Allotted
Use%->Current Usage (%)


Check which directory is taking up the diskspace,
du -h <directory_name>

Depending on which directory is taking up the diskspace, you may delete the relevant log files of that directory.

If you want to delete all the log files from a directory, you can run the following command:
1. cd /opt/epi/log
2. sudo rm <filename>
    OR
    sudo rm *.log  (to remove all the log files)
Note:
Please be cautious and give the correct directory name/filenames to be deleted. Take a backup of any log files if required before running this command.