Vous êtes sur la page 1sur 13

LinuxBSDos.com <http://www.linuxbsdos.com/> * * * * Home <http://linuxbsdos.com/> About <http://www.linuxbsdos.com/about/> Contact <http://www.linuxbsdos.com/contact/> Sitemap <http://www.linuxbsdos.

com/sitemap/>

Subscribe <http://feeds2.feedburner.com/linuxbsdos> Guide to disks and disk partitions in Linux <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-in-li nux/> in Recommended Reading <http://www.linuxbsdos.com/category/recommended-reading/>, Tutorials/Tips <http://www.linuxbsdos.com/category/tutorialstips/> / on September 18, 2011 at 12:22 am / This article is an attempt to provide basic information about disk naming and partition numbering conventions, in non-technical terms, to those new to Linux. So, it's a Linux disk partition guide. I believe a basic understanding of all the aspects concerning how a disk is referenced and partitioned will put you in a better position to troubleshoot installation and disk-related problems. Basic information about partition tables and the difference between primary and logical partitions will be covered. *Hard Drive Naming Convention:* The first thing you need to know is there is no C drive or E drive in Linux. There are equivalents, but when you come across a reference to a hard drive in a modern Linux system, you will typically see something like /dev/sda, /dev/sdb, /dev/sdc, etc. The dev is short for device, and in this case, a block storage device. The sd is short for SCSI mass-storage driver. (SCSI stands for Small Computer System Interface.) For the rest of this article, the /dev/ will be dropped, so all references to hard drives and partitions will start with the last part only. The first hard drive detected by a Linux system carries the */sda/* label. In numerical terms, it is hard drive 0 (zero; counting begins from 0, not 1). The second hard drive is */sdb/*, the third drive, */sdc/*, and so on. In the screenshot below, there are two hard drives */sda/* and */sdb/*, detected by the installer. Partitions in Linux guide This screenshot comes from an installation process where three hard drives were attached to the system. 3 Partitions in Linux *Partition Tables:* A partition table describes the partitions of a hard drive or any storage device. And there are two standards for the layout of the partition table MBR (Master Boot Record) and GPT (GUID Partition Table). MBR, also know as ms-dos, is what you might call the first standard. GPT came much later. While MBR is still the most widely used partition table, it comes with two major limitations which led to the development of GPT. They are: 1. It does not allow the configuration of more than four main partitions. Those partitions are called primary partitions.

