Wednesday 18 September 2013

Oracle Database Starting Error - ORA-00845: MEMORY_TARGET not supported on this system [SOLVED]


Guys

I got this error when I start oracle instance.

"ORA-00845: MEMORY_TARGET not supported on this system"

Some of the forum said about of tmpfs size which is mounted on /dev/shm.
Then I saw this post.
So I suspected it isn't enough space of share memory.

I checked with "df" command.


That space is currently amount mounted on /dev/shm. So I think that 5.9G isn't enough.
It's need to set a mount which over 5.9G manually.

Then I changed at /etc/fstab  as below. (changed "default" to "size=6g" )


Then, have restarted the host and checked the size with "df" again.


Then , try to start the instance again.

#sqlplus / as sysdba
SQL>startup

This time nothing error occur. :)

>>

UTEE

 Ref: http://www.oracle-base.com/articles/11g/automatic-memory-management-11gr1.php

Tuesday 17 September 2013

Oracle Listener Can't Start Error - Linux Error: 29: Illegal seek [SOLVED]

Hi Guys,

I'm want to share how to solve to Oracle Listener Error "Linux Error: 29: Illegal seek" .

This Error occur when starting listener on linux box.



This Listener must support to the remote connection also.
On the First, I checked on the /etc/hosts file.

If I configured to /etc/hosts file with " 127.0.0.1 localhost localhost.localdomain" (only one-line), I can start oracle listener as well.
But If I put other hostname for remote connection at /etc/hosts like "192.168.1.2 localhost localhost.localdomain" , I can't start listener anymore and got above error.

I tried a few changes on /etc/hosts. But It isn't working.
Then, I read at the oracle wiki about of listener. I decided to change the name at the listener.ora file.

So go to the listener file location .

 I changed as putting IP (192.168.1.2) at HOST.


Then, save the file and start the listener.

#lsnrctl start

It's working without any error. :)

>>

UTEE

Ref : http://docs.oracle.com/cd/E11882_01/network.112/e10836/listenercfg.htm


Wednesday 7 August 2013

VMware Error (Solved) : The attempted operation cannot be performed in the current state (Powered Off)

Hi Guys,

You may be face this error on ESXi server after deploy the vm image onto ESXi.

" The attempted operation cannot be performed in the current state (Powered Off)"

After convert the vm, you will try power-on to the vm image. But vm can't boot up and it's only show above error at the console. And you can't power-off to that vm image also. This may occur relatively snapshot of vm image.

Here I will show how to solve this error.

First, you need to power-off the vm, but you can't power off from vSphere or vCenter.
So login to the ESXi server via ssh.

And use the "esxtop" and need to find out the WID of that vm's process and kill it.
#esxtop
By default, esxtop won't show the WID, you need to enable in the feild order.
So Press "f"
and choose the WID feild and press "Enter".


Now it's showing WID at the esxtop field. And record the WID of your vm name.


And To kill the process, press "k" and put the WID of your vm then press enter . Now you can quit from the esxtop, Press "q". Check at the vSphere, you will be see your vm is already power off.

Now you need to go VM folder location, So browse the datastore, and find your vm image folder and browse it.


There, you will be found  "xxxxx.vmsd" file and delete it.


Now you can power-on the vm image again, It will up successfully without error. :)

>>

UTEE

Ref : http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1000959

Friday 2 August 2013

Google Authenticator !!!

Hi Guys..

Now a day, most of the service (gmail, facebook, dropbox, etc..) are provide secure authentication as know as verify to your authentication with verification code to secure to your account. In this case, some can be done to verify to your authentication/ to generate verify code with your smart phone ( iPhone, Andriod, etc..). Sample: Gmail : If you are active the google 2-setp authentication, Gmail will send the verification code with the SMS service to your phone to verify to your authentication when you login to your gmail on a browser. For the facebook, you can use the code generator which a feature of facebook app of your smart phone. But you will be limited access to use that services on some of the country and in a situation as without internet access.

So to be convenient in anytime and everywhere, I want to share the one of the smart phone app "google authenticator". This will provide you to code generator service as offline.

