-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimportant.html
181 lines (175 loc) · 6.92 KB
/
important.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A note on installing Woof OS." />
<meta name="author" content="Vithushan Sutharsan (ACuteWoof)" />
<link rel="icon" type="image/png" href="https://github.com/woof-os.png" />
<title>Woof OS Installation Note</title>
<!--<link rel="stylesheet" href="tailwind.css" />-->
<link rel="stylesheet" href="./tailwind.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Major+Mono+Display&display=swap"
rel="stylesheet"
/>
<script defer>
function sendmessage() {
message = document.getElementById("themessage").value;
const xhr = new XMLHttpRequest();
try {
xhr.open(
"GET",
"https://www.lewoof.xyz/api/index?message=`[sent from os.lewoof.xyz]`: " +
message,
);
xhr.send();
xhr.responseType = "json";
xhr.onload = () => {
if (xhr.readyState == 4 && xhr.status == 200) {
const data = xhr.response;
document.getElementById("themessage").value = "";
document.getElementById("sendbutton").innerHTML =
"Message sent :)";
console.log(data);
} else {
console.log(`Error: ${xhr.status}`);
document.getElementById("sendbutton").innerHTML =
"Couldn't send message :/";
}
};
} catch (e) {
console.error(e);
document.getElementById("sendbutton").innerHTML =
"Couldn't send message :/";
}
}
</script>
</head>
<body
class="text-wrap flex flex-col gap-16 dark m-0 min-h-screen bg-mirage-950 p-8 lg:p-12 xl:px-32 text-periwinkle-200 font-mono"
>
<section id="hero" class="w-full flex flex-col items-center justify-center">
<h1 class="text-center font-display text-5xl lg:text-7xl text-yellow">
Woof os: note on installation
</h1>
</section>
<nav
class="items-center prose prose-tokyonight !max-w-full flex gap-4 justify-center"
>
<a href="/">Home</a>
<span class="text-yellow/50">·</span>
<a href="qtile">Qtile</a>
<a href="sway">Sway</a>
<span class="text-yellow/50">·</span>
<a href="pacman">Pacman Repository</a>
<span class="text-yellow/50">·</span>
<a
class="!text-red-400 !hover:bg-red-500 !decoration-pink"
href="important"
>Important Note</a
>
</nav>
<section id="content" class="w-full">
<div class="prose prose-tokyonight prose-invert !max-w-full">
<article>
<div>
<p>Sometimes, during installation you may encounter this error:</p>
<pre>The source file system "/run/archiso/bootmnt/arch/x86_64/airoootfs.sfs" does not exist</pre>
<p>
This just means that the USB/CD you booted form isn't mounted
to <code>bootmnt</code>.
</p>
<p>To proceed with the installation:</p>
<ol>
<li>Run <code>lsblk</code> to list all your block devices.</li>
<li>
Find the partition of your USB/CD that contains the Woof OS live
image.
</li>
<li>Mount the device to <code>/run/archiso/bootmnt</code>.</li>
<li>
Run <code>calamares</code> to start the installer and proceed
with the installation as usual.
</li>
</ol>
<p>
If any issues persist, contact us on
<a href="https://discord.gg/2G2yGUAXUS">Discord</a> or send a
message from the footer, and tell us how we can contact you.
</p>
</div>
</article>
</div>
</section>
<footer id="footer" class="border-t border-periwinkle-200">
<div
class="text-wrap break-all prose prose-tokyonight w-screen md:grid md:grid-cols-2 !max-w-full"
>
<section id="contact">
<h2>Contact</h2>
<ul>
<li>
Email: <a
target="_blank"
href="mailto:sutharshanvithushan@gmail.com"
>sutharshanvithushan@gmail.com</a
>
</li>
<li>
Discord: <a
target="_blank"
href="https://discord.gg/2G2yGUAXUS"
>Woof OS</a
>
</li>
</ul>
<div class="flex flex-col gap-2">
<textarea
maxlength="2000"
class="flex min-h-[60px] w-full border border-mirage-800 bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-mirage-500 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-mirage-500 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm"
id="themessage"
placeholder="Leave a message"
></textarea>
<button
class="border border-mirage-800 inline-flex items-center justify-center whitespace-nowrap text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 bg-transparent text-neutral-800-foreground shadow hover:bg-mirage-800/90 h-9 px-4 py-2"
id="sendbutton"
onclick="sendmessage()"
>
Send :>
</button>
</div>
</section>
<section id="donate">
<h2>Donate</h2>
<ul>
<li>
<strong>Solana: </strong
><span class="text-wrap break-all"
>6BecuGmLuD7JJEbQuV7mNqUNZ3i8WPxNC5zL63oAhRJH</span
>
</li>
<li>
<strong>BuyMeACoffee: </strong
><a target="_blank" href="https://buymeacoffee.com/acutewoof"
>acutewoof</a
>
</li>
</ul>
</section>
</div>
<div
class="mt-6 md:flex md:items-center md:justify-between text-periwinkle-200"
>
<span class="sm:text-center"
>© 2023-2024 Vithushan. All Rights Reserved.</span
><span class="prose prose-tokyonight flex gap-6"
><a target="_blank" href="https://lewoof.xyz">Vithushan (ACuteWoof)</a
><a target="_blank" href="https://github.com/woof-os">Github</a></span
>
</div>
</footer>
</body>
</html>