Links

Home arrow Articles arrow Operating Systems
Operating Systems
How to create a self signed SSL certificate in ubuntu PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

The following is an extremely simplified view of how SSL is implemented and what part the certificate plays in the entire process.

Normal web traffic is sent unencrypted over the Internet. That is, anyone with access to the right tools can snoop all of that traffic. Obviously, this can lead to problems, especially where security and privacy is necessary, such as in credit card data and bank transactions. The Secure Socket Layer is used to encrypt the data stream between the web server and the web client (the browser).

SSL makes use of what is known as asymmetric cryptography, commonly referred to as public key cryptography (PKI). With public key cryptography, two keys are created, one public, one private. Anything encrypted with either key can only be decrypted with its corresponding key. Thus if a message or data stream were encrypted with the server's private key, it can be decrypted only using its corresponding public key, ensuring that the data only could have come from the server.

If SSL utilizes public key cryptography to encrypt the data stream traveling over the Internet, why is a certificate necessary? The technical answer to that question is that a certificate is not really necessary - the data is secure and cannot easily be decrypted by a third party. However, certificates do serve a crucial role in the communication process. The certificate, signed by a trusted Certificate Authority (CA), ensures that the certificate holder is really who he claims to be. Without a trusted signed certificate, your data may be encrypted, however, the party you are communicating with may not be whom you think. Without certificates, impersonation attacks would be much more common.

Read more...
 
how to enable mod_rewrite in apache2.2 (debian/ubuntu) PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

In default installion of apache2.2 on debian never enable mod_rewrite default. So you may need to enable .

First install the apache2.2 with this command :
debian user please use “su” before start this process
ubuntu user please use “sudo su” before start this process

apt-get install apache2 (it will install apache 2.2)

on current debian system you can enable mod_rewrite with simple command

a2enmod rewrite

Read more...
 
How to add all unversioned files to svn linux commandline PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

Ensure you are in the checked out project folder, then issue this command.

You can then issue a svn commit.
Last Updated ( Monday, 25 July 2011 )
 
Save SVN+SSH Password on windows for tortoise SVN by generating and saving an SSH Key PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

You can use the Tortoise SVN software as a graphical front end to Subversion. Tortoise SVN is available for Windows computers and can be downloaded for free from their Web site:

http://tortoisesvn.tigris.org/

Installing and configuring Tortoise SVN is a fairly complex process and only recommended for advanced users. In particular, there are several different stages and programs involved, and you also need to be comfortable with using the command line.

These instructions assume that you want to configure Tortoise SVN on your Windows computer to connect to an SVN repository in your account on our server.

Read more...
 
How to count the number of files in a directory in linux PDF Print E-mail
Tag it:
Delicious
blogmarks
Stumble
Furl it!
Digg
YahooMyWeb
Technorati
User Rating: / 0

Replace the .ext with a * if you want to show all files.

The -i in grep is a case insensitive flag, remove it if you want to preserve case.


Last Updated ( Friday, 15 July 2011 )
 
<< Start < Prev 1 2 3 4 Next > End >>

Results 1 - 10 of 35