Namecoin-Qt not working on Linux

Post Reply
simonadebisi
Posts: 1
Joined: Sat Aug 30, 2014 2:07 pm
os: linux

Namecoin-Qt not working on Linux

Post by simonadebisi »

Hi everyone,

I followed the official tutorial to setup namecoin on my Ubuntu 14.04 box but namecoin command exits immediately after begin running. I can see splash screen and it it disappears immediately.

Here is the some technical information about the case:

Code: Select all

~/.namecoin
simon@faraday$  time namecoin
"sni-qt/1724" WARN  17:12:53.546 void StatusNotifierItemFactory::connectToSnw() Invalid interface to SNW_SERVICE 

real    0m0.450s
user    0m0.358s
sys     0m0.068s
~/.namecoin
simon@faraday$ 
I ran the command with strace, here are the last lines of the command:

Code: Select all

unlink("/tmp/NamecoinQt2533342")        = 0
openat(AT_FDCWD, "/tmp/sni-qt_namecoin_1839-QMjZxW", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 6
statfs("/tmp/sni-qt_namecoin_1839-QMjZxW/", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=36013486, f_bfree=7136739, f_bavail=5301591, f_files=9158656, f_ffree=7713111, f_fsid={821255777, 807183569}, f_namelen=255, f_frsize=4096}) = 0
getdents(6, /* 3 entries */, 32768)     = 80
getdents(6, /* 0 entries */, 32768)     = 0
close(6)                                = 0
openat(AT_FDCWD, "/tmp/sni-qt_namecoin_1839-QMjZxW/icons", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 6
statfs("/tmp/sni-qt_namecoin_1839-QMjZxW/icons/", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=36013486, f_bfree=7136739, f_bavail=5301591, f_files=9158656, f_ffree=7713111, f_fsid={821255777, 807183569}, f_namelen=255, f_frsize=4096}) = 0
getdents(6, /* 2 entries */, 32768)     = 48
getdents(6, /* 0 entries */, 32768)     = 0
close(6)                                = 0
rmdir("/tmp/sni-qt_namecoin_1839-QMjZxW/icons") = 0
rmdir("/tmp/sni-qt_namecoin_1839-QMjZxW") = 0
sendmsg(16, {msg_name(0)=NULL, msg_iov(2)=[{"l\1\1\1\220\0\0\0\7\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre"..., 144}, {"\213\0\0\0type='signal',sender='org.fr"..., 144}], msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 288
close(20)                               = 0
write(5, "@", 1)                        = 1
close(5)                                = 0
close(4)                                = 0
rt_sigaction(SIGCHLD, NULL, {0x7fb4af66acc0, [], SA_RESTORER|SA_SIGINFO|SA_NOCLDSTOP, 0x7fb4b0a04340}, 8) = 0
rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x7fb4b0a04340}, NULL, 8) = 0
write(19, "Freeing 0 entries in CMapBlockIn"..., 39) = 39
write(19, "Freeing 0 nodes in CNodeList 0xa"..., 41) = 41
exit_group(1)                           = ?
+++ exited with 1 +++
namecoind is running at the background; I checked it with ps. It seems fine, I couldn't any clue about a possible problem. By the way, I think that Qt is not responsible for that glitch.

Any ideas about that problem? I googled but found nothing about that issue.

Thanks for advance.

pmc
Posts: 73
Joined: Thu Oct 03, 2013 8:50 pm
Location: Germany
Contact:

Re: Namecoin-Qt not working on Linux

Post by pmc »

simonadebisi wrote: I followed the official tutorial to setup namecoin on my Ubuntu 14.04 box but namecoin command exits immediately after begin running. I can see splash screen and it it disappears immediately.

...

namecoind is running at the background; I checked it with ps.
You cannot run the daemon and the gui wallet at the same time. Shut down the daemon with "namecoind stop", wait until it has exited, then start the gui.

Post Reply