This is a work in progress, proceed with caution
- Install Proxmox 6.X iso I selected 2 drives in Raid 1 mirror
- Console/SSH into Proxmox
- nano /etc/apt/sources.list
| --- | |
| SPDX-License-Identifier: MIT | |
| path: "/tutorials/tutorial-template" | |
| slug: "tutorial-template" | |
| date: "2021-01-01" | |
| title: "A great Tutorial Template! :+1:" | |
| short_description: "This is a tutorial template, including metadata (the first few lines before the actual tutorial). Please fill in as much as possible. If you don't know what to put somewhere, just leave it empty, the Community manager will fill it for you." | |
| tags: ["Development", "Lang:Go", "Lang:JS"] | |
| author: "Your Name" | |
| author_link: "https://github.com/....." |
| <template> | |
| <UInput | |
| v-model="q" | |
| name="q" | |
| placeholder="Search..." | |
| icon="i-heroicons-magnifying-glass-20-solid" | |
| :ui="{ icon: { trailing: { pointer: '' } } }" | |
| > | |
| <template #trailing> | |
| <div class="flex items-center gap-0.5"> |
| # Nuxt 3 + Tailwind + Flowbite Setup With pnpm | |
| 1. Create a new Nuxt project | |
| ```bash | |
| npx nuxi init <project-name> | |
| ``` | |
| 1.1 Enable CorePack |
| <template> | |
| <section class="bg-white dark:bg-gray-900 dark:text-white"> | |
| <div | |
| class="mx-auto max-w-screen-xl px-4 py-4 sm:py-6 sm:px-6 lg:py-16 lg:px-8" | |
| > | |
| <!-- <div class="mx-auto max-w-lg text-center"> | |
| <h2 class="text-3xl font-bold sm:text-4xl">Kickstart your marketing</h2> | |
| <p class="mt-4 text-gray-500 dark:text-gray-300"> | |
| Lorem ipsum, dolor sit amet consectetur adipisicing elit. Consequuntur |
| #!/bin/bash | |
| # Removes old revisions of snaps | |
| # CLOSE ALL SNAPS BEFORE RUNNING THIS | |
| set -eu | |
| LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' | | |
| while read snapname revision; do | |
| snap remove "$snapname" --revision="$revision" | |
| done |
| #!/bin/bash | |
| # Ask for the project name | |
| echo "Enter your new project name:" | |
| read projectname | |
| # Create directory and navigate into it |
| Note : Proxmox 6.1 | |
| VI : /etc/apt/sources.list | |
| # security updates | |
| deb http://security.debian.org jessie/updates main contrib | |
| # PVE pve-no-subscription repository provided by proxmox.com, | |
| # NOT recommended for production use | |
| deb http://download.proxmox.com/debian jessie pve-no-subscription |
| #/bin/bash | |
| ## taking.kr (webmaster@taking.kr) | |
| ## 2019-06-11 | |
| ########################################### | |
| read -p "hostname (ex taking.kr): " uhost | |
| read -p "new username: " uname | |
| read -p "$uname's Password: " upasswd | |
| encrypt_pass=$(perl -e 'print crypt($ARGV[0], "password")' $upasswd) | |
| ############ nameserver setting ############### |