You can easily to download this app from app store and google play and very easy to setup and use.

Here, check out to setup the google authenticator for gmail ...
https://support.google.com/accounts/answer/1066447?hl=en

This is for facebook ..
http://andrew.kvalhe.im/how-to-set-up-google-authenticator-with-facebook/

And this one is for dropbox ..
http://www.iphoneincanada.ca/how-to/how-to-setup-dropbox-with-2-step-verification-and-google-authenticator/

And This google authentication can be use for other popular services.. 

-Amazon Web Services
-Microsoft account
-WordPress
-Evernote
and more ... check out here .. http://en.wikipedia.org/wiki/Google_Authenticator#Usage


I am highly recommend you to use this app, if you have smart phone... :)

 >>

UTEE


Ref : https://support.google.com/accounts/answer/1066447?hl=en
        http://en.wikipedia.org/wiki/Google_Authenticator#Usage


Friday 19 July 2013

DB2 972 x86_64 installaing on Centos 6.4 x86_64

I'll installing DB2 on Centos 6.4. Before start installation step, must follow below step:

Do update

#yum update

Install "libstdc++.so.6" Note: This 32bit library file is needed.

#yum install libstdc++.so.6

Disable the firewall,

#service iptables stop
#service ip6tables stop

I'm uploaded the DB2 tar.gz file under /mnt. and extract the file.

#cd /mnt
#tar xzvf db2.tar.gz

Now to start to install db2 execute the  "db2setup"

#cd  db2
#./db2setup

Then, it will pop-up the "DB2 Setup Launchpad".


You may be check the installation requirements by clicking on the "Installation Requirement".

To start the installation, click "Install a Product" and click "Install New".



Then, follow the instruction,  click "Next" , choose "Accept" and click "Next" .
At the Installation Type, choose the "Typical" , you can check the features as clicking " View Features"



At Installation action, choose default and click "Next"

Installation directory, leave by the default and click "Next"

 At SA MP section, I'm not need the SA MP, So choose "Do not install SA MP" and click "Next"


At "DAS user", specify the db2 user password, then click "Next"



Then, Instance Setup, choose "Create a DB instance" and click "Next"

At the partitioning options, choose default (Single partition instance) and click "Next" 

At Instance owning section, specify the password for instance owner, then click "Next"
 


And specify the password for fenced user and click "Next"


At Tools catalog, choose default (Do not prepare the tools catalog) and click "Next"

Then, you may be setup the smtp notification at "Notification setup" section, and click "Next"

After that, put the notification contact at "Contact" section and click "Next"

Finally, at the Summary, click "Finish"


Note:
After the installation, you must backup the "Summary" which will show the all of the specified data for db2 server installation. Summary file location is "/root/db2ese.rsp"

 Now server is installing.


Now DB2 server installation is finished.


 >>

UTEE


Ref : http://publib.boulder.ibm.com


Thursday 4 July 2013

FUNNY Linux COMMANDs ..

This is the Just Share What I founded a post of Funny Linux Commands ... :)

 

1. Command: sl (Steam Locomotive)

You might be aware of command ‘ls‘ the list command and use it frequently to view the contents of a folder but because of miss-typing sometimes you would result in ‘sl‘, how about getting a little fun in terminal and not “command not found“.

Install sl

root@tecmint:~# apt-get install sl 		(In Debian like OS)
root@tecmint:~# yum -y install sl 		(In Red Hat like OS)
Output
root@tecmint:~# sl
sl funny command
sl command
This command works even when you type ‘LS‘ and not ‘ls‘.

2. Command: telnet

No! No!! it is not as much complex as it seems. You would be familiar with telnet. Telnet is a text-oriented bidirectional network protocol over network. Here is nothing to be installed. What you should have is a Linux box and a working Internet.
root@tecmint:~# telnet towel.blinkenlights.nl
telnet command
telnet command

3. Command: fortune

what about getting your random fortune, sometimes funny in terminal.

Install fortune

