Re: (X)(L)ubuntu (MATE) 16.04 LTS
Posted: Sun Apr 03, 2016 9:57 pm
New ubuntu MATE system info:


Support Forum
https://forum.hyperion-entertainment.com/
https://forum.hyperion-entertainment.com/viewtopic.php?t=3228
WHEW! It workedxeno74 wrote: OK, here are the installation instructions:
- Download the image from the following link: Amigaone_Ubuntu_16.04-Base-1.img.7z
- Decompress the downloaded image with 7-Zip
- Copy it with dd on Linux or with the USB image Tool on Windows to a USB flash drive.
--------SNIP--------
Great!mechanic wrote: WHEW! It worked
Good to know.mechanic wrote: I must have DL'd 200GB of all the other links and nothing would boot into X, base system only. This one worked for me.
Yes, you're right. You need a whole blank HD for the image. But ..... you could try to copy Ubuntu from the root partition on your USB flash drive to a partition on your hard disk.mechanic wrote: Now, , , I would like to dd this to a HD. It looks like I would need to have a blank HD formatted for MBR since the USBstick has two partitions on it. I mean it seems like you cannot simply add it to the backend of a drive that already has a distro on it as it would be adding two partitions in place of one. Am I making any sense here?
Code: Select all
cp -a * /media/ -- your name -- / -- partition on your hard disk --
Been busy with life stuff.zappa2009 wrote:
You can with dd copy the USB-Partition to the Harddisk.
First, please try sudo depmod -va and then you can load a kernel module with sudo modprobe kernel_module.mechanic wrote:Also, modprobe does not seem to work.
Any hints?
Many thanks for your explanation!mechanic wrote:The message 'systemd failed to start Load Kernel Modules' was caused by the file /etc/modules-load.d/cups-filters.conf.
It was trying to load 'lp', 'ppdev' and 'parport' modules which I can only guess do not have the drivers in the kernel and therefore could/would not load them. I blacklisted these, but that did not stop the message. I did comment # out these lines in the cups-filters.conf files which solved the problem.
The message 'systemd failed to START Load Kernel Modules' is very misleading.
Also in the cups-filters.conf file there is a line 'LOAD_LP_MODULE was 'yes' in /etc/default/cups'.
There is no cups file in /etc/default. I can only chalk this up to 'a new distro wierd crap'.
Thank you for the instructions.
xeno74 wrote: OK, here are the installation instructions:
Here you are.
- Download the image from the following link: Amigaone_Ubuntu_16.04-Base-1.img.7z
- Decompress the downloaded image with 7-Zip
- Copy it with dd on Linux or with the USB image Tool on Windows to a USB flash drive.
For example with Linux:
In my case /dev/sdh:Code: Select all
dd if=Amigaone_Ubuntu_16.04-Base-1.img of=disk drive ID
Code: Select all
dd if=Amigaone_Ubuntu_16.04-Base-1.img of=/dev/sdh
- The ROOT partition is very small (1.8GB). You can increase it with GParted if you like. I have a 64GB USB flash drive. I increased the ROOT partition to 58.36GB.
- Turn on the AmigaONE X1000 and press F to enter the CFE prompt. Insert the USB flash drive.
- Next enter the following at the CFE> prompt (pressing enter after each line):
I booted my X1000 with Debian before and I saw that the ROOT partition on the USB flash drive is /dev/sdd2.Code: Select all
setenv bootargs "root=the_ROOT_partition_on_your_usb_flash_drive quiet ro splash rootdelay=5"
In my case:
I use the stable longterm kernel 4.1.18 on my CF card to boot Ubuntu 16.04 on the USB flash drive. You can use an other kernel if you like.Code: Select all
setenv bootargs "root=/dev/sdd2 quiet ro splash rootdelay=5"
Code: Select all
boot -elf -noints -fatfs cf0:vmlinux-4.1
Ubuntu Xenial Xerus (development branch) Amigaone tty1
Amigaone login:- The login details are as follows:
Username of amigaone has the password amigaone- Please configure your network interface with DHCP with the following command:
You can figure out the correct network interface with /sbin/ifconfig -a.Code: Select all
sudo dhclient network_device
In my case:
Code: Select all
sudo dhclient enp6s5
- I installed the Lubuntu desktop with the following commands:
Code: Select all
sudo apt-get update
- [this will take some time to complete depending on the speed of your internet connection]Code: Select all
sudo apt-get install lubuntu-desktop
- After that shutdown your AmigaONE X1000 with:
We need a xorg.conf on this system so we have to copy zappa2009's radeon xorg.conf file to /etc/X11 on the ROOT partition of the USB flash drive with an other system.Code: Select all
sudo halt
Code: Select all
cp X.org.conf/Xorg.conf.radeon /media/_your_username_/_disk_id_of_the_partition_on_the_USB_flash_drive_/etc/X11/xorg.conf
- Turn on the AmigaONE X1000 and press F to enter the CFE prompt. Insert the USB flash drive.
- Next enter the following at the CFE> prompt (pressing enter after each line):
In my case:Code: Select all
setenv bootargs "root=the_ROOT_partition_on_your_usb_flash_drive quiet ro splash rootdelay=5"
Code: Select all
setenv bootargs "root=/dev/sdd2 quiet ro splash rootdelay=5"
Code: Select all
boot -elf -noints -fatfs cf0:vmlinux-4.1
- The Lubuntu login screen appears. Please login.
Username of amigaone has the password amigaone
You can figure out with lsblk where your thumb drive is.xeno74 wrote: I booted my X1000 with Debian before and I saw that the ROOT partition on the USB flash drive is /dev/sdd2.