Folks, when I insert a storage device in my xubuntu12.04 powered computer, if it has any media files,*tumblerd blocks the device and I can't umount it. How can I fix that?
--
"A arrogância é a arma dos fracos."
===========================
Italo Moreira Campelo Maia
Bacharel em Ciência da Computação - UECE
Desenvolvedor WEB e Desktop (Java, Python, Lua)
Coordenador do Pug-CE
-----------------------------------------------------
--
xubuntu-users mailing list
xubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
04-30-2012, 04:06 PM
Italo Maia
tumblerd blocking umount of devices
And this seems to be the bug report for it*https://bugzilla.xfce.org/show_bug.cgi?id=8208
2012/4/30 Italo Maia <italo.maia@gmail.com>
Folks, when I insert a storage device in my xubuntu12.04 powered computer, if it has any media files,*tumblerd blocks the device and I can't umount it. How can I fix that?
--
"A arrogância é a arma dos fracos."
===========================
Italo Moreira Campelo Maia
Bacharel em Ciência da Computação - UECE
Desenvolvedor WEB e Desktop (Java, Python, Lua)
Coordenador do Pug-CE
-----------------------------------------------------
Turtle Linux 10.10 - http://bit.ly/cEw4ET
===========================
--
xubuntu-users mailing list
xubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
04-30-2012, 05:02 PM
Joshua O'Leary
tumblerd blocking umount of devices
On 30/04/12 16:55, Italo Maia wrote:
Folks, when I insert a storage device in my
xubuntu12.04 powered computer, if it has any media files,*tumblerd
blocks the device and I can't umount it. How can I fix that?
--
xubuntu-users mailing list
xubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
04-30-2012, 05:05 PM
Italo Maia
tumblerd blocking umount of devices
Yeap, a few people suggested that in a few threads but that's actually a workaround. If there were a more permanent solution, it would be better. Some people suggested to recompile tumblerd without video support.
Em 30 de abril de 2012 14:02, Joshua O'Leary <joshua.oleary@btinternet.com> escreveu:
On 30/04/12 16:55, Italo Maia wrote:
Folks, when I insert a storage device in my
xubuntu12.04 powered computer, if it has any media files,*tumblerd
blocks the device and I can't umount it. How can I fix that?
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
--
"A arrogância é a arma dos fracos."
===========================
Italo Moreira Campelo Maia
Bacharel em Ciência da Computação - UECE
Desenvolvedor WEB e Desktop (Java, Python, Lua)
Coordenador do Pug-CE
-----------------------------------------------------
http://www.italomaia.com/
http://twitter.com/italomaia/
Turtle Linux 10.10 - http://bit.ly/cEw4ET
===========================
--
xubuntu-users mailing list
xubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
04-30-2012, 05:59 PM
Joshua O'Leary
tumblerd blocking umount of devices
On 30/04/12 18:05, Italo Maia wrote:
Yeap, a few people suggested that in a few threads but
that's actually a workaround. If there were a more permanent
solution, it would be better. Some people suggested to recompile
tumblerd without video support.
Em 30 de abril de 2012 14:02, Joshua
O'Leary <joshua.oleary@btinternet.com>
escreveu:
On 30/04/12 16:55, Italo Maia wrote:
Folks, when I insert a storage
device in my xubuntu12.04 powered computer, if it has
any media files,*tumblerd blocks the device and I
can't umount it. How can I fix that?
On 30/04/12 18:05, Italo Maia wrote:
Yeap, a few people suggested that in a few threads but
that's actually a workaround. If there were a more permanent
solution, it would be better. Some people suggested to recompile
tumblerd without video support.
Em 30 de abril de 2012 14:02, Joshua
O'Leary <joshua.oleary@btinternet.com>
escreveu:
On 30/04/12 16:55, Italo Maia wrote:
Folks, when I insert a storage
device in my xubuntu12.04 powered computer, if it has
any media files,*tumblerd blocks the device and I
can't umount it. How can I fix that?
You could try making a script like this, to run at login (or
system-wide in /etc/rc.local):
===Script start===
#!/bin/bash
while [ "" = "" ];
do
if [ "`pgrep tumblerd`" != "" ]; then tumbd=started; fi
if [ "$tumbd" = "started" ];
then
if [ "`pgrep tumbler`" = "" ]; then killall tumblerd; fi
fi
done
===Script end===
When the tumbler client is closed, it would then terminate tumbler
also.
Joshua
--
xubuntu-users mailing list
xubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/xubuntu-users
--
"A arrogância é a arma dos fracos."
===========================
Italo Moreira Campelo Maia
Bacharel em Ciência da Computação - UECE
Desenvolvedor WEB e Desktop (Java, Python, Lua)
Coordenador do Pug-CE
-----------------------------------------------------
http://www.italomaia.com/
http://twitter.com/italomaia/
On 30/04/12 18:05, Italo Maia wrote:
Yeap, a few people suggested
that in a few threads but that's actually a
workaround. If there were a more permanent solution,
it would be better. Some people suggested to recompile
tumblerd without video support.
Em 30 de abril de 2012 14:02,
Joshua O'Leary <joshua.oleary@btinternet.com>
escreveu:
On 30/04/12 16:55, Italo Maia wrote:
Folks, when I insert
a storage device in my xubuntu12.04
powered computer, if it has any media
files,*tumblerd blocks the device and I
can't umount it. How can I fix that?