root@tecmint:~# apt-get install fortune 	(for aptitude based system)
root@tecmint:~# yum install fortune 		(for yum based system)
root@tecmint:~# fortune

You're not my type.  For that matter, you're not even my species!!!
Future looks spotty.  You will spill soup in late evening.
You worry too much about your job.  Stop it.  You are not paid enough to worry.
Your love life will be... interesting.

4. Command: rev (Reverse)

It reverse every string given to it, is not it funny.
root@tecmint:~# rev

123abc 
cba321 

xuniL eb ot nrob
born to be Linux

5. Command: factor

Time for some Mathematics, this command output all the possible factors of a given number.
root@tecmint:~# factor

5 
5: 5 

12 
12: 2 2 3 

1001 
1001: 7 11 13 

5442134 
5442134: 2 2721067

6. Command: script

OK fine this is not a command and a script but it is nice.
root@tecmint:~# for i in {1..12}; do for j in $(seq 1 $i); do echo -ne $i×$j=$((i*j))\\t;done; echo;done 

1×1=1	
2×1=2	2×2=4	
3×1=3	3×2=6	3×3=9	
4×1=4	4×2=8	4×3=12	4×4=16	
5×1=5	5×2=10	5×3=15	5×4=20	5×5=25	
6×1=6	6×2=12	6×3=18	6×4=24	6×5=30	6×6=36	
7×1=7	7×2=14	7×3=21	7×4=28	7×5=35	7×6=42	7×7=49	
8×1=8	8×2=16	8×3=24	8×4=32	8×5=40	8×6=48	8×7=56	8×8=64	
9×1=9	9×2=18	9×3=27	9×4=36	9×5=45	9×6=54	9×7=63	9×8=72	9×9=81	
10×1=10	10×2=20	10×3=30	10×4=40	10×5=50	10×6=60	10×7=70	10×8=80	10×9=90	10×10=100	
11×1=11	11×2=22	11×3=33	11×4=44	11×5=55	11×6=66	11×7=77	11×8=88	11×9=99	11×10=110	11×11=121	
12×1=12	12×2=24	12×3=36	12×4=48	12×5=60	12×6=72	12×7=84	12×8=96	12×9=108	12×10=120	12×11=132	12×12=144

7. Command: Cowsay

An ASCII cow in terminal that will say what ever you want.

Install Cowsay

root@tecmint:~# apt-get install cowsay 		(for Debian based OS)
root@tecmint:~# yum install cowsay		(for Red Hat based OS)
Output
root@tecmint:~# cowsay I Love nix 

 ____________
< I Love nix >
 ------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
How about pipelineing ‘fortune command‘, described above with cowsay?
root@tecmint:~# fortune | cowsay 

 _________________________________________
/ Q: How many Oregonians does it take to  \
| screw in a light bulb? A: Three. One to |
| screw in the light bulb and two to fend |
| off all those                           |
|                                         |
| Californians trying to share the        |
\ experience.                             /
 -----------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
Note: ‘|‘ is called pipeline instruction and it is used where the output of one command needs to be the input of another command. In the above example the output of ‘fortune‘ command acts as an input of ‘cowsay‘ command. This pipeline instruction is frequently used in scripting and programming.
xcowsay is a graphical program which response similar to cowsay but in a graphical manner, hence it is X of cowsay.
apt-get insatll xcowsay
yum install xcowsay
Output
root@tecmint:~# xcowsay I Love nix
install xcowsay
xcowsay command
cowthink is another command just run “cowthink Linux is sooo funny” and see the difference in output of cowsay and cowthink.
apt-get insatll cowthink
yum install cowthink
Output
root@tecmint:~# cowthink ....Linux is sooo funny
 _________________________
( ....Linux is sooo funny )
 -------------------------
        o   ^__^
         o  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

8. Command: yes

It is funny but useful as well, specially in scripts and for System Administrators where an automated predefined response can be passed to terminal or generated.
root@tecmint:~# yes I Love Linux

I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
Note: (Till you interrupt i.e ctrl+c).

9. Command: toilet

