Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| ivarstead [2023/12/05 16:07] – admin | ivarstead [2023/12/10 13:30] (current) – [References] admin | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| * Settings \ Appearance \ Auto-hide the Dock | * Settings \ Appearance \ Auto-hide the Dock | ||
| * Settings \ Privacy \ Screen \ Automatic Screen Lock | * Settings \ Privacy \ Screen \ Automatic Screen Lock | ||
| + | |||
| + | ===== DATA1 ===== | ||
| + | - Delete existing partitions | ||
| + | - Write changes | ||
| + | - Create new partion(s) | ||
| + | - Write changes | ||
| + | - Initialise physical volume for LVM | ||
| + | - Create Volume Group | ||
| + | - Create Logical Volume, using 100% of FREE space | ||
| + | - Make the filesystem | ||
| + | - Add a line to fstab | ||
| + | - Mount all drives | ||
| + | |||
| + | < | ||
| + | fdisk /dev/sdc | ||
| + | pvcreate /dev/sdc1 | ||
| + | vgcreate vgdata /dev/sdc1 | ||
| + | lvcreate -l 100%FREE -n lvdata_1 vgdata | ||
| + | mkfs.ext4 / | ||
| + | mkdir /data1 | ||
| + | nano /etc/fstab | ||
| + | mount -a | ||
| + | </ | ||
| ===== AnyDesk ===== | ===== AnyDesk ===== | ||
| Line 39: | Line 62: | ||
| curl -fsSL https:// | curl -fsSL https:// | ||
| </ | </ | ||
| + | |||
| + | Some apps install from the app store but most seem to be better installed by docker-compose build and imported into CasaOS. | ||
| ==== MariaDB ==== | ==== MariaDB ==== | ||
| Line 91: | Line 116: | ||
| Icon: https:// | Icon: https:// | ||
| - | ==== sgx-software-enable ==== | + | ===== Trellis / Sage ===== |
| + | Install Brew and dependencies | ||
| + | < | ||
| + | /bin/bash -c " | ||
| + | (echo; echo 'eval " | ||
| + | eval " | ||
| + | sudo apt-get install build-essential | ||
| + | brew install gcc | ||
| + | </ | ||
| + | |||
| + | ==== Install VirtualBox ==== | ||
| + | Add repo | ||
| + | < | ||
| + | sudo nano / | ||
| + | </ | ||
| + | Add this line: | ||
| + | deb [arch=amd64 signed-by=/ | ||
| + | |||
| + | < | ||
| + | wget -O- https:// | ||
| + | sudo apt-get install virtualbox | ||
| + | </ | ||
| + | |||
| + | ==== Install Trellis and dependencies ==== | ||
| + | |||
| + | < | ||
| + | sudo apt-get install -y python3 python-is-python3 python3-pip | ||
| + | python -m pip install --user virtualenv | ||
| + | brew install roots/ | ||
| + | curl https:// | ||
| + | npm install --global yarn | ||
| + | </ | ||
| + | |||
| + | Create project | ||
| + | < | ||
| + | trellis new --name seanys.com --host seanys.com ./ | ||
| + | </ | ||
| + | |||
| + | ==== Install Sage and dependencies ==== | ||
| + | |||
| + | < | ||
| + | sudo apt install php-xmlwriter | ||
| + | sudo apt install composer | ||
| + | cd seanys.com/ | ||
| + | composer create-project roots/sage Back-To-Basics | ||
| + | yarn | ||
| + | nano bud.config.js | ||
| + | </ | ||
| + | |||
| + | ===== snap store ===== | ||
| + | Disabled, but thinking about removal. | ||
| + | < | ||
| + | sudo systemctl disable snapd.service | ||
| + | sudo systemctl disable snapd.socket | ||
| + | sudo systemctl disable snapd.seeded.service | ||
| + | sudo systemctl mask snapd.service | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== sgx-software-enable | ||
| < | < | ||
| git clone https:// | git clone https:// | ||
| Line 100: | Line 184: | ||
| ===== References ===== | ===== References ===== | ||
| + | [[https:// | ||
| + | |||
| [[https:// | [[https:// | ||
| Line 105: | Line 191: | ||
| [[https:// | [[https:// | ||
| + | |||
| + | [[https:// | ||
| [[https:// | [[https:// | ||