diff options
| author | Andrew Donnellan <ajd@linux.ibm.com> | 2025-12-10 13:23:51 +1100 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-12-11 12:46:30 +0000 |
| commit | aa371f5c19d1696ae176d1a6a41cb239049b4584 (patch) | |
| tree | 1bc99f825667d55d42c4f310a170face4a097b93 /docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md | |
| parent | 6e13aafc1c8faa2d69e07224cb67ce5ee0ac9d36 (diff) | |
tools/create-image.sh: update default Debian release to trixie
Debian bullseye is now oldoldstable, so update the default release to
trixie.
While we're at it, update documentation references to old Debian releases
to match.
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Diffstat (limited to 'docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md')
| -rw-r--r-- | docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md b/docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md index f5cde0fd5..cd8cca733 100644 --- a/docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md +++ b/docs/linux/setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md @@ -1,6 +1,6 @@ # Setup: Ubuntu host, VirtualBox vm, x86-64 kernel -These are the instructions on how to fuzz the x86-64 kernel in VirtualBox with Ubuntu on the host machine and Debian Bullseye in the virtual machines. +These are the instructions on how to fuzz the x86-64 kernel in VirtualBox with Ubuntu on the host machine and Debian Trixie in the virtual machines. In the instructions below, the `$VAR` notation (e.g. `$GCC`, `$KERNEL`, etc.) is used to denote paths to directories that are either created when executing the instructions (e.g. when unpacking GCC archive, a directory will be created), or that you have to create yourself before running the instructions. Substitute the values for those variables manually. @@ -16,15 +16,15 @@ Install debootstrap: sudo apt-get install debootstrap ``` -To create a Debian Bullseye Linux user space in the $USERSPACE dir do: +To create a Debian Trixie Linux user space in the $USERSPACE dir do: ``` sudo mkdir -p $USERSPACE -sudo debootstrap --include=openssh-server,curl,tar,gcc,libc6-dev,time,strace,sudo,less,psmisc,selinux-utils,policycoreutils,checkpolicy,selinux-policy-default,firmware-atheros,open-vm-tools --components=main,contrib,non-free bullseye $USERSPACE +sudo debootstrap --include=openssh-server,curl,tar,gcc,libc6-dev,time,strace,sudo,less,psmisc,selinux-utils,policycoreutils,checkpolicy,selinux-policy-default,firmware-atheros,open-vm-tools --components=main,contrib,non-free trixie $USERSPACE ``` Note: it is important to include the `open-vm-tools` package in the user space as it provides better VM management. -To create a Debian Bullseye Linux VMDK do: +To create a Debian Trixie Linux VMDK do: ``` wget https://raw.githubusercontent.com/google/syzkaller/master/tools/create-gce-image.sh -O create-gce-image.sh @@ -103,4 +103,4 @@ Syzkaller will create full clone VMs from the `debian` VM and then use ssh to co The `debian` VM will not be started and its disk will remain unmodified. If you get issues after `syz-manager` starts, consider running it with the `-debug` flag. -Also see [this page](/docs/troubleshooting.md) for troubleshooting tips.
\ No newline at end of file +Also see [this page](/docs/troubleshooting.md) for troubleshooting tips. |
