And after checking my port tcp6000 with nmap like CNK say it show me that this port is closed.
How can I open it?
That means it's not a host permissions problem, but Xorg either isn't running, is running with TCP disabled, or perhaps there's a firewall blocking it.
Actually I now see the problem there in your first post (which I should have noticed earlier really because I'm aware of this trap):
I also remove the line -nolisten tcp from my .Xsession file in /home/tc.
Xorg since version 1.17
changed the default of enabled listening for TCP connections. Now the "-nolisten tcp" argument does nothing but you need to
add the new "-listen tcp" argument if you want to enable remote connections. So in the first line of ~/.xsession, you want:
/usr/local/bin/Xorg -listen tcp &
Instead of:
/usr/local/bin/Xorg -nolisten tcp &
(the latter now acting the same as if Xorg was started with no arguments)
When I try :
ssh -X tc@192.168.3.16
It worked so I don't know where's the problem.
I still can't use xterm -display 192.168.3.16:0.0
Juanito is suggesting that you use SSH X port forwarding, in which case you don't use the "-display 192.168.3.16:0.0" bit. He also assumes that you want xterm running on the pi to display on your 'computer', but from what you've posted it seems to me that it could be the other way round. You may need to explain what you're trying to do more clearly if you still have problems.