what? Are u kidding, huhh no! Definitely not, but for sure this command name itself is too funny, and I don’t know from where this command gets it’s name.

Install toilet

root@tecmint:~# apt-get install toilet 
root@tecmint:~# yum install toilet
Output
root@tecmint:~# toilet tecmint 

mmmmmmm                        "             m                               
   #     mmm    mmm   mmmmm  mmm    m mm   mm#mm          mmm    mmm   mmmmm 
   #    #"  #  #"  "  # # #    #    #"  #    #           #"  "  #" "#  # # # 
   #    #""""  #      # # #    #    #   #    #           #      #   #  # # # 
   #    "#mm"  "#mm"  # # #  mm#mm  #   #    "mm    #    "#mm"  "#m#"  # # #
It even offers some kind of color and fonts style.
root@tecmint:~# toilet -f mono12 -F metal Tecmint.com
install toilet command
toilet command
Note: Figlet is another command that more or less provide such kind of effect in terminal.

10. Command: cmatrix

You might have seen Hollywood movie ‘matrix‘ and would be fascinated with power, Neo was provided with, to see anything and everything in matrix or you might think of an animation that looks alike Hacker‘s desktop.

Install cmatrix

root@tecmint:~# apt-get install cmatrix
root@tecmint:~# yum install cmatrix
Output
root@tecmint:~# cmatrix
cmatrix command
cmatrix command

11. Command: oneko

OK so you believe that mouse pointer of Linux is the same silly black/white pointer where no animation lies then I fear you could be wrong. “oneko“ is a package that will attach a “Jerry“ with you mouse pointer and moves along with you pointer.

Install cmatrix

root@tecmint:~# apt-get install oneko
root@tecmint:~# yum install oneko
Output
root@tecmint:~# oneko
install oneko
oneko command
Note: Once you close the terminal from which oneko was run, jerry will disappear, nor will start at start-up. You can add the application to start up and continue enjoying.

12. Fork Bomb

This is a very nasty piece of code. Run this at your own risk. This actually is a fork bomb which exponentially multiplies itself till all the system resource is utilized and the system hangs. (To check the power of above code you should try it once, but all at your own risk, close and save all other programs and file before running fork bomb).
root@tecmint:~# :( ){ :| :& }:

13. Command: while

The below “while” command is a script which provides you with colored date and file till you interrupt (ctrl + c). Just copy and paste the below code in terminal.
root@tecmint:~# while true; do echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
Linux while command
Linux while command
Note: The above script when modified with following command, will gives similar output but with a little difference, check it in your terminal.
root@tecmint:~# while true; do clear; echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done

14. Command: espeak

Just Turn the Knob of your multimedia speaker to full before pasting this command in your terminal and let us know how you felt listening the god’s voice.

Install espeak

root@tecmint:~# apt-get install espeak
root@tecmint:~# yum install espeak
Output
root@tecmint:~# espeak "Tecmint is a very good website dedicated to Foss Community"

15. Command: aafire

How about fire in your terminal. Just type “aafire” in the terminal, without quotes and see the magic. Press any key to interrupt the program.

Install aafire

root@tecmint:~# apt-get install libaa-bin
Output
root@tecmint:~# aafire
install aafire
aafire command

16. Command: bb

First install “apt-get insatll bb” and then, type “bb” in terminal and see what happens.
root@tecmint:~# bb
bb command
bb command

17. Command: url

Won’t it be an awesome feeling for you if you can update you twitter status from command line in front of your friend and they seems impressed. OK just replace username, password and your status message with your’s username, password and “your status message“.
root@tecmint:~# url -u YourUsername:YourPassword -d status="Your status message" http://twitter.com/statuses/update.xml

18. ASCIIquarium

