commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
Sometimes you need to use a port that is already opened by some program , and you don't know who to "kill" for it to release - so, now you do !
There are 6 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
You can also add "-p" to netstat.
Still a useful tip.
this seems to work backwards? when I run it I get up some instances of opera, but no apache which runs a webserver on port 80....
Opera doesn't listen on port 80 ....
lsof is a command to check for opened files (List opened files) , and i used it to check what file/service is locking my port on listening.
that because i didn't see any service that might match that port ..
and there were too many of them to start searching one by one about what they do..
it also displaying the user that is using it ... (if you have multipul users in your pc / server)
and if some script is listening on some port ( say perl script on port 23 telnet )- the command will show you the name of the script that is using this port at the very moment.
Or if you run Solaris and don't want to install lsof:
pfiles $(ls /proc) 2>/dev/null | nawk '{if(/^[0-9]/){x=$1;sub(/:/,"",x)}if(/port: 80/){y=x}}END{print y}'I know Opera doesn't listen on port 80. It is connected to port 80 elsewhere. And that was my point. I thought your command would listen the programs I was running that was currently listening on a certain port. Like Apache, which currently is doing exactly that. But instead your command listed some lines for Opera and what ip addresses it was connected to a port 80.
I have the same problem as @Svish. Running lsof -i tcp:80 on Ubuntu 11.04 only reports network files that are connected to remote machines on port 80. If I try lsof -i 6tcp:80 it reports nothing. Trying netstat -t -l -n -p reveals:
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
with no program associated with whatever is listening on port 80.
Apache version: Server version: Apache/2.2.17 (Ubuntu)
Further reading reveals that this command must be run as root to report the information wanted: http://www.commandlinefu.com/commands/view/144/find-process-associated-with-a-port#comment