Skip to content

osom8979/opm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d3f5265 · Nov 28, 2024
Oct 31, 2024
Nov 28, 2024
Jun 20, 2023
Jan 10, 2024
Aug 28, 2024
Feb 3, 2024
Feb 28, 2023
Dec 21, 2023
Jun 23, 2023
Feb 28, 2023
Apr 1, 2024
Apr 8, 2024
Apr 23, 2023
Feb 28, 2023
Jan 11, 2024
Jun 20, 2023

Repository files navigation

osom package manager

Install

git clone https://github.com/osom8979/opm.git ~/.opm
cd ~/.opm
bash ./install.sh

Oracle cloud init

Change your account password (The initial username is ubuntu):

sudo -s
passwd ubuntu
passwd root

Change username in cloud shell:

sudo -s
NEW_USERNAME=...
usermod -l ${NEW_USERNAME} ubuntu
groupmod -n ${NEW_USERNAME} ubuntu
usermod -d /home/${NEW_USERNAME} -m ${NEW_USERNAME}

Create swapfile in VM.Standard.E2.1.Micro instance:

sudo -s
fallocate -l 2GB /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
swapon -s
echo "/swapfile    none    swap    sw    0    0" >> /etc/fstab

License

See the LICENSE file for details. In summary, opm is licensed under the MIT license.