Sunday, March 11, 2012

Not able to see Hidden file due to virus infection

Performed the following Steps :-
1.Go to Start --> Run, then type Regedit
2. Navigate to the registry folder HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\
CurrentVersion\Explorer\Advanced\Folder\Hidden\SHO WALL
3. Find a key called CheckedValue.
4. Double Click CheckedValue key and modify it to 1. This is to show all the hidden files.)

Monday, February 13, 2012

Infrastructure Considerations for Cloud Computing


Introduction

As the cloud computing trend continues to gain momentum, it is likely that you will eventually consider outsourcing some of your IT operations to a cloud service provider. Before you do however, it is important to realize that the cloud comes with an entirely new set of challenges that you may not experience with a traditional on-premise datacenter. Since some of these challenges revolve around your network infrastructure, I wanted to take the opportunity to talk about how making use of cloud services may impact your network infrastructure.

Service Level Agreements

Most of the larger organizations impose Service Level Agreements (SLAs) on their IT staff for mission critical applications. For example an organization may have an SLA that requires E-mail to be available 99.999% of the time. This so called “five nines of availability” means that the service is only permitted to be unavailable for a maximum of five minutes per year.
My point is that if you are bound by a strict SLA for your mission critical applications, then it would not be in your best interest to outsource those applications to the cloud. The reason is simple. No cloud service provider can guarantee that your SLA will be met.
Don’t get me wrong. There are some cloud service providers that will agree to be bound by an SLA. Ultimately though, the chances that the provider will actually be able to adhere to the SLA are unrealistic. After all, your organization will be connecting to the service provider over the Internet. Neither you, the cloud service provider, or your ISP controls the entire Internet. Even if a cloud service provider is able to achieve 100% availability for a hosted application, an Internet failure could render the application inaccessible. If you read the fine print on the cloud provider’s SLA, it will most likely say that the cloud provider is not responsible for Internet outages.

Internet Redundancy

In the previous section, I explained how an Internet failure could render a hosted application or service inaccessible. It is currently impossible to completely avoid Internet failures, but you can sometimes use redundancy as a means of reducing the chances of an Internet related outage.
Of course simply having multiple Internet connections alone isn’t enough. The key to achieving effective redundancy is to acquire Internet service from multiple providers. Suppose for example that you had two separate broadband connections from the same Internet provider. If that provider experienced an outage then the outage would most likely affect both of your Internet connections, which would completely defeat the purpose of having redundant Internet connections.
In some cases it may be impossible to get Internet access from multiple providers. In those types of situations you must consider whether or not you should outsource anything to the cloud. For example, I live in a rural area that is serviced by a single “mom and pop” ISP who has a monopoly on the entire area. I couldn’t get service from a second provider even if I wanted to. Although I could get redundant connections from my current ISP, my ISP has an outage about once a week. As such, I would have to be out of my mind to outsource anything important to the cloud.
Admittedly, the biggest thing stopping me from using the cloud is that my ISP isn’t very reliable. But what if you are in a situation in which your ISP is reliable, but you can’t get service from a secondary ISP?
In a situation like that redundancy may still be beneficial even if you can only get service from a single ISP. If you have redundant Internet connections from a single service provider, those connections will not protect you in the event that your ISP has an outage. It will however, help to protect you against a hardware failure. For example, if an Internet router on your network were to fail, network hosts would still be able to reach the Internet though the redundant connection.

Latency

Another factor that you will have to take into account when you are considering whether or not to outsource services to the cloud is the inherent (and unpredictable) latency that comes with using a service over the Internet.
Lately, a lot of organizations have been using cloud storage. Doing so provides them with an unlimited, on demand storage pool. While there is no denying the benefits that cloud storage can provide, it is also worth noting that cloud storage does not currently provide the same level of performance that is available through on-premise storage solutions. Furthermore, because the storage pool is Internet based, the latency is somewhat unpredictable.
To give you a better idea of what I mean, consider my own situation. I work out of my home and most of the time my Internet connection performs fairly well. However, in the late afternoon I always notice my Internet connection getting slower as my neighbors start getting home from work. Sometimes the performance decreases to the point that my connection is borderline unusable.
Granted, I work from my home, but the same problem can occur in a corporate environment. Factors such as what the users are doing at a given moment and your ISPs overall capacity can lead to fluctuations in Internet performance, and these fluctuations can translate directly to latency if you are connected to a cloud storage pool.

Client Side Software

One last infrastructure requirement that I want to mention is client side software. If you are only using the cloud for Infrastructure as a Service (IAAS) as would be the case with cloud storage then the client software isn’t really an issue. However, if you are actually hosting applications in the cloud then the software that the clients use to interface with those applications needs to be reliable.
For example, I know someone who decided to use Microsoft Office Web App rather than having the expense of licensing Microsoft Office 2010 on all of their PCs. In case you are not familiar with Office Web App, it is a collection of free, Web-based versions of the Microsoft Office applications. These applications are designed to be accessible through a Web browser.
To make a long story short, the person in question ended up visiting a malicious Web site that used a virus to disable Internet Explorer. This caused them to not only lose access to the Internet, but also to the basic productivity applications that they use every day.
Even though this event didn’t occur within a corporate environment it very well could have. Not all cloud applications are browser based, but some are. Regardless of whether a cloud application is browser based or not though, it is critical that you take measures to preserve the integrity of whatever software the client computers use to access the hosted application.

