Tag: Linux

  • Installing MySQL on CentOS

    First thing you need to do is make sure the binaries are installed using yum. Note that this will only install MySQL and that you may need to run it as root depending on your systems permissions. [korey@localhost ~]$ yum install mysql-server mysql The next thing is start MySQL: [korey@localhost ~]$ service mysqld start Once…

  • Add new files to SVN from the command line

    Here is a little tip for automating files that need to be added to SVN. First make sure you are in your project folder that is under source control. Then try the following: svn status | grep -e ^? With this you’ll notive that it will list the files, but its not in a format…

  • How to move your cvsroot folder

    I recently came across a client who was running out of space on /var and needed to move some files off to a different location. There is history behind it, and this should not be your first option, but the short of it is that cvsroot was one of the folders that needed to be…