如果你曾经尝试过使用
# update-rc.d -f mysql remove
还无法禁止mysql随Ubuntu启动时启动,可以尝试一下以下方法:
# vim /etc/init/mysql.conf
注释掉文件中的以下三行
#start on (net-device-up # and local-filesystems # and runlevel [2345])
如果你曾经尝试过使用
# update-rc.d -f mysql remove
还无法禁止mysql随Ubuntu启动时启动,可以尝试一下以下方法:
# vim /etc/init/mysql.conf
注释掉文件中的以下三行
#start on (net-device-up # and local-filesystems # and runlevel [2345])
Step 1: Adding two Personal Package Archives(PPA) to your Ubuntu system
sudo add-apt-repository ppa:mercurial-ppa/releases sudo add-apt-repository ppa:tortoisehg-ppa/releases
Your system will fetch the PPA’s key. This enables your Ubuntu system to verify that the packages in the PPA have not been interfered with since they were built.
Step 2: Now, you should tell your system to pull down the latest list of software from each archive it knows about, including the PPAs you just added
sudo apt-get update
Step 3: you’re ready to start installing software from the PPAs
sudo apt-get install mercurial sudo apt-get install tortoisehg-nautilus
My mercurial and tortoisehg version info:
hg --version
分布式软件配置管理工具 – 水银 (版本 1.7.3)
(see http://mercurial.selenic.com for more information)
Copyright (C) 2005-2010 Matt Mackall and others
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.