HOWTO: Gentoo for LinuxCNC: Difference between revisions

From OpenLunchbox Wiki
Jump to navigation Jump to search
Line 19: Line 19:
In a terminal, simply run:
In a terminal, simply run:


<syntaxhighlight lang="bash" line="1">
test
git clone https://github.com/NTULINUX/gentoo_backup.git
def quick_sort(arr):
 
less = []
cd gentoo_backup
pivot_list = []
 
more = []
git checkout linuxcnc
if len(arr) <= 1:
</syntaxhighlight>
return arr
else:
pass


== Running the installer ==
== Running the installer ==
__FORCETOC__
__FORCETOC__

Revision as of 21:51, 13 September 2023

Prerequisites

For using the installer, you must have the following:

  • btrfs-progs
  • dosfstools
  • e2fsprogs
  • f2fs-tools
  • GRUB
  • parted
  • xfsprogs

All of these are included in SystemRescue and it is strongly advised to use the latest version. Debian Bookworm also has the required versions of these tools but due to Debian's aggressive automounting, the installer script may fail. The installer is designed to handle all mounting and unmounting by itself.

A working internet connection is also required. This is not only to fetch the installer, but also because the installer downloads the required files for the Gentoo system.

Fetching the installer

In a terminal, simply run:

test

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass

Running the installer