
Linux is one of the three major operating systems but it has a very tiny market share in personal computer, comparing to that of Microsoft Windows and Apple MacOS. If you have always been using Windows or Mac, you may be curious about these users of Linux and want to know why they love using this unpopular operating system. Well, let me introduce the main different types of Linux users to you:
Hackers and Programmers
Linux is unarguably the heaven of programmers and hackers. In every Linux distribution, there are a lot of pre-installed tools and applications for programming like text editors and IDE software’s. Besides, to use Linux, the user will have to use the terminal and command line and popular programming languages like C, Python and Perl all the time. And if one chooses to use advanced distribution like Arch Linux or Gentoo, he will have to learn everything about how the computer works, how to configure all the hardware and software settings … and by doing so, he will accumulate a lot of experience and knowledge to help him in hacking and programming.
Practical people and business owners
Since almost everything in Linux is totally free and has nearly the same features as Windows or Mac, people who are financially practical love to use Linux. These people have recognized the economical value of Linux and like the fact that they do not have to pay any cent to upgrade the system or use the applications as they would do when using Windows or Mac. And because of this reason, there is no doubt that more and more business owners are using Linux. It’s also a good way to save money to invest into something else. Besides, there are a lot of accounting and finance applications in Linux as well.
Server administrators
Fix the problem with seeing them secure sites (banks or online stores) u found this very usefull to me at ur work
Any way… what u need to do is make a new notepad file and write in it the followng DLL’s.. just copy-paste these
and save it as > all file types, and make it something like securefix.bat.
then just run the file and ur problem shuld be gone.

Every device connected to the Internet needs its own IP address. In IPv4, there is a theoretical maximum of 4,294,967,296 IP addresses (that’s about 4.2Billion), which might seem like a high number, but when you count the fact that we are 6.5 Billion people on Earth and that every piece of telecommunications equipment related to Internet connectivity needs its own IP addresses, it is not enough, especially since some of this space is used for routing and sub-netting purposes.
Again, in theory, IPv6 allows 3.4x10exp38 addresses – that’s 340,282,366,920,938,463,463,374,607,431,770,000,000addresses, which is a very large number indeed!
It means that every human on Earth could in theory use 5x10exp28, that’s roughly 50,000,000,000,000,000,000,000,000,000 IP addresses – which is enough for your home computer, your laptop, your mobile phone, your PDA, your robot, and virtually anything electronic around you.
If we want to connect the next billion Internet users, we will need IPv6.
IPv6 uses 128 bit addresses expressed in hexadecimal numbers (with letters not case-sensitive), represented in 8 groups and separated by colons, for example:
2001:0db8:85a3:0000:0000:8a2e:0370:7334
It’s rather long, so this address can be shortened, by removing the leading zeros in each group:
2001:db8:85a3:0:0:8a2e:370:7334
One instance of one or any number of consecutive groups of 0 value may be replaced with a single set of two colons (::):
2001:db8:85a3::8a2e:370:7334
Note that this substitution with double-colon may be performed only once in an address, because multiple occurrences would lead to ambiguity.
At first glance, shortening addresses might be confusing, but once you get the hang of it, it’s quite simple.
The localhost address, 0000:0000:0000:0000:0000:0000:0000:0001 can be written simply as ::1
IPv4 addresses can be written in IPv6 notation by writing the address in hexadecimal format in the last four groups of an IPv6 address, preceded by a “ffff”.
For example, 192.168.10.1 can be written as ::ffff:c0a8:a01 which really is: 0000:0000:0000:0000:0000:ffff:c0a8:0a01