Updating Webmin Logo Rumi, January 21, 2021January 21, 2021 On a default installation, your Webmin login page looks like below: To suppress both the Webmin logo and the “Webmin” text from the login page, add below to Webmin > Webmin Configuration > Webmin Themes > Theme Extensions: Continue Reading
Generate Large Test Files in Windows Rumi, January 16, 2021 Open an administrative level command prompt. Run the following command: fsutil file createnew <file> <size in bytes> For example, this command will create a 1GB file called 1gb.test on my desktop: fsutil file createnew c:\users\steve\desktop\1gb.test 1073741824 The key is to input the size of the file in bytes so here… Continue Reading
Delete/Purging mysql-bin (binlog) files safely Rumi, January 7, 2021 The file mysql-bin.index keeps a list of all binary logs mysqld has generated and auto-rotated. The mechanisms for cleaning out the binlogs in conjunction with mysql-bin.index are: PURGE BINARY LOGS TO ‘binlogname’; PURGE BINARY LOGS BEFORE ‘datetimestamp’; These will clear all binary logs before the binlog or timestamp you just… Continue Reading