From owner-freebsd-questions@freebsd.org Tue Mar 1 12:41:43 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ED67ABD0A9 for ; Tue, 1 Mar 2016 12:41:43 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CCBB124E for ; Tue, 1 Mar 2016 12:41:40 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from kw.news4all.se (netlaser-2 [10.0.0.6]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id u21CfLQN008182; Tue, 1 Mar 2016 13:41:21 +0100 (CET) (envelope-from bah@bananmonarki.se) Subject: Re: boot code To: Polytropon References: <56D376F9.10207@bananmonarki.se> <20160228235850.5051e942.freebsd@edvax.de> <56D48D29.4060608@bananmonarki.se> <20160229194502.eebeabd6.freebsd@edvax.de> Cc: questions FreeBSD From: Bernt Hansson Message-ID: <56D58DF1.4060307@bananmonarki.se> Date: Tue, 1 Mar 2016 13:41:21 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 In-Reply-To: <20160229194502.eebeabd6.freebsd@edvax.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Mar 2016 12:41:43 -0000 On 2016-02-29 19:45, Polytropon wrote: > On Mon, 29 Feb 2016 19:25:45 +0100, Bernt Hansson wrote: >> On 2016-02-28 23:58, Polytropon wrote: >>> On Sun, 28 Feb 2016 23:38:49 +0100, Bernt Hansson wrote: >>>> Hello list! >>>> >>>> I need to get the boot code on a hdd. >>>> Tried boot0cfg and fdisk -B /dev/ada1 >>>> >>>> But upon a reboot choosing the hdd it just donĀ“t boot. >>> >>> The disk needs to have at least one partition that's marked >>> as active, if I remember correctly. This is the "old way" >>> of initializing it: >>> >>> # fdisk -BI /dev/ada1 >>> # bsdlabel -B -w ada0s1 >>> >>> Add "-b /boot/boot0" for the fdisk command if you need to >>> specify the boot code (normal boot or boot manager). >>> >>> If you want to use the whole disk as a "dedicated partition", >>> you can do this: >>> >>> # bsdlabel -w ada1 >>> # bsdlabel -e ada1 >>> set type "4.2BSD" for 'a' partition >>> make 'a' same size as 'c' >>> save >>> # newfs -m 0 -i 16384 -b 16384 -f 2048 -U -t enable -n disable -L ssdroot /dev/ada1a >>> # bsdlabel -B ada1 >>> >>> Adjust -i, -b and -f according to the expected usage. >>> But that's not a very kind way to deal with disks. :-) >>> >>> You should use gpart today. There is good documentation >>> in "man gpart", as well as those resources: >>> >>> http://www.wonkity.com/~wblock/docs/html/disksetup.html >>> >>> https://www.freebsd.org/doc/handbook/disks-adding.html >>> >>> http://www.freebsd.org/doc/handbook/geom-glabel.html >>> >>> Avoid MBR partitioning if possible - it's considered obsolete, >>> outdated, old-fashioned, stupid and lame. ;-) >>> >> Thank you but no cigar. >> >> The machine is amd64 10.2-R so my guess its gpt. > > 10.2 and amd64 doesn't exclude the use of MBR or dedicated. :-) > When using GPT, both fdisk and bsdlabel are quite useless. > (They are also obsolete as gpart can do MBR partitioning, too.) > > So in your case, the following approach should work: > > # gpart create -s gpt ada1 > # gpart add -t freebsd-boot -l gpboot -b 40 -s 512K ada1 > # gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada1 > > After installing the boot code, add data partions as desired: > > # gpart add -t freebsd-ufs -l gprootfs -b 1M -s ada1 > > Refer to: > > http://www.wonkity.com/~wblock/docs/html/disksetup.html#_the_new_standard_gpt > Tried GPT and it ask for bootcode and not booting, so MBR it is.