I'm running SQL Server. Why is the papercut_log.ldf file using 5 GB ? Can I truncate/remove it ?
The log file is maintained by SQL server, and managing it's size is a SQL Server administration issue. The LDF file is the transaction log that allows you to perform "point in time" restores if you have system failures. The way it works is that you can restore from your last full backup and "replay" the transactions from the transaction log file. All of this sounds great, but you really need to be geared up to support it. For example, if your transaction log files are stored on the same disk as your database, then if something goes wrong you'll lose the database and the logs. So you have really want to use these, then you need to implement "transaction log shipping" which moves transaction logs to another system.
If you don't want to use point-in-time recovery then you can disable it completely. This means that SQL won't bother to create the transaction logs at all. You can do this by changing the recovery model to Simple. See the description here. See screenshot below.

If you do want to use transaction logs. You need to manually "truncate" them after your backup procedures. Various issues around handling and truncating log files can be found in the SQL server KB article here.