Conclusion


In this article I have explained that although there are advantages to using cloud services, hosted services present a set of challenges that are often different from what one might experience in an on-premise deployment. As such, it is important to anticipate as many of these challenges as possible and to plan accordingly before you begin outsourcing resources to the cloud.

Sunday, May 8, 2011

LVM In Linux

LVM

For easier hard disk storage management, you can set up your system to use the Logical Volume Manager (LVM), creating LVM partitions that are organized into logical volumes to which free space is automatically allocated. Logical volumes provide a more flexible and powerful way of dealing with disk storage, organizing physical partitions into logical volumes in which you can easily manage disk space. Disk storage for a logical volume is treated as one pool of memory, though the volume may in fact contain several hard disk partitions spread across different hard disks. Adding a new LVM partition merely increases the pool of storage accessible to the entire system.












Using the LVM Commands :-

lvdisplay :- Display detailed information about logical volumes
lvcreate :- Create logical volumes
lvrename :- Rename a logical volume
lvextend :- Extend the size of a logical volume
lvreduce :-Reduce the size of a logical volume
lvremove :-Remove logical volumes
pvdisplay :- Display detailed information about LVM physical partition
pvcreate :-Create LVM physical partitions
pvremove :-Delete LVM physical partitions
vgdisplay :-Display detailed information about volume groups
vgreduce :-Remove physical partitions from a volume group
vgremove :-Delete a volume group
vgextend :-command adds a new partition to a logical group.

Process to create LVM

Change the partition name and no only according to your system . Remain follow the same process without any change to create lvm .
# fdisk /dev/sda
N
Press Enter
+10G
N
Press Enter
+10G
T
6 (Declare Partition No.)
8e
T
7 (Declare Partition No.)
8e
W
# partprobe /dev/sda
# pvcreate /dev/sda{6,7}
# vgcreate vg0 /dev/sda{6,7}
# lvcreate –L 5G –n /dev/vg0/a
# lvcreate –L 5G –n /dev/vg0/b
# mkfs.ext4 /dev/vg0/a
# mkfs.ext4 /dev/vg0/b
# mkdir /lvm;mkdir /lvm1;mkdir /lvm/lvm2
# mount /dev/vg0/a /lvm/lvm1
# mount /dev/vg0/b /lvm/lvm2
# vi /etc/fstab
/dev/vg0/a /lvm/lvm1 ext4 defaults 0 0
/dev/vg0/b /lvm/lvm2 ext4 defaults 0 0
# lvextend -L +5G /dev/vg0/a
# lvdisplay
# df –h
# resize2fs /dev/vg0/a 15G

Friday, December 10, 2010

NFS Server in Linux

NFS
NFS -> NFS stand for Network File Sharing
Using NFS you can share file on Network.NFS server allow us to share file on client side and vice-versa.
Using NFS server we can easily access any file and directory on client side.

Note -> Disabled Firewall

Note -> For NFS rpm you must need a rhel 5 DVD OR Yum configure
On your system OR an active internet connection to download
NFS rpm.
If Yum is configure on your system then login as a
Root and type,
< Yum -y install nfs* >
If you have a rhel 5 DVD then mount the DVD on any
Directory. For e.g., I mount a DVD on /mnt directory. Now login
As a root and type,
< rpm -ivh /mnt/Server/nfs* >

Now NFS package is installed on your system.

NFS works on Port number 2049/tcp -- To check Port number file is "/etc/services"
---------------------------------------------------------------------------
Server Side Configuration
On Server Side the configuration file is
< /etc/exports >
Open the /etc/exports file in any Linux editor. I suggest you open it in
VIM.
VI /etc/exports
File is blank. Now write in the file you want to share on the network for
End-Users.
For eg. I am sharing a /var/ftp/pub directory and /home directory. Enter the
these lines in /etc/exports file.

/var/ftp/pub *(ro,sync)
/home 10.10.1.20(ro,sync)