How it will be to get an aquarium in terminal.
root@tecmint:~# apt-get install libcurses-perl
root@tecmint:~# cd /tmp 
root@tecmint:~# wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz
root@tecmint:~# tar -zxvf Term-Animation-2.4.tar.gz
root@tecmint:~# cd Term-Animation-2.4/
root@tecmint:~# perl Makefile.PL &&  make &&   make test
root@tecmint:~# make install
Install ASCIIquarium
Now Download and Install ASCIIquarium.
root@tecmint:~# cd /tmp
root@tecmint:~# wget http://www.robobunny.com/projects/asciiquarium/asciiquarium.tar.gz
root@tecmint:~# tar -zxvf asciiquarium.tar.gz
root@tecmint:~# cd asciiquarium_1.1/
root@tecmint:~# cp asciiquarium /usr/local/bin
root@tecmint:~# chmod 0755 /usr/local/bin/asciiquarium
And finally run “asciiquarium” or “/usr/local/bin/asciiquarium“ in terminal without quotes and be a part of magic that will be taking place in front of your eyes.
root@tecmint:~# asciiquarium
install aquarium
aquarium command

19. Command: funny manpages

First install “apt-get install funny-manpages” and then run man pages for the commands below. Some of them may be 18+, run at your own risk, they all are too funny.
baby
celibacy
condom
date
echo
flame
flog
gong
grope, egrope, fgrope 
party 
rescrog 
rm
rtfm
tm
uubp
woman (undocumented)
xkill 
xlart 
sex 
strfry
root@tecmint:~# man baby

20. Linux Tweaks

It is time for you to have some one liner tweaks.
root@tecmint:~# world

bash: world: not found
root@tecmint:~# touch girls\ boo** 

touch: cannot touch `girls boo**': Permission denied
root@tecmint:~# nice man woman

No manual entry for woman
root@tecmint:~# ^How did the sex change operation go?^ 

bash: :s^How did the sex change operation go?^ : substitution failed
root@tecmint:~# %blow 

bash: fg: %blow: no such job
root@tecmint:~# make love 

make: *** No rule to make target `love'.  Stop.
$ [ whereis my brain?                    
sh: 2: [: missing ]
% man: why did you get a divorce? 
man:: Too many arguments.
% !:say, what is saccharine? 
Bad substitute.
server@localhost:/srv$ \(- 
bash: (-: command not found
Linux is sexy: who | grep -i blonde | date; cd ~; unzip; touch; strip; finger; mount; gasp; yes; uptime; umount; sleep (If you know what i mean)
There are certain other but these don’t work on all the system and hence not included in this article. Some of them are man dog , filter, banner, etc.
Have fun, you can say me thanks later :) yup your comment is highly appreciated which encourages us write more. Tell us which command you liked the most. Stay tuned i will be back soon with another article worth reading.

Credit to  

 >>

UTEE


Ref : http://www.tecmint.com/20-funny-commands-of-linux-or-linux-is-fun-in-terminal/

Thursday 9 May 2013

VMware Hands on Labs Online – Beta ( VMware vCloud Infracture) !!! (Avaliable For Everybody)

Hi Guys,

I would like to share This VMware Hand-on Labs with you..
It is completely free but not for the whole vmware technologies.

But I'm think that you will be satisfied after you joined this labs.

Ok Let's go

1) Go to the this link ... http://communities.vmware.com/community/vmtn/resources/how

2) And Click on the "VMware Hands-on Labs – Public Beta Interest List"

3) On the next link click "next"


4) Then, fill the require information, then click "submit"


5) After that, you may be wait 1 or 2 day from their mail to set the password to access lab. After got the email from ProjectNee, set the password for your account and Join the labs... :)


6) After set the password for your account, go to this link and put your email address and password to get lab with your account https://www.projectnee.com/HOL/

7) Here, Now you can join the lab by action on "ENROLL" button.




 >>

UTEE


Ref : VMware, www.cloudcredibility.com

 

Monday 22 April 2013

HDD recovery and Greenergy ...

In February, One of the problem give me big headache .. HDD failure of one of critical system...

First... tried to restore DB from the backup... Oh God!!! Daily exporting DB not finished as well because of some of the rows are corrupted in the DB .. Exporting DB socket are auto stopped .. So backup DB is unusable..

