From 9e3334d75f4f6eee4011ff337e630cf7b71f8fc8 Mon Sep 17 00:00:00 2001
From: MacRimi You can upload custom loaders from the local storage options:
Follow the on-screen steps to complete the DSM installation.
viostor folder contains storage drivers, and you'll find subfolders organized by version (e.g., Windows 10, 11, Server).
NetKVM folder and selecting the correct subfolder for your Windows version.
You will be presented with a list of your LXC containers to choose from.
-The script applies the following changes to your container:
diff --git a/web/app/docs/help-info/page.tsx b/web/app/docs/help-info/page.tsx index c6b0658..66955d1 100644 --- a/web/app/docs/help-info/page.tsx +++ b/web/app/docs/help-info/page.tsx @@ -97,7 +97,7 @@ export default function HelpAndInfoPage() {The installation process will look like this:
@@ -83,7 +83,7 @@ export default function BasicSettingsPage() {
Example usage:
dialog --title "Hello" --msgbox "Hello, World!" 10 20
@@ -103,7 +103,7 @@ export default function BasicSettingsPage() {
To start htop, simply type:
htop
@@ -113,7 +113,7 @@ export default function BasicSettingsPage() {
To start btop, type:
btop
@@ -123,7 +123,7 @@ export default function BasicSettingsPage() {
To start iftop (requires root):
iftop
@@ -133,7 +133,7 @@ export default function BasicSettingsPage() {
To start iotop (requires root):
siotop
@@ -155,7 +155,7 @@ export default function BasicSettingsPage() {
To start iptraf-ng:
iptraf-ng
@@ -212,7 +212,7 @@ export default function BasicSettingsPage() {
@@ -383,3 +383,4 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony
ProxMenux
@@ -252,7 +252,7 @@ systemctl enable --now pve-ha-lrm pve-ha-crm corosync
Proxmox
@@ -260,7 +260,7 @@ systemctl enable --now pve-ha-lrm pve-ha-crm corosync
Helper-Scripts
@@ -268,7 +268,7 @@ systemctl enable --now pve-ha-lrm pve-ha-crm corosync
Home-Labs-Club
@@ -276,7 +276,7 @@ systemctl enable --now pve-ha-lrm pve-ha-crm corosync
Proxmology
@@ -336,7 +336,7 @@ echo "clear && fastfetch" >> ~/.bashrc
)
}
+
diff --git a/web/app/docs/post-install/performance/page.tsx b/web/app/docs/post-install/performance/page.tsx
index bf9760e..fef5175 100644
--- a/web/app/docs/post-install/performance/page.tsx
+++ b/web/app/docs/post-install/performance/page.tsx
@@ -139,3 +139,4 @@ export default function PerformanceSettingsPage() {
- This guide explains how to assign physical disks to virtual machines (VMs) in Proxmox VE using ProxMenux. - Disk passthrough allows a VM to have direct access to a physical disk, providing improved performance and compatibility for certain applications. + This guide explains how to assign a dedicated physical disk to a container (CT) in{" "} + Proxmox VE using ProxMenux. Assigning a full disk to a container is useful + when you need isolation, ease of access, or the ability to move the disk between systems, especially for + services handling large volumes of data such as Samba, Nextcloud, or video surveillance software, among others.
- -The script automates the following steps:
+ ++ While it's more common to passthrough entire disks to virtual machines (VMs), there are scenarios where giving + full disk access to an LXC container can be very useful. +
+ ++ As you can see, there are many different use cases where assigning a physical disk directly to a CT is the ideal + solution. +
+ +
- The script scans the system and displays a list of available physical disks, excluding the system disk.
+The user selects the destination LXC container (CT) to which the disk will be assigned.
The user selects the virtual machine (VM) to which the disk(s) will be assigned.
++ The script lists all physical disks, excluding those used by the system. It also displays metadata like ZFS, + LVM, and RAID, and shows warnings if the disk is already in use. +
+ The script performs the following actions:
/mnt/disk_passthrough).
+ The script verifies the operation and confirms the successful disk passthrough.
++ The selected disk is mounted inside the container at the specified path, and permissions are set + automatically. +
Important:
++ The container must be privileged to allow direct read/write access to the physical disk. +
+
+
The script scans the system and displays a list of available physical disks, excluding the system disk.
The user selects the virtual machine (VM) to which the disk(s) will be assigned.
+
The script performs the following actions:
edition.
Access the Utilities section in ProxMenux and select "UUP Dump ISO Creator".
tags
+ // Convert ### headers to bold text
+ .replace(/^### (.+)$/gm, "**$1**")
+ // Convert ** bold ** to simple bold
+ .replace(/\*\*(.*?)\*\*/g, "$1")
+ // Clean code blocks - remove ``` and format nicely
.replace(/```[\s\S]*?```/g, (match) => {
const code = match.replace(/```/g, "").trim()
- return `${code}
`
+ return `\n${code}\n`
})
- // Convert - bullet points to - tags
- .replace(/^- (.+)$/gm, "
- $1
")
- // Wrap consecutive - tags in
- .replace(/(- .*?<\/li>\s*)+/g, (match) => `
${match}
`)
- // Convert double newlines to
for paragraphs
- .replace(/\n\n/g, "
")
+ // Convert - bullet points to •
+ .replace(/^- /gm, "• ")
+ // Clean up multiple newlines
+ .replace(/\n{3,}/g, "\n\n")
+ // Remove backslashes used for line breaks
+ .replace(/\\\s*$/gm, "")
// Clean up extra spaces
.replace(/\s+/g, " ")
.trim()
@@ -74,7 +75,7 @@ async function parseChangelog(): Promise {
currentEntry = {
version,
date,
- url: `https://proxmenux.com/changelog#${version}`,
+ url: `https://macrimi.github.io/ProxMenux/changelog#${version}`,
title: `ProxMenux ${version}`,
}
} else if (dateMatch) {
@@ -82,7 +83,7 @@ async function parseChangelog(): Promise {
currentEntry = {
version: date,
date,
- url: `https://proxmenux.com/changelog#${date}`,
+ url: `https://macrimi.github.io/ProxMenux/changelog#${date}`,
title: `ProxMenux Update ${date}`,
}
}
@@ -114,13 +115,13 @@ async function parseChangelog(): Promise {
export async function GET() {
const entries = await parseChangelog()
- const siteUrl = "https://proxmenux.com"
+ const siteUrl = "https://macrimi.github.io/ProxMenux"
const rssXml = `
-
+
ProxMenux Changelog
- Latest updates and changes in ProxMenux - An Interactive Menu for Proxmox VE Management
+ Latest updates and changes in ProxMenux
${siteUrl}/changelog
en-US
@@ -133,7 +134,7 @@ export async function GET() {
(entry) => `
-
${entry.title}
-
+ 1000 ? entry.content.substring(0, 1000) + "..." : entry.content}]]>
${entry.url}
${entry.url}
${new Date(entry.date).toUTCString()}
diff --git a/web/components/footer.tsx b/web/components/footer.tsx
index b765fe5..6a0dc37 100644
--- a/web/components/footer.tsx
+++ b/web/components/footer.tsx
@@ -22,7 +22,7 @@ export default function Footer() {
className="hover:opacity-90 transition-opacity flex items-center"
>
)
}
+
diff --git a/web/components/footer2.tsx b/web/components/footer2.tsx
index 02ba795..f10e72a 100644
--- a/web/components/footer2.tsx
+++ b/web/components/footer2.tsx
@@ -19,7 +19,7 @@ export default function Footer() {
className="hover:opacity-90 transition-opacity"
>
)
}
+
diff --git a/web/components/hero2.tsx b/web/components/hero2.tsx
index 3680566..b471f34 100644
--- a/web/components/hero2.tsx
+++ b/web/components/hero2.tsx
@@ -36,7 +36,7 @@ export default function Hero() {
)
}
+
diff --git a/web/components/mouse-move-effect.tsx b/web/components/mouse-move-effect.tsx
index 3b91f02..d2d9f1c 100644
--- a/web/components/mouse-move-effect.tsx
+++ b/web/components/mouse-move-effect.tsx
@@ -26,3 +26,4 @@ export default function MouseMoveEffect() {
/>
)
}
+
diff --git a/web/components/navbar.tsx b/web/components/navbar.tsx
index 76217d6..eac7443 100644
--- a/web/components/navbar.tsx
+++ b/web/components/navbar.tsx
@@ -20,7 +20,13 @@ export default function Navbar() {
-
+
ProxMenux
@@ -40,7 +46,7 @@ export default function Navbar() {
{/* RSS Feed Link */}
setIsMenuOpen(false)}
target="_blank"
diff --git a/web/components/rss-link.tsx b/web/components/rss-link.tsx
index 9557681..34daa21 100644
--- a/web/components/rss-link.tsx
+++ b/web/components/rss-link.tsx
@@ -6,7 +6,7 @@ import { useState } from "react"
export default function RSSLink() {
const [copied, setCopied] = useState(false)
- const rssUrl = "https://proxmenux.com/rss.xml"
+ const rssUrl = "https://macrimi.github.io/ProxMenux/rss.xml"
const copyToClipboard = async () => {
try {
diff --git a/web/components/support-project.tsx b/web/components/support-project.tsx
index 9e16ed8..9cd06c5 100644
--- a/web/components/support-project.tsx
+++ b/web/components/support-project.tsx
@@ -26,3 +26,4 @@ export default function SupportProject() {
)
}
+
diff --git a/web/components/testimonials.tsx b/web/components/testimonials.tsx
index da84986..9044196 100644
--- a/web/components/testimonials.tsx
+++ b/web/components/testimonials.tsx
@@ -32,3 +32,4 @@ export default function Testimonials() {
)
}
+
diff --git a/web/components/ui/image-with-caption.tsx b/web/components/ui/image-with-caption.tsx
index 2bf5bf1..57b7ed9 100644
--- a/web/components/ui/image-with-caption.tsx
+++ b/web/components/ui/image-with-caption.tsx
@@ -23,4 +23,4 @@ export function ImageWithCaption({ src, alt, caption, width = 800, height = 450
{caption}
)
-}
+}
\ No newline at end of file
diff --git a/web/components/ui/steps.tsx b/web/components/ui/steps.tsx
index 0aafab4..58c6ae9 100644
--- a/web/components/ui/steps.tsx
+++ b/web/components/ui/steps.tsx
@@ -32,3 +32,4 @@ const Steps: React.FC & { Step: typeof Step } = ({ children }) => (
Steps.Step = Step
export { Steps }
+