This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar) | |
CTMCorePlugin (CTM-MC1.12-0.2.3.12.jar) | |
MalisisCorePlugin (malisiscore-1.12.2-6.4.0.jar) | |
LoadingPlugin (RandomThings-MC1.12.2-4.1.2.jar) | |
MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.1.133.jar) | |
CoreMod (Aroma1997Core-1.12.2-2.0.0.0.b142.jar) | |
FmlLoadingPlugin (multihotbarcore-1.12.2-1.0.1-build-T22.jar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar) | |
CTMCorePlugin (CTM-MC1.12-0.2.3.12.jar) | |
MalisisCorePlugin (malisiscore-1.12.2-6.4.0.jar) | |
LoadingPlugin (RandomThings-MC1.12.2-4.1.2.jar) | |
MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.1.133.jar) | |
CoreMod (Aroma1997Core-1.12.2-2.0.0.0.b142.jar) | |
FmlLoadingPlugin (multihotbarcore-1.12.2-1.0.1-build-T22.jar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar) | |
CTMCorePlugin (CTM-MC1.12-0.2.3.12.jar) | |
MalisisCorePlugin (malisiscore-1.12.2-6.4.0.jar) | |
LoadingPlugin (RandomThings-MC1.12.2-4.1.2.jar) | |
MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.1.133.jar) | |
LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar) | |
CoreMod (Aroma1997Core-1.12.2-2.0.0.0.b142.jar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
########################################################################################################## | |
# modules | |
#--------------------------------------------------------------------------------------------------------# | |
# Disabling these modules can greatly change how the mod functions. | |
# Your mileage may vary, please report any issues. | |
########################################################################################################## | |
modules { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
address=https://ilo.mysite.com:34043 | |
username=Administrator | |
password=******** | |
session_key=$( | |
curl -fsS \ | |
--insecure \ | |
"$address/json/login_session" \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://askubuntu.com/questions/505446/how-to-install-ubuntu-14-04-with-raid-1-using-desktop-installer | |
# http://askubuntu.com/questions/660023/how-to-install-ubuntu-14-04-64-bit-with-a-dual-boot-raid-1-partition-on-an-uefi%5D | |
sudo -s | |
apt-get -y install mdadm | |
apt-get -y install grub-efi-amd64 | |
sgdisk -z /dev/sda | |
sgdisk -z /dev/sdb | |
sgdisk -n 1:0:+100M -t 1:ef00 -c 1:"EFI System" /dev/sda | |
sgdisk -n 2:0:+8G -t 2:fd00 -c 2:"Linux RAID" /dev/sda |