|
Listening Parties Organisation Thread: upcoming listening parties & requests What would be the best way to go about setting these things up? I figured we could toss around album ideas and potential times in here and then go from there. Cool?
Originally...
Started by Joey on
, 15 posts
by 9 people.
Answer Snippets (Read the full thread at unforumzed):
Let's make....
Tendaberry listening party.
Oh totally.
Originally Posted by menju56 I'd also love to listen to some Laura Nyro with people at some point.
I'd also love to listen to some Laura Nyro with people at some point.
Long anyway.
|
|
How can you find out which process is listening on a port on Windows?
Started by Readonly on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It's the old Sysinternals app that Microsoft bought.
I "listening"
Use TCPView if you want a GUI for this.
|
|
Is there a way to determine what program is listening to some port, TCP or UDP, in Linux?
Started by whitequark on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
Netstat -pln | grep 'Port number' --> from this info you can fetch the PID ps aux | grep 'PID' --... .
Ss -tlp
Quicker than netstat.
Take a look at this and this page.
Netstat -lp
is the command you want, but you need to be root to see all the data .
|
Ask your Facebook Friends
|
What's the simplest way to check if anything is listening on net.tcp://localhost:8801/ Preferably using WCF
Started by satanowicz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can You show me some code to do this?.
Simply open a Socket (or TcpClient ) and try connecting to that endpoint .
I don't think WCF is the best way to do that .
|
|
Are listening skills that hard to come by?
May 6, 2012 5:42 AM Subscribe Why is it so hard to remember what I've shared with you on dates 1, 2, 3 and 4?
In my dating experience the number one thing I've encountered that has really prevented a connection...
Started by BlueMartini7 on
, 29 posts
by 27 people.
Answer Snippets (Read the full thread at metafilter):
Looking at this, though:
>>Yet he doesn't mean I'm not interested or not listening....
Of people are not really listening early in the dating process for reasons people have already themselves so maybe just putting on an act of listening.
|
|
I want to see if something is listening on a port on localhost. I was going to use nc and check the exit code.
Something like this:
echo "" | nc localhost 14881 echo $?
Any other suggestions?
Started by Rory McCann on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Netstat -ano | egrep LISTEN | egrep tcp | egrep $PORTNUMBER
lsof -i :14881.
Might not be listening on localhost or it might be blocked by iptables:
netstat -ln | grep :14881 echo switches to netstat.
|
|
Hi,
I have been trying to build and configure ntp clients and server , and used this line in the ntp.conf for the clients:
restrict default ignore
Still, I see that my client is listening on the local network interface. From the system log:
Listening ...
Started by Adam Matan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Read the Controlling Access to Your Server section at this FreeBSD article
If you want to deny all machines from accessing your NTP server, add [that line to the server]
You might want to recheck with these ... .
From what i recollect, thats a server line.
|
|
The Habit of Listening; Games that Encourage Listening
Started by Audrey Murphy on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at pinterest):
|
|
On a Solaris 8 server, how do I find out what process is listening on a given port? The Windows implementation of 'netstat' offers the -o and -b switches, which show the owning process ID and name respectively. Is there an equivalent under Solaris?
Started by Murali Suriar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
All the PIDs and find the one listening to, say, port 25:
PORT=25 for p in $(ps -eo pid) do OUT.
|
|
I have a WPF form and I am working with databinding. I get the events raised from INotifyPropertyChanged, but I want to see how to get a list of what items are listening, which i fire up the connected handler.
How can I do this?
Started by simonjpascoe on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
What do you mean with the Items that are listening ?
Do you want to know which controls.
|