The only way is, it going to repair to failed HDD .. I heard the sound "clicking clicking" from the HDD and can't detect from the BIOS. That HDD brand is SAMSUNG Model : HD160JJ/P. Then checked on the google with the HDD status and model number .. Most result are said that may be circuit problem.. Then I tried to repaired with changing the circuit of HDD but not successful.. Ok noway, It's need to send the recovery center..

I searched and phoned the recovery center in the singapore and oversea. And checked on some of the forum for the best... Most are recommended to Seagate Data Lab ... Yes it is the good one for recovery service.. but their center isn't available in Singapore, need to send US and price also a bit high.. The main is I need get back Data as fast as how we/they can. Ok reject to send US .. Then checked Local (Singapore) recovery service center, founded one , company name is "Greenergy Pte Ltd/International Technology System" .. Asked them for priority service .. They said all are going with the priority service .. and Price also not bad .. $1500 .. No Data, No Charges... Ok decided to go with their service.

Why I chooses to Greenergy?

  1. Free Diagnostic
  2. Free Cancellation
  3. No Data No Charge
  4. If Recovered Data is not Useful No Charge
  5. 100% Confidential with standard NDA
  6. Recovery from all media, file systems and OS
  7. Recovery lists presented for final acceptance before you pay
  8. Industry's highest customer satisfaction rate
  9. Most Advanced Technologies and Innovative Services
  10. 20,000 spare part harddisks, 800GB firmware database
  11. Recover data from manufacturer mode, class 100 clean room
  12. Guarantee the lowest price in Singapore
 Ok I send HDD to Greenergy and they responded the actual price and Status of HDD after diagnosis the HDD. HDD status is Read/Write Head spoiled and need to open the HDD in the 100 clean room. they asked to continuous/confirm with their service. We decided to go with their service ...

Wow only 2 and half day , They called to me It's ready to collect the DATA ... and recovering success 99.98% .... Great .. the Best service !!

Yes We got back all of our DATA... I don't know how can I say Thank You to them .. It's great ..

Ok I just shared what I have found the the best recovery service in Singapore ..

You Guys, If you need any recovery service, I want to recommend you to this Greenery Service ..

Here Their Contact .. :)

Greenergy Pte Ltd/International Technology System

Address: 6 Ubi Rd 1 #05-12 Wintech Centre
Singapore 408726 [Click for Location Map]
Next to Macpherson MRT(CC10)
Tel: 65-67461909, Fax: 65-67480019

or
http://www.its.com.sg/contact.asp
http://greenergy.com.sg/contact.asp

 >>

UTEE

Friday 25 January 2013

Proper way of Startup/Shutdown Oracle Database Instance (Solaris) ..

Guys.. I am not a DBA. I am just a SA. But SA role is related with Database environment also. And I think that every SA should know about basic of Database as like how to Start/Shutdown the database service properly.

Let's say.. you need to shutdown the Oracle Database server machine for your maintainance of hardware or other purpose. If you are going to shutdown the server before shutdown the database , Man .. It will be like that you find the risk by yourself and call phone to DBA .. :)

Ok .. Here is the start and shutdown process of the orcale database which is running on solaris .

Startup
If you are already login to solaris terminal with root , change to orcale user

#su - oracle

Enter the following command to start SQL Command Line

#sqlplus

It will ask to type user name type " / as sysdba"

#Enter user-name: / as sysdba
(note: you can use only one command to login SQL command line "#sqlplus / as sysdba" )

To start the database , type follow command : "STARTUP"

 SQL>STARTUP

And type "exit" for leave the sql command line.

SQL>exit

Then, Start the Oracle listener : (If Orcale Database is for remote clients, you will need this step)

#lsnrctl start
Shutdown
If you are already login to solaris terminal with root , change to orcale user

#su - oracle

Enter the following command to start SQL Command Line

#sqlplus

It will ask to type user name type " / as sysdba"

#Enter user-name: / as sysdba

To shutdown the database , type follow command : "SHUTDOWN IMMEDIATE"

SQL> SHUTDOWN IMMEDIATE

