![]() |
How to find out my IP address?
Is there a way I can find out my IP address on my new SuSE 9.2 system? :confused:
lola |
Log in to a shell, and run
Code:
ifconfigTom |
Thanks Tom, that does the trick! :)
lola |
If you online...
|
script for it
When run by itself, whoami looks like this:
$ whoami sbovisjb1 That should be sufficient to give you the clue on how to implement the test you seek: if [ $(whoami) = "sbovisjb1" ] then execute the code, we're the right user else echo "You must be user 'joe' to run this script." exit 0 fi You can modify this to match the user or set of users you want to allow, or you can negate the logic to screen out bad userIDs immediately, like this: if [ $(whoami) = "root" ] then echo "You cannot run this script as root." exit 1 fi original source: http://www.askdavetaylor.com/how_can...k_user_id.html |
Found it
I mentioned a website where you can check you're ip adress history... i believe the feds use this... :)
http://www.iptagger.com/ |
Finding your IP address
Another good site for finding info on your IP address is:
IP Notes - Find out your IP address (copied from my bookmarks) It also sticks your location on a Google Map - quite funky. |
Quote:
|
Another site to check your IP
Or URL: http://whatismyip.com/
|
|
| All times are GMT +2. The time now is 02:03. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.