Ubuntu: Difference between revisions
Jump to navigation
Jump to search
(→CIFS shares not properly unmounted during shutdown: Daniel Ellis as default solution) |
(→Medibuntu: Adding the repository) |
||
Line 2: | Line 2: | ||
This page is dedicated to the Ubuntu Linux distribution or derivatives |
This page is dedicated to the Ubuntu Linux distribution or derivatives |
||
== Medibuntu == |
|||
* [http://www.medibuntu.org/index.php Medibuntu home page] |
|||
* [https://help.ubuntu.com/community/Medibuntu Medibuntu community] |
|||
To install the '''[http://www.medibuntu.org/index.php Medibuntu]''' repositories (see [http://doc.ubuntu-fr.org/medibuntu here]) |
|||
<source lang="bash"> |
|||
sudo wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list && sudo apt-get -q update && sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring && sudo apt-get -q update |
|||
</source> |
|||
== Troubleshoot == |
== Troubleshoot == |
Revision as of 22:33, 23 October 2009
This page is dedicated to the Ubuntu Linux distribution or derivatives
Medibuntu
To install the Medibuntu repositories (see here)
sudo wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list && sudo apt-get -q update && sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring && sudo apt-get -q update
Troubleshoot
When shutting down the PC with Samba (CIFS) shares mounted, the shutdown sequence hangs with the following error messages:
CIFS VFS: server not responding CIFS VFS: no response for cmd 50 mid xxx
This is apparently a bug that is creeping in Ubuntu since a long time ago. Basically there are 2 possible fixes (as in [1], [2], [3]):
The one I use, proposed by Daniel Ellis here [[4]]:
sudo mv /etc/rc0.d/S31umountnfs.sh /etc/rc0.d/K31umountnfs.sh
sudo mv /etc/rc0.d/S40umountfs /etc/rc0.d/K40umountfs
sudo mv /etc/rc6.d/S31umountnfs.sh /etc/rc6.d/K31umountnfs.sh
sudo mv /etc/rc6.d/S40umountfs /etc/rc6.d/K40umountfs
Another one (not tried yet):
sudo ln -s /etc/init.d/umountnfs.sh /etc/rc0.d/K15umountnfs.sh
sudo ln -s /etc/init.d/umountnfs.sh /etc/rc6.d/K15umountnfs.sh