2. Disk partitions may not exceed 2TB The first limitation will be discussed in the next section. Nothing more will be written about the second in this article. *Partitions and Partition Numbering:* To install an operating system on a hard drive, it must first be subdivided into distinct storage units. Those storage units are called partitions. Under the MBR partitioning scheme, which is the default on virtually all Linux distributions, there are three different types of partitions Primary, Extended, and Logical. Extended, and Logical partitions will be discussed further down. With MBR, any partition that is not explicitly created as an extended or logical partition, is a primary partition. And, as stated earlier, there can be no more than four primary partitions. The screenshot below was taken from an installation process where four primary partitions were created. If you observe closely, you will see that the first primary partition is /sda/*1* and the last /sda/*4*. Unlike hard drives, partition numbers start from 1, not 0 (zero). Any space not allocated to the primary partitions, is shown as Free. But while it may be free, it is, however, unusable. And that is because as far as the system is concerned, that free space does not exist. Guide to Linux disk partitioning Debian So if you attempt to create another partition using the free space, the installer will throw up the type of error message shown in this image. The error message will always say, not enough free space, even when you know that there is space available. And it does not matter how much that free space is. It will be unusable. Linux Disk partition guide Error To get around the four primary partitions limit of the MBR partition table, the smart guys involved came up with the concept of an extended partition. By tagging a partition as an extended partition, it is then possible to create many more partitions under the extended partition. Those partitions are called logical partitions, and theoretically, there is no limit to the number of logical partitions that you can create. Note: Only one extended partition may be configured on a single hard drive. What the concept of extended partition brings to the table is illustrated in the screenshot below. You can see that there are three primary partitions (sda1, sda2 and sda3). And the fourth partition is an extended partition, which makes it possible to create more partitions (in this example, sda5, sda6 and sda7). Under an extended partition, you can have free space, and that free space is still usable. So you do not have to allocate all the available free space to the logical partitions of an extended partition. Extended and Logical Partitions Being able to create logical partitions comes in handy when you have to dual-boot with other operating systems like Windows, PC-BSD <http://www.linuxbsdos.com/2008/01/26/pc-bsd-operating-system/> or even another Linux distribution, especially if that other operating systems has used up three primary partitions. In the image below, which was taken while setting up a system to dual-boot Windows 7 and Fedora 15 (see how to dual-boot Fedora 15 and Windows 7 <http://www.linuxbsdos.com/2011/06/27/how-to-dual-boot-fedora-15-and-windows-7/> ), three Windows 7 partitions already exist on the target hard drive. That

meant there was just one primary partition to play with. Only by setting up the available free space as an extended partition, was it possible to install the system. What this also shows is that Linux can boot from a logical partition. Primary, logical partitions In the last two screenshots, the extended partitions were the last primary partitions (*/sda4/*). But it does not have to be. In this screenshot, for example, the extended partition is the second primary partition (*/sda2/*), and first logical partition number is still 5 (*/sda5/*). So whether an extended partition is the last primary partition or not, the logical partition number always starts with the number *5*. Linux disk partitioning guide Not all installation programs broadcast the presence of an extended partition. But if you know what to look for, you can tell if one exists. In the image below, for example, you can see the partition numbers go from 1, then 5, 6 and 7. The presence of partition number 5 and above, is the most obvious tell-tale sign of an extended partition. This image, by the way, was taken while installing Ubuntu <http://www.linuxbsdos.com/2008/02/21/ubuntu-linux/>. Linux disk partition guide Fedora *GPT:* As stated earlier, GPT, or GUID Partition Table, overcomes two limitations of the MBR scheme maximum of four primary partitions, and the 2TB limit to partition sizes. In the image below, for example, you can see that there are eight partitions, with about 45GB still available. The most important point to note here is that all eight partitions are primary partitions, as the concept of extended and logical partitions, is foreign to GPT. Linux disk partition guide Ubuntu With GPT, there can always be unallocated space at the end of existing partitions. And unlike the case with an MBR scheme that has no extended partition, that unallocated space can be used to create new or additional partitions, unless the maximum number of partitions possible with GPT has been reached. In the image below, for example, there are six partitions and a small unallocated space remaining. The unallocated space may be used to create a new partition. Linux disk partition guide Mint Currently, Chakra is the only Linux distribution that is configured to use GPT by default. You may read GPT disk partitioning guide for Chakra <http://www.linuxbsdos.com/2011/05/24/gpt-disk-partitioning-guide-for-chakra-201 1-4/> to see the steps involved. Fedora <http://www.linuxbsdos.com/2008/02/21/fedora/> 16, which is slated for release in early November 2011, will support GPT. Test installations of the first beta release show that GPT will be the default on standalone installations. In dual-boot setups, MBR will be used if there is an existing operating system installed on MBR partitions on the target disk. You may read feature preview of Fedora 16 installer <http://www.linuxbsdos.com/2011/08/08/feature-preview-of-fedora-16-installer/> and Fedora 16 KDE and GNOME alpha screenshots <http://www.linuxbsdos.com/2011/08/24/fedora-16-kde-and-gnome-3-alpha-screenshot s/> for a few screenshots of GPT partitions in Anaconda, the Fedora system installer.

<http://twitter.com/share> 17saves Save <http://delicious.com/save> To have articles like this delivered automatically to your Feed Reader or Inbox, subscribe via *RSS <http://www.linuxbsdos.com/feed/>* or *email <http://feedburner.google.com/fb/a/mailverify?uri=linuxbsdos&loc=en_US>*. Tags: disk partition <http://www.linuxbsdos.com/tag/disk-partition/>, gpt <http://www.linuxbsdos.com/tag/gpt/> Related articles: * Installation and disk partitioning guide for Ubuntu 13.10 <http://www.linuxbsdos.com/2013/10/25/installation-and-disk-partitioning-gui de-for-ubuntu-13-10/>Installation and disk partitioning guide for Ubuntu 13.10 <http://www.linuxbsdos.com/2013/10/25/installation-and-disk-partitioning-gui de-for-ubuntu-13-10/> * Triple-boot Windows 7, Ubuntu 12.10 and Fedora 18 on one HDD <http://www.linuxbsdos.com/2013/03/05/triple-boot-windows-7-ubuntu-12-10-and -fedora-18-on-one-hdd/>Triple-boot Windows 7, Ubuntu 12.10 and Fedora 18 on one HDD <http://www.linuxbsdos.com/2013/03/05/triple-boot-windows-7-ubuntu-12-10-and -fedora-18-on-one-hdd/> * Windows 7 disk partitioning annoyance <http://www.linuxbsdos.com/2012/11/18/windows-7-disk-partitioning-annoyance/ >Windows 7 disk partitioning annoyance <http://www.linuxbsdos.com/2012/11/18/windows-7-disk-partitioning-annoyance/ > * Semi-manual LVM disk partitioning guide for Fedora 18 <http://www.linuxbsdos.com/2013/02/08/semi-manual-lvm-disk-partitioning-guid e-for-fedora-18/>Semi-manual LVM disk partitioning guide for Fedora 18 <http://www.linuxbsdos.com/2013/02/08/semi-manual-lvm-disk-partitioning-guid e-for-fedora-18/> * No, availability is not security! <http://www.linuxbsdos.com/2013/01/17/no-availability-is-not-security/>No, availability is not security! <http://www.linuxbsdos.com/2013/01/17/no-availability-is-not-security/> * Usability, user-friendliness and the Linux desktop <http://www.linuxbsdos.com/2013/08/27/usability-user-friendliness-and-the-li nux-desktop/>Usability, user-friendliness and the Linux desktop <http://www.linuxbsdos.com/2013/08/27/usability-user-friendliness-and-the-li nux-desktop/> * How to dual-boot Fedora 18 and Windows 8 on 1 HDD, with GRUB in a PBR <http://www.linuxbsdos.com/2013/02/06/how-to-dual-boot-fedora-18-and-windows -8-on-one-hdd-with-grub-installed-in-a-pbr/>How to dual-boot Fedora 18 and Windows 8 on 1 HDD, with GRUB in a PBR <http://www.linuxbsdos.com/2013/02/06/how-to-dual-boot-fedora-18-and-windows -8-on-one-hdd-with-grub-installed-in-a-pbr/> * Multiboot Linux distributions from one USB key <http://www.linuxbsdos.com/2013/03/28/run-multiple-distribution-fron-one/>Mu ltiboot Linux distributions from one USB key <http://www.linuxbsdos.com/2013/03/28/run-multiple-distribution-fron-one/>

Digital Ocean SSD VPS Cloud Server droplets <https://www.digitalocean.com/?refcode=900fe177d075> Digital Ocean is a VPS/Cloud hosting provider. For just $5 per month, you can get yourself a Cloud server with 512 MB of RAM, 20 GB super-fast SSD, free snapshots, plus backups for a minimal fee. All via a simple graphical interface. And by signing up with this referral link <https://www.digitalocean.com/?refcode=900fe177d075>, you can help support this website. If you are reading this, your ad could also be occupying this space. Contact us <http://www.linuxbsdos.com/contact/> to make it happen. 17 Comments 1. Kalin Mandaliev says: September 18, 2013 at 1:40 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-16944> Great Tutorial! Congrats :) Is's very very useful. Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=16944#respond> 2. Abdulla says: May 17, 2013 at 10:45 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-16172> extremely well written and very very helpful post!!!! i had a serious confusion with the linux tree because i have been using windows all my life and couldn't convert my brain from C: to sda.__thanks a lot for this post..:D Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=16172#respond> 3. shirisha says: November 22, 2012 at 9:44 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-14565> Thank you for the excellent explanation of hard disk partitions. Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=14565#respond>

4. Donald says: October 18, 2012 at 3:22 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-14182> You're simply the best. You should think of writing a book on Linux. What ever subject, no meter how complicated, it seems you have the ability to get the message to the others Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=14182#respond> 5. JORGE says: August 17, 2012 at 8:32 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-13225> Me gusto mucho el artculo sobre las particiones y su desarrollo, es algo ms que aprend. Gracias ! Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=13225#respond> 6. Mark says: August 13, 2012 at 3:11 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-13187> Yup, this really is a fantastic article. It's so clear and concise. And the information covered is very useful. I wish there were more articles like this one. Thanks! Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=13187#respond> 7. Bertrand says: September 30, 2011 at 9:54 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-9543> Perfect, exactly what I search Thanks! Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=9543#respond>

8. Paul says: September 19, 2011 at 3:45 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-9456> Can you add information about UUID and disk labels please? Distributions are going the UUID route but you can get around ugly UUIDs by labeling your disks. Much appreciated. Thanks. Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=9456#respond> 9. alex_from_somewhere says: September 18, 2011 at 10:16 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-9441> In the 5th picture (counting the error message picture), you point to the free space and say its Free (and usable) space. But that's only true IF you made the extended partition bigger? Isn't it? Cause it's outside the extended partition Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=9441#respond> * finid <http://linuxbsdos.com/> says: September 18, 2011 at 3:16 pm <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions -in-linux/comment-page-1/#comment-9446> The free space in that image is under the extended partition. It might not be apparent, but it is. Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions -in-linux/?replytocom=9446#respond> o alex_from_somewhere says: September 19, 2011 at 4:16 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partit ions-in-linux/comment-page-1/#comment-9451> Hmm, ok, thanks!! I agree with Tom. Clear, short, easy tutorials like this are awesome! Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partit ions-in-linux/?replytocom=9451#respond>

10. tom says: September 18, 2011 at 9:17 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/comment-page-1/#comment-9439> This is the Best Article I have ever read on Partitions!! and I'm gonna spread it and use it to tech my friends! Thank You!!! This has helped me learn the key concepts in partitions, even though I have been using linux for past 4 years! Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-inlinux/?replytocom=9439#respond> * Gavin says: August 14, 2012 at 5:37 am <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions -in-linux/comment-page-1/#comment-13191> Yes, I agree totally, a brilliant explanation of partitioning drives, including starting out with the acronyms, and explanations of the words relating to those acronyms which are mostly omitted in other tutorials, and often leaves those new to a subject scratching their heads before they have completed the first paragraph. Reply <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions -in-linux/?replytocom=13191#respond>

Leave a Comment Click here to cancel reply. <http://www.linuxbsdos.com/2011/09/18/guide-to-disks-and-disk-partitions-in-linu x/#respond> Name (required) Email (will not be published) (required) Website Notify me of followup comments via e-mail Ad Subscribe by Email Sign up to automatically receive the latest articles and tutorials in your Inbox.

// Reach out & follow us * Follow us on TwitterTwitterFollow us on Twitter <https://twitter.com/finide> * Join a prestigious circleGoogle PlusJoin a prestigious circle <https://plus.google.com/u/0/110579644688120601671/posts> * Subscribe to our RSS FeedRSS FeedSubscribe to our RSS Feed <http://feeds2.feedburner.com/linuxbsdos> * Reach out to us via emailEmailReach out to us via email <mailto:contact@linuxbsdos.com>

For Hackers, pentesters & forensics pros NAS distributions <http://www.linuxbsdos.com/2013/07/27/pentesting-digital-forensics-and-hacking-d istributions/> Build yourself a NAS server NAS distributions <http://www.linuxbsdos.com/2013/07/27/network-attached-storage-nas-distributions /> Recent Comments * <http://www.linuxbsdos.com/2013/12/02/amazons-prime-air-drone-delivery-sound s-great-but-its-doa/comment-page-1/#comment-17382> Grant: <http://www.linuxbsdos.com/2013/12/02/amazons-prime-air-drone-delivery-sound s-great-but-its-doa/comment-page-1/#comment-17382> I live near a place called Sierra Trading Post. They have g * <http://www.linuxbsdos.com/2013/12/02/linux-deepin-needs-your-help-with-thedeepin-localization-project/comment-page-1/#comment-17381> deepin: <http://www.linuxbsdos.com/2013/12/02/linux-deepin-needs-your-help-with-thedeepin-localization-project/comment-page-1/#comment-17381> Thanks for your support linuxbsdos.com! * <http://www.linuxbsdos.com/2013/03/07/jolidrive-its-not-what-you-think/comme nt-page-1/#comment-17372> Nazia Khan: <http://www.linuxbsdos.com/2013/03/07/jolidrive-its-not-what-you-think/comme nt-page-1/#comment-17372> This is not available in android market. Any Suggestion plea * <http://www.linuxbsdos.com/2010/01/16/linux-mint-8-vs-ubuntu-9-10/comment-pa ge-3/#comment-17369> Best Bankruptcy Lawyer in San Antonio: <http://www.linuxbsdos.com/2010/01/16/linux-mint-8-vs-ubuntu-9-10/comment-pa ge-3/#comment-17369> While I havent played much with the latest version of Ubunt * <http://www.linuxbsdos.com/2012/06/06/how-to-dual-boot-linux-mint-13-cinnamo nmate-and-windows-7/comment-page-9/#comment-17364>

edugaya: <http://www.linuxbsdos.com/2012/06/06/how-to-dual-boot-linux-mint-13-cinnamo nmate-and-windows-7/comment-page-9/#comment-17364> works great, thanks!! Friendly Links DHgate Computers Electronics, Cell Phones & more <http://www.dhgate.com/> Upgrade from Windows 8 Close Windows, Open Doors <http://www.upgradefromwindows8.com/> Desktop & Server * * * * * * * * * * * * * * * * * ALT Linux <http://www.linuxbsdos.com/2009/12/23/alt-linux/> CentOS <http://www.linuxbsdos.com/2008/02/21/centos-linux/> Debian <http://www.linuxbsdos.com/2008/01/21/debian-linux/> Fedora <http://www.linuxbsdos.com/2008/02/21/fedora/> Foresight <http://www.linuxbsdos.com/2008/02/20/foresight-linux/> gNewSense <http://www.linuxbsdos.com/2008/08/28/gnewsense/> Knoppix <http://www.linuxbsdos.com/2008/02/21/knoppix-linux/> Linpus <http://www.linuxbsdos.com/2008/02/20/linpus-linux/> Mandriva <http://www.linuxbsdos.com/2008/02/20/mandriva-linux/> Mint <http://www.linuxbsdos.com/2008/05/12/linux-mint/> Pardus <http://www.linuxbsdos.com/2009/08/03/pardus/> Parsix <http://www.linuxbsdos.com/2008/02/21/parsix-linux/> PCLinuxOS <http://www.linuxbsdos.com/2009/03/22/pclinuxos/> Sabayon <http://www.linuxbsdos.com/2008/02/21/sabayon-linux/> Ubuntu <http://www.linuxbsdos.com/2008/02/21/ubuntu-linux/> Vine Linux <http://www.linuxbsdos.com/2010/03/01/vine-linux/> Zenwalk <http://www.linuxbsdos.com/2008/02/20/zenwalk-linux/> System/Network Admin * Clonezilla <http://www.linuxbsdos.com/2008/03/17/clonezilla-linux-system-admin-distro/> * GRML <http://www.linuxbsdos.com/2008/02/25/grml-linux-system-network-administrato r-distro/> * Parted Magic <http://www.linuxbsdos.com/2008/02/17/parted-magic-linux-distro/> * SystemRescueCd <http://www.linuxbsdos.com/2008/02/17/system-rescue-cd-linux-admin-tool/>

Mobile & Cloud * * * * * Android <http://www.linuxbsdos.com/2008/02/18/android-mobile-linux/> Bada <http://www.linuxbsdos.com/2010/02/16/bada/> LiMo <http://www.linuxbsdos.com/2008/01/21/limo/> MeeGo <http://www.linuxbsdos.com/2010/02/15/meego/> Symbian <http://www.linuxbsdos.com/2010/02/16/symbian/>

BSD Distros * DesktopBSD <http://www.linuxbsdos.com/2008/01/26/desktopbsd-operating-system/> * FreeBSD <http://www.linuxbsdos.com/2008/01/25/freebsd-operating-system/> * MirOS BSD <http://www.linuxbsdos.com/2008/03/17/miros-bsd-operating-system/> * NetBSD <http://www.linuxbsdos.com/2008/01/25/netbsd-operating-system/> * OpenBSD <http://www.linuxbsdos.com/2008/01/25/openbsd-operating-system/> * PC-BSD <http://www.linuxbsdos.com/2008/01/26/pc-bsd-operating-system/> * TrueBSD <http://www.linuxbsdos.com/2008/01/26/truebsd-operating-system/> Firewall & Router * Astaro Security Gateway <http://www.linuxbsdos.com/2008/02/16/astaro-linux-security-gateway/> * BackTrack <http://www.linuxbsdos.com/2008/02/17/backtrack-linux-security/> * ClearOS <http://www.linuxbsdos.com/2010/04/16/clearos/> * Devil-Linux <http://www.linuxbsdos.com/2008/02/16/devil-linux/> * Endian Firewall Community <http://www.linuxbsdos.com/2008/02/04/endian-linux-firewall/> * EnGarde Secure Linux <http://www.linuxbsdos.com/2008/02/04/engarde-secure-linux-firewall/> * Gibraltar <http://www.linuxbsdos.com/2008/02/16/gibraltar-linux-firewall/> * IPCop <http://www.linuxbsdos.com/2008/02/05/ipcop-linux-firewall/> * IPFire <http://www.linuxbsdos.com/2009/09/03/ipfire/> * NuFW.Live <http://www.linuxbsdos.com/2008/02/19/nufw-live-linux-authenticating-firewal l/> * pfSense <http://www.linuxbsdos.com/2008/02/26/pfsense/> * SmoothWall Express <http://www.linuxbsdos.com/2008/02/02/smoothwall-express-linux-firewall/> * Untangle Network Gateway <http://www.linuxbsdos.com/2008/02/03/untangle-network-gateway-linux-firewal l/> * Vyatta <http://www.linuxbsdos.com/2008/02/16/vyatta-linux-firewall-router/> * XORP <http://www.linuxbsdos.com/2008/04/14/xorp/> * Zentyal <http://www.linuxbsdos.com/2010/09/03/zentyal/> * Zeroshell <http://www.linuxbsdos.com/2008/04/14/zeroshell/> Recent Posts * Ready for a digital world where the OS is the browser? <http://www.linuxbsdos.com/2013/12/03/ready-for-a-digital-world-where-the-os -is-the-browser/> * How is the NSA breaking SSL?

<http://www.linuxbsdos.com/2013/12/03/how-is-the-nsa-breaking-ssl/> * Logging in by facial recognition on Linux Deepin 2013 <http://www.linuxbsdos.com/2013/12/03/logging-in-by-facial-recognition-on-li nux-deepin-2013/>Logging in by facial recognition on Linux Deepin 2013 <http://www.linuxbsdos.com/2013/12/03/logging-in-by-facial-recognition-on-li nux-deepin-2013/> * Deepin Terminal features split screens, search and ssh connections <http://www.linuxbsdos.com/2013/12/02/deepin-terminal-features-split-screens -search-and-ssh-connections/>Deepin Terminal features split screens, search and ssh connections <http://www.linuxbsdos.com/2013/12/02/deepin-terminal-features-split-screens -search-and-ssh-connections/> * Amazon's Prime Air drone delivery sounds great, but it's DoA <http://www.linuxbsdos.com/2013/12/02/amazons-prime-air-drone-delivery-sound s-great-but-its-doa/>Amazon's Prime Air drone delivery sounds great, but it's DoA <http://www.linuxbsdos.com/2013/12/02/amazons-prime-air-drone-delivery-sound s-great-but-its-doa/> * Linux Deepin needs your help with the Deepin Localization Project <http://www.linuxbsdos.com/2013/12/02/linux-deepin-needs-your-help-with-thedeepin-localization-project/>Linux Deepin needs your help with the Deepin Localization Project <http://www.linuxbsdos.com/2013/12/02/linux-deepin-needs-your-help-with-thedeepin-localization-project/> * How to replace Ufw with FirewallD on Linux Deepin 2013 <http://www.linuxbsdos.com/2013/12/01/how-to-replace-ufw-with-firewalld-on-l inux-deepin-2013/>How to replace Ufw with FirewallD on Linux Deepin 2013 <http://www.linuxbsdos.com/2013/12/01/how-to-replace-ufw-with-firewalld-on-l inux-deepin-2013/> * OpenMandriva Lx 2013.0 review <http://www.linuxbsdos.com/2013/11/30/openmandriva-lx-2013-0-review/>OpenMan driva Lx 2013.0 review <http://www.linuxbsdos.com/2013/11/30/openmandriva-lx-2013-0-review/> Popular Since Forever * How to dual-boot Ubuntu 12.04 and Windows 7 <http://www.linuxbsdos.com/2012/05/17/how-to-dual-boot-ubuntu-12-04-and-wind ows-7/> 538 comments * How to dual-boot Linux Mint 13 Cinnamon/MATE and Windows 7 <http://www.linuxbsdos.com/2012/06/06/how-to-dual-boot-linux-mint-13-cinnamo nmate-and-windows-7/> 315 comments * How to dual-boot Windows 7 and Ubuntu 11.04 <http://www.linuxbsdos.com/2011/05/22/how-to-dual-boot-windows-7-and-ubuntu11-04/> 136 comments * Dual-boot Windows 8 and Ubuntu 12.10 on UEFI hardware <http://www.linuxbsdos.com/2012/11/05/dual-boot-windows-8-and-ubuntu-12-10-o n-uefi-hardware/>

134 comments * Dual-boot Ubuntu 12.04 and Windows 7 on a computer with 2 hard drives <http://www.linuxbsdos.com/2012/07/23/dual-boot-ubuntu-12-04-and-windows-7-o n-a-computer-with-2-hard-drives/> 126 comments * Should the root account be disabled in Fedora 18? <http://www.linuxbsdos.com/2012/09/20/should-the-root-account-be-disabled-in -fedora-18/> 101 comments * PCLinuxOS 2010 review <http://www.linuxbsdos.com/2010/07/20/pclinuxos-2010-review/> 84 comments * Install Ubuntu 11.04 on external hard disk <http://www.linuxbsdos.com/2011/05/23/install-ubuntu-11-04-on-external-harddisk/> 84 comments * Dual-boot Linux Mint 11 and Windows 7 <http://www.linuxbsdos.com/2011/06/11/dual-boot-linux-mint-11-and-windows-7/ > 82 comments Menu * * * * Home <http://linuxbsdos.com/> About <http://www.linuxbsdos.com/about/> Contact <http://www.linuxbsdos.com/contact/> Sitemap <http://www.linuxbsdos.com/sitemap/> Search Categories

Vous aimerez peut-être aussi