February 28 2021

Debian 9,10 rc.local

Setup script:

#!/bin/bash

echo ‘[Unit]
Description=/etc/rc.local
ConditionPathExists=/etc/rc.local

[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99

[Install]
WantedBy=multi-user.target’ > /etc/systemd/system/rc-local.service

echo ‘#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will “exit 0” on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

exit 0’ > /etc/rc.local

chmod +x /etc/rc.local
systemctl enable rc-local

https://www.adminsehow.com/2019/10/how-to-add-rc-local-in-debian-9-10/
https://www.troublenow.org/752/debian-10-add-rc-local/

Category: Uncategorized | Comments Off on Debian 9,10 rc.local
June 18 2020

Restoring/Converting an MBR system to UEFI/GPT with Macrium

Boot Macrium Recovery USB/CD

diskpart
list disk
select disk 0
clean
convert gpt
create partition efi size=200
format fs=fat32
create partition msr size=128

You may have to also

create partition primary
format fs=ntfs quick

Refresh disks/images

Restore your imaged C/data drive to the new system disk/partition and run tools/fix windows boot

https://knowledgebase.macrium.com/pages/viewpage.action?pageId=23396929

Category: Uncategorized | Comments Off on Restoring/Converting an MBR system to UEFI/GPT with Macrium