osom8979 / opm

OSOM PACKAGE MANAGER

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

OSOM PACKAGE MANAGER

License:MIT License


Languages

Language:Shell 43.2%Language:HTML 16.1%Language:C 11.1%Language:XSLT 10.3%Language:Python 7.4%Language:Vim Script 6.7%Language:Haskell 1.1%Language:Dockerfile 0.7%Language:JavaScript 0.7%Language:CMake 0.7%Language:PHP 0.5%Language:Batchfile 0.4%Language:Lua 0.4%Language:Vim Snippet 0.3%Language:Ruby 0.1%Language:Makefile 0.1%Language:Awk 0.1%