And type "exit" for leave the sql command line.

SQL>exit

Then, Stop the Oracle listener : (If you Orcale Database is for remote clients, you will need this step)

#lsnrctl stop

OK now switch back to root user and process to shutdown the solaris OS

#shutdown -y -g0 -i5

>>

UTEE

Ref :http://docs.oracle.com/cd/B25329_01/doc/admin.102/b25107/startup.htm


Tuesday 22 January 2013

Mouse Without Border ...

Guys..

Ok Let say, You are a busy guy, you have to control different OS with different monitors, which are on your small desk. If you are using one mouse and one keyboard for each OS, Do you think you will be convenience on your small desk? (that's my reson :P )

Here let me introduce two product that allow you to control so many computer by one pair of keyboard and mouse.....

1) Microsoft Garage Mouse Without Borders

"Mouse without Borders is a product that makes you the captain of your computer fleet by allowing you to control up to four computers from a single mouse and keyboard. This means that with Mouse without Borders you can copy text or drag and drop files across computers."


This will allow you to control between various of Microsoft OS Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows Vista, Windows XP. But This is support between only Microsoft OS Platforms.

you can download freely @ below link..

http://www.microsoft.com/en-us/download/details.aspx?id=35460


2) Synergy

"Synergy lets you easily share your mouse and keyboard between multiple computers on your desk, and it's Free and Open Source. Just move your mouse off the edge of one computer's screen on to another. You can even share all of your clipboards. All you need is a network connection. Synergy is cross-platform (works on Windows, Mac OS X and Linux)."

This is a alternative way of Microsoft Mouse Without Border But this will allow you to control between Microsoft OS, Linux or Mac.

http://synergy-foss.org/


Note: I want to recommend "Microsoft Mouse Without Border" if your OS are various of  Microsoft OS because it's allow you to copy, drag and drop a file via this product.



>>

UTEE


Ref :Microsoft / OpenSource / Forum







Sunday 20 January 2013

Solaris 10 Internet not working problem with Web Browser

Solaris 10 Internet not working problem with Web Browser

Problem is here ..

I configured the static IP on Solaris 10. And I tried to browse the website on browser of Solaris 10. But I can't browse any website on the browser.






So Tested the "nslookup" on terminal , It's ok.





Ping to Google IP, It's return back "alive".





 So I tried search on the google/forum for this problem.

"This is what i founded and that is the perfect answer for this problem."


Yes , There have two things that you may be forget when you setting up the IP configuration on Solaris .

1) Must be sure to add nameserver on /etc/resolv.conf



 2) And Most of the people are forget to put the entry called "dns" at behind of "hosts" line in the /etc/nsswitch.conf . I am also no idea to do this before  :P



Ok now you may be restart the network service or reboot the system.

#svcadm restart network/physical


>>

UTEE


Ref :Forums




Friday 18 January 2013

Configuration of Static IP on Solaris 10

Configuring the static ip on Solaris 10 is different with the other linux. You have to configure a few files.

Firstly you must know your interface name of your solaris. You can get your interface name with following command.

#dladm show-link


If your solaris is configured with the DHCP, you must delete file /etc/dhcp.interface (/etc/dhcp.e1000g0). Now you have to configure with below files :

/etc/hosts
/etc/hostname.interface
/etc/nodename
/etc/inet/hosts
/etc/inet/ipnodes
/etc/defaultrouter

Add the IP and hostname at /etc/hosts


Add IP and Netmask at /etc/hostname.interface (/etc/hostname.e1000g0)


Add the hostname at /etc/nodename , If nodename file isn't available at /etc by the default, create byself.


/etc/inet/hosts and /etc/inet/ipnodes will updated automatically if you updated your hostname on /etc/hosts. If not, add the same entries as /etc/hosts.

Add default gateway ip at /etc/defaultrouter, If defaultrouter file isn't available at /etc by the default, create byself.


Now, restart the Network service using following command or reboot the server for the changes to take effect.

# svcadm restart network/physical



 >>

UTEE

Ref: Forums