To remove rpm packages you can use rpm's -e flag. Firstly find the name of the rpm you have installed;
`rpm -qa | egrep -i "webmin|virtualmin"`
Then remove the package from the name that you see from above;
`rpm -e $packagename`
To remove rpm packages you can use rpm's -e flag. Firstly find the name of the rpm you have installed;
`rpm -qa | egrep -i "webmin|virtualmin"`
Then remove the package from the name that you see from above;
`rpm -e $packagename`