Now save & exit from file.
------------------------------------------------------------------------------------------
Here, in the /etc/exports file we write the share directory /var/ftp/pub
And in the front of we write {*(ro, sync} this mean that,

Asterisk (*) mean that you can share the /var/ftp/pub directory on all the
PC connected in the same network.

(ro) means that you have read only permission on /var/ftp/pub. You can change
{ro} to {rw).{rw} mean that you have read and write permission on
/var/ftp/pub/ directory.

(sync) stand for synchronization mean that accuracy in time to matching data.
If you want share a directory on a particular IP address then write the IP
of particular machine corresponding to the share directory.For eg
/home 10.10.1.20(ro,sync)
-----------------------------------------------------------------------------------------
After, configure the /etc/exports file restart the NFS services
service portmap restart
service nfs restart
PORTMAP -> The portmap service can be used with TCP wrappers' hosts access files (/etc/hosts.allow and /etc/hosts.deny) to control which remote systems are permitted to use RPC-based services on the server.
If you want to permanent restart NFS services during next reboot Use
Chkconfig portmap on
Chkconfig nfs on
--------------------------------------------------------------------------------------------
Now, if you want to know what you are sharing on server side, you can see it in two ways.
1. Open the /etc/exports file
2. Showmount -e 10.10.10.254 here 10.10.10.254 is server ip address.
--------------------------------------------------------------------------------------------
On Clint Side
On client side if you want to know that what is sharing from server side
login as root and type
showmount -e 10.10.10.254 server ip address result is look like this
/var/ftp/pub *(ro,sync)
/home 10.10.10.20(ro,sync)

If server gives you write permission on any share directory the mount the directory and you can
edit it. For eg
mount 10.10.10.254:/var/ftp/pub /mnt
ls /mnt
-----------------------------------------------------------------------------------------------

Monday, November 22, 2010

SAMBA SERVER IN LINUX

SAMBA SERVER
Samba Server -> It is basically used for sharing file and directory on windows and Linux machine. Using it you can share printers, files and directories on window machine and Linux machine.

Note -> Disabled Firewall

Note -> Before configuring the samba server first install the samba rpm package from using YUM or using rhel 5 DVD.

Using Yum -> yum -y install samba*

------------------------------------------------------------------------------
On Server Side

After installing of samba rpm, login as root and open the samba configuration file in editing mode. The configuration file is

vi /etc/samba/smb.conf

In /etc/samba/smb.conf file go to the line number 80 and edit it like that

host allow = 127. 192.168.1

Uncomment the line and leave it.


Now go to end of file and add these lines

[Test] # Here [Test] is shared filename of directory
comment # any thing you like
path=/home/linux # Here path is your shared directory
validuser=Michal # Michal is a user name through which you can access shared
directory on linux machine.
read list=Michal # Permission for reading directory for user Michal
write list=Michal # Permission for writing share director for user

Save & Exit.

Now add a user as you define in /etc/samba/smb.conf configuration file. Here I use Michal

useradd michal
smbpasswd -a michal

Set user password.Remeber here I use "smbpasswd" not "passwd" to set password for Michal.Becaue samba server has its own file to save user passwd.Samba server retrieved the passwd information from smbpasswd file.

And on linux machine you have to must a user password to access shared directory using samba. Without it you can’t login.

----------------------------------------------------------------------------
Here I suggest you add user before configuring the /etc/samba/smb.conf file.
-----------------------------------------------------------------------------

*****************************************************************************

On client Side

To download file

smbclint -L //192.168.1.254 /test -U michal

mget filname -------> to download

mput filename -------> to upload

On Window Machine

Open--> run and the server ip address

\\192.168.1.254 press enter.

You can see only Share file name not the shared directory name.

***************************************************************************

Saturday, May 15, 2010

Toughest Interview Question

Question 1 Tell me about yourself.


TRAPS: Beware, about 80% of all interviews begin with this “innocent” question. Many candidates, unprepared for the question, skewer themselves by rambling, recapping , their life story, delving into ancient work history or personal matters.
BEST ANSWER: Start with the present and tell why you are well qualified for the position. Remember that the key to all successful interviewing is to match your qualifications to what the interviewer is looking for. In other words you must sell what the buyer is buying. This is the single most important strategy in job hunting.
So, before you answer this or any question it's imperative that you try to uncover your interviewer's greatest need, want, problem or goal.
To do so, make you take these two steps:
1. Do all the homework you can before the interview to uncover this person's wants and needs (not the generalized needs of the industry or company)
2. As early as you can in the interview, ask for a more complete description of what the position entails. You might say: “I have a number of accomplishments I'd like to tell you about, but I want to make the best use of our time together and talk directly to your needs. To help me do, that, could you tell me more about the most important priorities of this position? All I know is what I (heard from the recruiter, read in the classified ad, etc.)”
Then, ALWAYS follow-up with a second and possibly, third question, to draw out his needs even more. Surprisingly, it's usually this second or third question that unearths what the interviewer is most looking for.

You might ask simply, "And in addition to that?..." or, "Is there anything else you see as essential to success in this position?:
This process will not feel easy or natural at first, because it is easier simply to answer questions, but only if you uncover the employer's wants and needs will your answers make the most sense. Practice asking these key questions before giving your answers, the process will feel more natural and you will be light years ahead of the other job candidates you're competing with.
After uncovering what the employer is looking for, describe why the needs of this job bear striking parallels to tasks you've succeeded at before. Be sure to illustrate with specific examples of your responsibilities and especially your achievements, all of which are geared to present yourself as a perfect match for the needs he has just described.

Question 2 What are your greatest strengths?
TRAPS: This question seems like a softball lob, but be prepared. You don't want to come across as egotistical or arrogant. Neither is this a time to be humble.
BEST ANSWER: You know that your key strategy is to first uncover your interviewer's greatest wants and needs before you answer questions. And from Question 1, you know how to do this.
Prior to any interview, you should have a list mentally prepared of your greatest strengths. You should also have, a specific example or two, which illustrates each strength, an example chosen from your most recent and most impressive achievements.
You should, have this list of your greatest strengths and corresponding examples from your achievements so well committed to memory that you can recite them cold after being shaken awake at 2:30AM.
Then, once you uncover your interviewer's greatest wants and needs, you can choose those achievements from your list that best match up.
As a general guideline, the 10 most desirable traits that all employers love to see in their
employees are:
1. A proven track record as an achiever...especially if your achievements match
up with the employer's greatest wants and needs.
2. Intelligence...management "savvy".
3. Honesty...integrity...a decent human being.
4. Good fit with corporate culture...someone to feel comfortable with...a team
player who meshes well with interviewer's team.
5. Likeability...positive attitude...sense of humor.
6. Good communication skills.
7. Dedication...willingness to walk the extra mile to achieve excellence.
8. Definiteness of purpose...clear goals.
9. Enthusiasm...high level of motivation.
10. Confident...healthy...a leader.

Question 3 What are your greatest weaknesses?
TRAPS: Beware - this is an eliminator question, designed to shorten the candidate list.
Any admission of a weakness or fault will earn you an “A” for honesty, but an “F” for the interview.

PASSABLE ANSWER: Disguise a strength as a weakness.
Example: “I sometimes push my people too hard. I like to work with a sense of urgency and everyone is not always on the same wavelength.”
Drawback: This strategy is better than admitting a flaw, but it's so widely used, it is
transparent to any experienced interviewer.
BEST ANSWER: (and another reason it's so important to get a thorough description of  your interviewer's needs before you answer questions): Assure the interviewer that you can think of nothing that would stand in the way of your performing in this position with excellence. Then, quickly review you strongest qualifications.

Example: “Nobody's perfect, but based on what you've told me about this position, I believe I' d make an outstanding match. I know that when I hire people, I look for two things most of all. Do they have the qualifications to do the job well, and the motivation to do it well? Everything in my background shows I have both the qualifications and a strong desire to achieve excellence in whatever I take on. So I can say in all honesty that I see nothing that would cause you even a small concern about my ability or my strong
desire to perform this job with excellence.”
Alternate strategy (if you don't yet know enough about the position to talk about such a
perfect fit):
Instead of confessing a weakness, describe what you like most and like least, making sure that what you like most matches up with the most important qualification for success in the position, and what you like least is not essential.
Example: Let's say you're applying for a teaching position. “If given a choice, I like to spend as much time as possible in front of my prospects selling, as opposed to shuffling paperwork back at the office. Of course, I long ago learned the importance of filing paperwork properly, and I do it conscientiously. But what I really love to do is sell (if your interviewer were a sales manager, this should be music to his ears.)

Question 4 Tell me about something you did – or failed to do – that you now feel a little ashamed of.
TRAPS: There are some questions your interviewer has no business asking, and this is one. But while you may feel like answering, “none of your business,” naturally you can’t. Some interviewers ask this question on the chance you admit to something, but if not, at least they’ll see how you think on your feet.
Some unprepared candidates, flustered by this question, unburden themselves of guilt from their personal life or career, perhaps expressing regrets regarding a parent,spouse, child, etc. All such answers can be disastrous.
BEST ANSWER: As with faults and weaknesses, never confess a regret. But don’t seem as if you’re stonewalling either.
Best strategy: Say you harbor no regrets, then add a principle or habit you practice regularly for healthy human relations.
Example: Pause for reflection, as if the question never occurred to you. Then say, “You know, I really can’t think of anything.” (Pause again, then add): “I would add that as a general management principle, I’ve found that the best way to avoid regrets is to avoid causing them in the first place. I practice one habit that helps me a great deal in this regard. At the end of each day, I mentally review the day’s events and conversations to
take a second look at the people and developments I’m involved with and do a doublecheck of what they’re likely to be feeling. Sometimes I’ll see things that do need more follow-up, whether a pat on the back, or maybe a five minute chat in someone’s office to make sure we’re clear on things…whatever.”
“I also like to make each person feel like a member of an elite team, like the Boston Celtics or LA Lakers in their prime. I’ve found that if you let each team member know you expect excellence in their performance…if you work hard to set an example yourself…and if you let people know you appreciate and respect their feelings, you wind up with a highly motivated group, a team that’s having fun at work because they’re striving for excellence rather than brooding over slights or regrets.”


Question 5 Why are you leaving (or did you leave) this position?
TRAPS: Never badmouth your previous industry, company, board, boss, staff,
employees or customers. This rule is inviolable: never be negative. Any mud you hurl
will only soil your suit.
Especially avoid words like “personality clash”, “didn’t get along”, or others which cast a
shadow on your competence, integrity, or temperament.
BEST ANSWER:
(If you have a job presently)
If you’re not yet 100% committed to leaving your present post, don’t be afraid to say so.
Since you have a job, you are in a stronger position than someone who does not. But
don’t be coy either. State honestly what you’d be hoping to find in a new spot. Of
course, as stated often before, you answer will all the stronger if you have already
uncovered what this position is all about and you match your desires to it.
(If you do not presently have a job.)
Never lie about having been fired. It’s unethical – and too easily checked. But do try to
deflect the reason from you personally. If your firing was the result of a takeover,
merger, division wide layoff, etc., so much the better.
But you should also do something totally unnatural that will demonstrate consummate
professionalism. Even if it hurts , describe your own firing – candidly, succinctly and
without a trace of bitterness – from the company’s point-of-view, indicating that you
could understand why it happened and you might have made the same decision
yourself.
Your stature will rise immensely and, most important of all, you will show you are healed
from the wounds inflicted by the firing. You will enhance your image as first-class
management material and stand head and shoulders above the legions of firing victims
who, at the slightest provocation, zip open their shirts to expose their battle scars and decry the unfairness of it all.
For all prior positions:
Make sure you’ve prepared a brief reason for leaving. Best reasons: more money,opportunity, responsibility or growth.

Question 6 The “Silent Treatment”
TRAPS: Beware – if you are unprepared for this question, you will probably not handle
it right and possibly blow the interview. Thank goodness most interviewers don’t employ
it. It’s normally used by those determined to see how you respond under stress. Here’s
how it works:
You answer an interviewer’s question and then, instead of asking another, he just stares
at you in a deafening silence.
You wait, growing a bit uneasy, and there he sits, silent as Mt. Rushmore, as if he
doesn’t believe what you’ve just said, or perhaps making you feel that you’ve unwittingly
violated some cardinal rule of interview etiquette.
When you get this silent treatment after answering a particularly difficult question , such
as “tell me about your weaknesses”, its intimidating effect can be most disquieting, even
to polished job hunters.
Most unprepared candidates rush in to fill the void of silence, viewing prolonged,
uncomfortable silences as an invitation to clear up the previous answer which has
obviously caused some problem. And that’s what they do – ramble on, sputtering more
and more information, sometimes irrelevant and often damaging, because they are
suddenly playing the role of someone who’s goofed and is now trying to recoup. But
since the candidate doesn’t know where or how he goofed, he just keeps talking,
showing how flustered and confused he is by the interviewer’s unmovable silence.
BEST ANSWER: Like a primitive tribal mask, the Silent Treatment loses all it power to
frighten you once you refuse to be intimidated. If your interviewer pulls it, keep quiet
yourself for a while and then ask, with sincere politeness and not a trace of sarcasm, “Is
there anything else I can fill in on that point?” That’s all there is to it.
Whatever you do, don’t let the Silent Treatment intimidate you into talking a blue streak,
because you could easily talk yourself out of the position.
Question 7 Why should I hire you?
 
TRAPS: Believe it or not, this is a killer question because so many candidates are
unprepared for it. If you stammer or adlib you’ve blown it.

BEST ANSWER: By now you can see how critical it is to apply the overall strategy of
uncovering the employer’s needs before you answer questions. If you know the
employer’s greatest needs and desires, this question will give you a big leg up over other
candidates because you will give him better reasons for hiring you than anyone else is
likely to…reasons tied directly to his needs.
Whether your interviewer asks you this question explicitly or not, this is the most
important question of your interview because he must answer this question favorably in
is own mind before you will be hired. So help him out! Walk through each of the position’s requirements as you understand them, and follow each with a reason why you
meet that requirement so well.
Example: “As I understand your needs, you are first and foremost looking for someone
who can manage the sales and marketing of your book publishing division. As you’ve
said you need someone with a strong background in trade book sales. This is where
I’ve spent almost all of my career, so I’ve chalked up 18 years of experience exactly in
this area. I believe that I know the right contacts, methods, principles, and successful
management techniques as well as any person can in our industry.”
“You also need someone who can expand your book distribution channels. In my prior
post, my innovative promotional ideas doubled, then tripled, the number of outlets selling
our books. I’m confident I can do the same for you.”
“You need someone to give a new shot in the arm to your mail order sales, someone
who knows how to sell in space and direct mail media. Here, too, I believe I have
exactly the experience you need. In the last five years, I’ve increased our mail order
book sales from $600,000 to $2,800,000, and now we’re the country’s second leading
marketer of scientific and medical books by mail.” Etc., etc., etc.,
Every one of these selling “couplets” (his need matched by your qualifications) is a
touchdown that runs up your score. IT is your best opportunity to outsell your
competition.

Question 8 Aren’t you overqualified for this position?
 
TRAPS: The employer may be concerned that you’ll grow dissatisfied and leave.
BEST ANSWER: As with any objection, don’t view this as a sign of imminent defeat.
It’s an invitation to teach the interviewer a new way to think about this situation, seeing
advantages instead of drawbacks.
Example: “I recognize the job market for what it is – a marketplace. Like any
marketplace, it’s subject to the laws of supply and demand. So ‘overqualified’ can be a
relative term, depending on how tight the job market is. And right now, it’s very tight. I
understand and accept that.”
“I also believe that there could be very positive benefits for both of us in this match.”
“Because of my unusually strong experience in ________________ , I could start to
contribute right away, perhaps much faster than someone who’d have to be brought
along more slowly.”
“There’s also the value of all the training and years of experience that other companies
have invested tens of thousands of dollars to give me. You’d be getting all the value of
that without having to pay an extra dime for it. With someone who has yet to acquire
that experience, he’d have to gain it on your nickel.”
“I could also help you in many things they don’t teach at the Harvard Business School.
For example…(how to hire, train, motivate, etc.) When it comes to knowing how to work
well with people and getting the most out of them, there’s just no substitute for what you
learn over many years of front-line experience. You company would gain all this, too.”
“From my side, there are strong benefits, as well. Right now, I am unemployed. I want
to work, very much, and the position you have here is exactly what I love to do and am
best at. I’ll be happy doing this work and that’s what matters most to me, a lot more that
money or title.”
“Most important, I’m looking to make a long term commitment in my career now. I’ve had
enough of job-hunting and want a permanent spot at this point in my career. I also know
that if I perform this job with excellence, other opportunities cannot help but open up for
me right here. In time, I’ll find many other ways to help this company and in so doing,
help myself. I really am looking to make a long-term commitment.”
NOTE: The main concern behind the “overqualified” question is that you will leave your
new employer as soon as something better comes your way. Anything you can say to
demonstrate the sincerity of your commitment to the employer and reassure him that
you’re looking to stay for the long-term will help you overcome this objection.

Question 9 Where do you see yourself five years from now?
 
TRAPS: One reason interviewers ask this question is to see if you’re settling for this
position, using it merely as a stopover until something better comes along. Or they
could be trying to gauge your level of ambition.
If you’re too specific, i.e., naming the promotions you someday hope to win, you’ll sound
presumptuous. If you’re too vague, you’ll seem rudderless.
BEST ANSWER: Reassure your interviewer that you’re looking to make a long-term
commitment…that this position entails exactly what you’re looking to do and what you do
extremely well. As for your future, you believe that if you perform each job at hand with
excellence, future opportunities will take care of themselves.
Example: “I am definitely interested in making a long-term commitment to my next
position. Judging by what you’ve told me about this position, it’s exactly what I’m looking
for and what I am very well qualified to do. In terms of my future career path, I’m
confident that if I do my work with excellence, opportunities will inevitable open up for
me. It’s always been that way in my career, and I’m confident I’ll have similar
opportunities here.”


Question 10 Describe your ideal company, location and job.
 
TRAPS: This is often asked by an experienced interviewer who thinks you may be
overqualified, but knows better than to show his hand by posing his objection directly.
So he’ll use this question instead, which often gets a candidate to reveal that, indeed, he
or she is looking for something other than the position at hand.
BEST ANSWER: The only right answer is to describe what this company is offering,
being sure to make your answer believable with specific reasons, stated with sincerity,
why each quality represented by this opportunity is attractive to you.
Remember that if you’re coming from a company that’s the leader in its field or from a
glamorous or much admired company, industry, city or position, your interviewer and his
company may well have an “Avis” complex. That is, they may feel a bit defensive about
being “second best” to the place you’re coming from, worried that you may consider
them bush league.
This anxiety could well be there even though you’ve done nothing to inspire it. You must
go out of your way to assuage such anxiety, even if it’s not expressed, by putting their
virtues high on the list of exactly what you’re looking for, providing credible reason for
wanting these qualities.
If you do not express genuine enthusiasm for the firm, its culture, location, industry, etc.,
you may fail to answer this “Avis” complex objection and, as a result, leave the
interviewer suspecting that a hot shot like you, coming from a Fortune 500 company in
New York, just wouldn’t be happy at an unknown manufacturer based in Topeka,
Kansas.


Question 11 Why do you want to work at our company?

 
TRAPS: This question tests whether you’ve done any homework about the firm. If you
haven’t, you lose. If you have, you win big.
BEST ANSWER: This question is your opportunity to hit the ball out of the park, thanks
to the in-depth research you should do before any interview.
Best sources for researching your target company: annual reports, the corporate
newsletter, contacts you know at the company or its suppliers, advertisements, articles
about the company in the trade press.

Question 12 What are your career options right now?

 
TRAPS: The interviewer is trying to find out, “How desperate are you?”
BEST ANSWER: Prepare for this question by thinking of how you can position yourself
as a desired commodity. If you are still working, describe the possibilities at your
present firm and why, though you’re greatly appreciated there, you’re looking for
something more (challenge, money, responsibility, etc.). Also mention that you’re
seriously exploring opportunities with one or two other firms.

If you’re not working, you can talk about other employment possibilities you’re actually
exploring. But do this with a light touch, speaking only in general terms. You don’t want
to seem manipulative or coy.


Question 13 Why have you been out of work so long?

 
TRAPS: A tough question if you’ve been on the beach a long time. You don’t want to
seem like damaged goods.
BEST ANSWER: You want to emphasize factors which have prolonged your job search
by your own choice.
Example: “After my job was terminated, I made a conscious decision not to jump on the
first opportunities to come along. In my life, I’ve found out that you can always turn a
negative into a positive IF you try hard enough. This is what I determined to do. I
decided to take whatever time I needed to think through what I do best, what I most want
to do, where I’d like to do it…and then identify those companies that could offer such an
opportunity.”
“Also, in all honesty, you have to factor in the recession (consolidation, stabilization, etc.)
in the (banking, financial services, manufacturing, advertising, etc.) industry.”
“So between my being selective and the companies in our industry downsizing, the
process has taken time. But in the end, I’m convinced that when I do find the right
match, all that careful evaluation from both sides of the desk will have been well
worthwhile for both the company that hires me and myself.


Question 14 Tell me honestly about the strong points and weak points of your boss (company, management team,
etc.)…

 
TRAPS: Skillfull interviewers sometimes make it almost irresistible to open up and air a
little dirty laundry from your previous position. DON’T
BEST ANSWER: Remember the rule: Never be negative. Stress only the good points,
no matter how charmingly you’re invited to be critical.
Your interviewer doesn’t care a whit about your previous boss. He wants to find out how
loyal and positive you are, and whether you’ll criticize him behind his back if pressed to
do so by someone in this own company. This question is your opportunity to
demonstrate your loyalty to those you work with.


Question 15 What good books have you read lately?

TRAPS: As in all matters of your interview, never fake familiarity you don’t have. Yet
you don’t want to seem like a dullard who hasn’t read a book since Tom Sawyer.
BEST ANSWER: Unless you’re up for a position in academia or as book critic for The
New York Times, you’re not expected to be a literary lion. But it wouldn’t hurt to have
read a handful of the most recent and influential books in your profession and on
management.
Consider it part of the work of your job search to read up on a few of these leading
books. But make sure they are quality books that reflect favorably upon you, nothing
that could even remotely be considered superficial. Finally, add a recently published
bestselling work of fiction by a world-class author and you’ll pass this question with flying
colors.


Question 16 Tell me about a situation when your work was
criticized.

 
TRAPS: This is a tough question because it’s a more clever and subtle way to get you
to admit to a weakness. You can’t dodge it by pretending you’ve never been criticized.
Everybody has been. Yet it can be quite damaging to start admitting potential faults and
failures that you’d just as soon leave buried.
This question is also intended to probe how well you accept criticism and direction.
BEST ANSWERS: Begin by emphasizing the extremely positive feedback you’ve gotten
throughout your career and (if it’s true) that your performance reviews have been
uniformly excellent.
Of course, no one is perfect and you always welcome suggestions on how to improve
your performance. Then, give an example of a not-too-damaging learning experience
from early in your career and relate the ways this lesson has since helped you. This
demonstrates that you learned from the experience and the lesson is now one of the
strongest breastplates in your suit of armor.
If you are pressed for a criticism from a recent position, choose something fairly trivial
that in no way is essential to your successful performance. Add that you’ve learned from
this, too, and over the past several years/months, it’s no longer an area of concern
because you now make it a regular practice to…etc.
Another way to answer this question would be to describe your intention to broaden your
master of an area of growing importance in your field. For example, this might be a
computer program you’ve been meaning to sit down and learn… a new management
technique you’ve read about…or perhaps attending a seminar on some cutting-edge
branch of your profession.
Again, the key is to focus on something not essential to your brilliant performance but
which adds yet another dimension to your already impressive knowledge base.


Question 17 What are your outside interests?
TRAPS: You want to be a well-rounded, not a drone. But your potential employer
would be even more turned off if he suspects that your heavy extracurricular load will
interfere with your commitment to your work duties.
BEST ANSWERS: Try to gauge how this company’s culture would look upon your
favorite outside activities and be guided accordingly.
You can also use this question to shatter any stereotypes that could limit your chances.
If you’re over 50, for example, describe your activities that demonstrate physical
stamina. If you’re young, mention an activity that connotes wisdom and institutional
trust, such as serving on the board of a popular charity.
But above all, remember that your employer is hiring your for what you can do for him,
not your family, yourself or outside organizations, no matter how admirable those
activities may be. 


Question 18 The “Fatal Flaw” question
 
TRAPS: If an interviewer has read your resume carefully, he may try to zero in on a
“fatal flaw” of your candidacy, perhaps that you don’t have a college degree…you’ve
been out of the job market for some time…you never earned your CPA, etc.
A fatal flaw question can be deadly, but usually only if you respond by being overly
defensive.
BEST ANSWERS: As every master salesperson knows, you will encounter objections
(whether stated or merely thought) in every sale. They’re part and parcel of the buyer’s
anxiety. The key is not to exacerbate the buyer’s anxiety but diminish it. Here’s how…
Whenever you come up against a fatal flaw question:
1. Be completely honest, open and straightforward about admitting the
shortcoming. (Showing you have nothing to hide diminishes the buyer’s
anxiety.)
2. Do not apologize or try to explain it away. You know that this supposed flaw
is nothing to be concerned about, and this is the attitude you want your
interviewer to adopt as well.
3. Add that as desirable as such a qualification might be, its lack has made you
work all the harder throughout your career and has not prevented you from
compiling an outstanding tack record of achievements. You might even give
examples of how, through a relentless commitment to excellence, you have
consistently outperformed those who do have this qualification.
Of course, the ultimate way to handle “fatal flaw” questions is to prevent them from
arising in the first place. You will do that by following the master strategy described in
Question 1, i.e., uncovering the employers needs and them matching your qualifications
to those needs.

Once you’ve gotten the employer to start talking about his most urgently-felt wants and
goals for the position, and then help him see in step-by-step fashion how perfectly your
background and achievements match up with those needs, you’re going to have one
very enthusiastic interviewer on your hands, one who is no longer looking for “fatal
flaws”.'


Question 19 How do you feel about reporting to a younger person (minority, woman, etc)?
TRAPS: It’s a shame that some interviewers feel the need to ask this question, but
many understand the reality that prejudices still exist among some job candidates, and
it’s better to try to flush them out beforehand.
The trap here is that in today’s politically sensitized environment, even a well-intentioned
answer can result in planting your foot neatly in your mouth. Avoid anything which
smacks of a patronizing or an insensitive attitude, such as “I think they make terrific
bosses” or “Hey, some of my best friends are…”
Of course, since almost anyone with an IQ above room temperature will at least try to
steadfastly affirm the right answer here, your interviewer will be judging your sincerity
most of all. “Do you really feel that way?” is what he or she will be wondering.
So you must make your answer believable and not just automatic. If the firm is wise
enough to have promoted peopled on the basis of ability alone, they’re likely quite proud
of it, and prefer to hire others who will wholeheartedly share their strong sense of fair
play.
BEST ANSWER: You greatly admire a company that hires and promotes on merit alone
and you couldn’t agree more with that philosophy. The age (gender, race, etc.) of the
person you report to would certainly make no difference to you.
Whoever has that position has obviously earned it and knows their job well. Both the
person and the position are fully deserving of respect. You believe that all people in a
company, from the receptionist to the Chairman, work best when their abilities, efforts
and feelings are respected and rewarded fairly, and that includes you. That’s the best
type of work environment you can hope to find.

CCNA Router Commands

CCNA Router Commands for the 640−607 exam (version 1.0)


BasicsEnter Privileged Exec Mode                                                          enable
Leave Privileged Exec Mode and go back to User Mode                         disable
Log out of the router, end the console session,same as exit command       exit
Log out of the router, end the console session, same as logout command  logout
Setup a basic configuration by answering questions                                  setup
Show the current configuration stored in RAM                                        show running−config
Show the startup configuration stored in NVRAM                                  show startup−config
Display IOS version (configuration register value is also displayed)          show version
Show IOS files stored in flash and available free space                            show flash
Save the current configuration into NVRAM                                      copy running−config startup−config
Use the startup configuration stored in NVRAM                                copy startup−config running−config
Load a saved configuration from a TFTP server into NVRAM              copy tftp running−config
Upgrade the IOS stored in flash from an image stored on a TFTP server copy tftp flash
Create a backup of router IOS and store it in a file on a TFTP server      copy flash tftp
Instruct the router to boot from a specific IOS image stored in flash       boot system flash [filename]
Instruct the router to boot from a specific IOS image stored on a TFTP server  boot system tftp [filename]
Enter Global Configuration Mode                                                       config terminal
Set a Message−of−the−day banner to be displayed before the user logs in to the router
banner motd # message #
Set a login message to be displayed before the user logs in to the router    banner login # message #
Set a banner to be displayed after the user logs in to the router                 banner exec # message #
(incoming is displayed with a reverse telnet connection, exec with all others) banner incoming # message #
Give the router a hostname (default is router)                                      hostname [name]
Disable DNS lookups (enabled by default)                                        no ip domain−lookup
Change the size of the history buffer (default is 10 commands)           terminal history size 20

PASSWORDS :-

Set a password for Privileged Exec Mode                     enable password [password]
Set an encrypted password for Privileged Exec Mode    enable secret [password]
Set password TELNET access                                       line vty 0 4
login                                                                               password [passwords]
Set a password for Console Port access                        line console 0 login password [passwords]

 INTERFACE CONFIGURATION:-

Configure the interface Ethernet 0                               interface e 0
Configure the first Serial interface                               interface s 0
Configure the second Token Ring interface                 interface t 1
Enable an interface                                                     no shutdown
Disable an interface                                                    shutdown
Set the clock rate on a DCE (make a router a DCE)  clock rate 64000
Set the bandwidth                                                      bandwidth 64
Display the status of an interface                                 show interface serial 1
Display DTE/DCE state                                             show controller serial 1
Set keepalive period                                                  keepalive 10
 
IP CONFIGURATION:-
Disable IP routing (IP routing is enabled by default)                no ip routing
Display IP routing table                                                          show ip route
Configure an interface with an IP address                               ip address 192.168.1.12 255.255.255.0
Enable RIP                                                                           router rip
                                                                                            network [network−address1] 
                                                                                            network [network−address2…]
Enable RIP Triggered updates (only send updates when routing table has changed instead of every 30 seconds)                                                                             ip rip triggered
Disable automatic route summarization                                 no auto−summary
Enable IGRP                                                                      router igrp [as−number]
                                                                                          network [network−address1]
                                                                                          network [network−address2…]
 

About Me

A Networking Media Copyright © 2010 Community is Customised by Steptotech