Giter Site home page Giter Site logo

BtrFS support about packer-plugin-arm-image HOT 2 OPEN

thomastthai avatar thomastthai commented on September 18, 2024
BtrFS support

from packer-plugin-arm-image.

Comments (2)

jonathanmarchuot avatar jonathanmarchuot commented on September 18, 2024

This is also currently a headache of mine -- patching Ubuntu images that Libre Computer is publishing with btrfs supported. I would love to see btrfs resizing supported by the project in the future!

Currently, the way I've found around this, is by making sure your json gets rid of the "target_image_size", and then resize your source image prior to running packer.

truncate --size=+1400M ./original.img

sudo losetup --show -f -P ./original.img
#	'/dev/loop3'

sudo parted /dev/loop3
#	'print'
#		Disk /dev/loop3: 7213MB
#		part 2 end 2809MB size 2540MB
#
#      ((take the disk size '7213' above, then resize the partition to take the full space))
#	'resizepart 2'
#		End?  [2809MB]?
#		'7213MB'
#
#	'print'
#		Disk /dev/loop3: 7213MB
#		part 2 end 7213MB size 6944MB
#
#	'quit'

sudo mkdir -p /btrfs
sudo mount /dev/loop3p2 /btrfs

sudo btrfs filesystem resize max /btrfs
sudo btrfs filesystem show
sudo btrfs check --force /dev/loop3p2

sudo umount /btrfs
sudo losetup -d /dev/loop3

shasum -a 256 ./original.img

And then take your "new" original.img with your new shasum and run packer against that. Good luck!

from packer-plugin-arm-image.

thomastthai avatar thomastthai commented on September 18, 2024

@jonathanmarchuot, thanks for sharing your workaround!

Does your root partition come with btrfs as default?

For the Raspberry Pi Bookworm, I manually convert the factory image's root partion from ext4 to btrfs. I haven't found an automated way to do that conversion via Vagrant and Packer.

Are you doing the workaround manually or automated via code?

from packer-plugin-arm-image.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.