├── .github └── screenshot.png ├── Changelog.md ├── LICENSE ├── README.md └── axos-iso ├── airootfs ├── etc │ ├── axos-version │ ├── hostname │ ├── hosts │ ├── initcpio │ │ └── hooks │ │ │ └── archiso │ ├── locale.conf │ ├── localtime │ ├── machine-id │ ├── mkinitcpio.conf │ ├── mkinitcpio.d │ │ └── linux.preset │ ├── modprobe.d │ │ └── broadcom-wl.conf │ ├── pacman.conf │ ├── passwd │ ├── samba │ │ └── smb.conf │ ├── sddm.conf │ ├── sddm.conf.d │ │ ├── autologin.conf │ │ └── settings.conf │ ├── shadow │ ├── skel │ │ └── .config │ │ │ └── autostart │ │ │ └── vm-detector.desktop │ ├── ssh │ │ └── sshd_config.d │ │ │ └── 10-archiso.conf │ ├── sudoers │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── volatile-storage.conf │ │ ├── logind.conf.d │ │ │ └── do-not-suspend.conf │ │ ├── network.conf.d │ │ │ └── ipv6-privacy-extensions.conf │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ ├── 20-wlan.network │ │ │ └── 20-wwan.network │ │ ├── system-preset │ │ │ └── 10-aui-default.preset │ │ └── system │ │ │ ├── choose-mirror.service │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── getty@tty1.service.d │ │ │ └── autologin.conf │ │ │ ├── multi-user.target.wants │ │ │ ├── choose-mirror.service │ │ │ ├── pacman-init.service │ │ │ └── systemd-resolved.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service.d │ │ │ └── archiso.conf │ │ │ ├── socket.target.wants │ │ │ └── pcscd.socket │ │ │ ├── sysinit.target.wants │ │ │ ├── systemd-time-wait-sync.service │ │ │ └── systemd-timesyncd.service │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ └── wait-for-only-one-interface.conf │ ├── vconsole.conf │ └── xdg │ │ └── reflector │ │ └── reflector.conf ├── root │ ├── .automated_script.sh │ ├── .config │ │ └── user-dirs.conf │ ├── .gnupg │ │ └── scdaemon.conf │ ├── .zlogin │ └── customize_airootfs.sh └── usr │ └── local │ └── bin │ ├── Installation_guide │ ├── choose-mirror │ ├── vm-detector │ └── vm-detector.sh ├── bootstrap_packages.x86_64 ├── efiboot └── loader │ ├── entries │ ├── 01-archiso-x86_64-linux.conf │ └── 02-archiso-x86_64-memtest86+.conf │ └── loader.conf ├── grub ├── grub.cfg ├── loopback.cfg └── themes │ └── axos │ ├── background.jpg │ ├── icons │ ├── 4MLinux.png │ ├── AlpineLinux.png │ ├── Manjaro.i686.png │ ├── Manjaro.x86_64.png │ ├── SystemRescueCD.png │ ├── android.png │ ├── anonymous.png │ ├── antergos.png │ ├── arch.png │ ├── archcraft.png │ ├── archlinux.png │ ├── arcolinux.png │ ├── artix.png │ ├── axos.png │ ├── brunch-settings.png │ ├── brunch.png │ ├── cancel.png │ ├── chakra.png │ ├── chimera.png │ ├── debian.png │ ├── deepin.png │ ├── devuan.png │ ├── driver.png │ ├── edit.png │ ├── efi.png │ ├── elementary.png │ ├── endeavouros.png │ ├── fedora.png │ ├── find.efi.png │ ├── find.none.png │ ├── freebsd.png │ ├── gentoo.png │ ├── gnu-linux.png │ ├── gpart.png │ ├── haiku.png │ ├── help.png │ ├── kali.png │ ├── kaos.png │ ├── kbd.png │ ├── kernel.png │ ├── korora.png │ ├── kubuntu.png │ ├── lang.png │ ├── lfs.png │ ├── linux.png │ ├── linuxmint.png │ ├── lubuntu.png │ ├── macosx.png │ ├── mageia.png │ ├── manjaro.png │ ├── manjarolinux.png │ ├── memtest.png │ ├── mx-linux.png │ ├── neon.png │ ├── nixos.png │ ├── openSUSE.png │ ├── opensuse.png │ ├── parrot.png │ ├── pop-os.png │ ├── pop.png │ ├── recovery.png │ ├── regolith.png │ ├── restart.png │ ├── shutdown.png │ ├── siduction.png │ ├── solus.png │ ├── steamos.png │ ├── submenu.png │ ├── type.png │ ├── tz.png │ ├── ubuntu.png │ ├── ubuntuDDE.png │ ├── unknown.png │ ├── unset.png │ ├── void.png │ ├── windows.png │ ├── xubuntu.png │ └── zorin.png │ ├── info.png │ ├── logo.png │ ├── select_c.png │ ├── select_e.png │ ├── select_w.png │ ├── terminus-12.pf2 │ ├── terminus-14.pf2 │ ├── terminus-16.pf2 │ ├── terminus-18.pf2 │ ├── theme.txt │ ├── unifont-16.pf2 │ ├── unifont-24.pf2 │ └── unifont-32.pf2 ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh └── syslinux ├── archiso_head.cfg ├── archiso_pxe-linux.cfg ├── archiso_pxe.cfg ├── archiso_sys-linux.cfg ├── archiso_sys.cfg ├── archiso_tail.cfg └── syslinux.cfg /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/.github/screenshot.png -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | --- 4 | **25.01** 5 | - New grub theme 6 | - Replaced Hypr with Sleex (basically the same thing) 7 | - Updated base packages 8 | 9 | --- 10 | 11 | --- 12 | **24.12** 13 | - New icon theme 14 | - Warning message when running on a virtual machine 15 | - Package updates 16 | 17 | --- 18 | **24.11** 19 | - Unification of the editions 20 | - Added kernel choice in the installer 21 | - Calla takes the place of Awesome 22 | - The beta of Hypr edition will be available (note that is is currently unstable) 23 | - New preinstalled apps will be included to the Plasma Edition. 24 | 25 | 26 | --- 27 | 28 | **24.10** 29 | 30 | - New lockscreen style 31 | - Stability updates 32 | - Fixed calamares core dump 33 | - Fixed login failed bug 34 | 35 | 36 | --- 37 | 38 | **24.08** 39 | 40 | - New style 41 | - Stability updates 42 | - New sddm theme 43 | - Fixed calamares slideshow 44 | - Added more kde options 45 | - fixed NTP error 46 | - Showing "*" when sudo password is typed 47 | - Added more graphic drivers 48 | - New bash PS1 49 | 50 | 51 | --- 52 | 53 | **24.03** 54 | 55 | - Installation fully working 56 | - Themes and look stability updates 57 | - integrating Plasma 6 58 | - Deleted some apps to minimize the ISO 59 | 60 | --- 61 | 62 | **24.02** 63 | 64 | - Rework on the global style 65 | - Installation now works (at 99%) 66 | - Removed useless apps from the ISO 67 | - Removed AxShell 68 | - Removed blur effects in terminal and file manager 69 | - Now using AxOS hooks (a lot of cool stuff) 70 | - Better compatibility with AMD and NVIDIA drivers 71 | 72 | --- 73 | 74 | **_No changelog for unstalble versions_** 75 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 | Logo 8 | 9 | 10 | 11 |

AxOS

12 | 13 |

14 | The Linux experience, enhanced. 15 |
16 | Website 17 |
18 |
19 | Report Bug 20 | · 21 | Request Feature 22 | · 23 | Download 24 | · 25 | Wiki 26 |
27 |
28 |

29 |
30 | 31 | 32 | > [!IMPORTANT] 33 | > I need feedbacks! i cannot improve AxOS without it! 34 | 35 | 36 | 37 | 38 | ## Contributing 39 | 40 | Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions (or feedbacks) you make are **VERY appreciated**. 41 | 42 | If you have a suggestion that would make AxOS better, please create a discussion. You can also simply open an issue. 43 | Don't forget to give the project a star! Thanks again! 44 | 45 | 46 | 47 | ## License 48 | 49 | Distributed under the GNU Public License. See `LICENSE.txt` for more information. 50 | 51 | 52 | 53 | ## Versioning 54 | 55 | AxOS uses **Calendar Versioning (CalVer)** in the format `YY.MM` (e.g. `25.06` for June 2025). 56 | 57 | 58 | ## Contact 59 | 60 | Ardox (me) - ardox@axos-project.com 61 | 62 | Project Link: You are at 63 | Project Website: https://axos-project.com/ 64 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/axos-version: -------------------------------------------------------------------------------- 1 | 25.05 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost.localdomain localhost 2 | 127.0.1.1 archiso 3 | 4 | ::1 ip6-localhost ip6-loopback 5 | fe00::0 ip6-localnet 6 | ff00::0 ip6-mcastprefix 7 | ff02::1 ip6-allnodes 8 | ff02::2 ip6-allrouters 9 | ff02::3 ip6-allhosts 10 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/initcpio/hooks/archiso: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ash 2 | # 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | # args: source, newroot, mountpoint 6 | _mnt_dmsnapshot() { 7 | local img="${1}" 8 | local newroot="${2}" 9 | local mnt="${3}" 10 | local img_fullname="${img##*/}" 11 | local img_name="${img_fullname%%.*}" 12 | local dm_snap_name="${dm_snap_prefix}_${img_name}" 13 | local ro_dev ro_dev_size rw_dev 14 | 15 | ro_dev="$(losetup --find --show --read-only -- "${img}")" 16 | ro_dev_size="$(blockdev --getsz "${ro_dev}")" 17 | 18 | if [ "${cow_persistent}" = "P" ]; then 19 | if [ -f "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" ]; then 20 | msg ":: Found '/run/archiso/cowspace/${cow_directory}/${img_name}.cow', using as persistent." 21 | else 22 | msg ":: Creating '/run/archiso/cowspace/${cow_directory}/${img_name}.cow' as persistent." 23 | truncate -s "${cow_spacesize}" "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" 24 | fi 25 | else 26 | if [ -f "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" ]; then 27 | msg ":: Found '/run/archiso/cowspace/${cow_directory}/${img_name}.cow' but non-persistent requested, removing." 28 | rm -f "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" 29 | fi 30 | msg ":: Creating '/run/archiso/cowspace/${cow_directory}/${img_name}.cow' as non-persistent." 31 | truncate -s "${cow_spacesize}" "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" 32 | fi 33 | 34 | rw_dev="$(losetup --find --show "/run/archiso/cowspace/${cow_directory}/${img_name}.cow")" 35 | 36 | dmsetup create "${dm_snap_name}" --table \ 37 | "0 ${ro_dev_size} snapshot ${ro_dev} ${rw_dev} ${cow_persistent} ${cow_chunksize}" 38 | 39 | if [ "${cow_persistent}" != "P" ]; then 40 | rm -f "/run/archiso/cowspace/${cow_directory}/${img_name}.cow" 41 | fi 42 | 43 | _mnt_dev "/dev/mapper/${dm_snap_name}" "${newroot}${mnt}" "-w" "defaults" 44 | } 45 | 46 | # args: source, newroot, mountpoint 47 | _mnt_overlayfs() { 48 | local src="${1}" 49 | local newroot="${2}" 50 | local mnt="${3}" 51 | mkdir -p "/run/archiso/cowspace/${cow_directory}/upperdir" "/run/archiso/cowspace/${cow_directory}/workdir" 52 | mount -t overlay -o \ 53 | "lowerdir=${src},upperdir=/run/archiso/cowspace/${cow_directory}/upperdir,workdir=/run/archiso/cowspace/${cow_directory}/workdir" \ 54 | airootfs "${newroot}${mnt}" 55 | } 56 | 57 | # args: /path/to/image_file, mountpoint 58 | _mnt_fs() { 59 | local img="${1}" 60 | local mnt="${2}" 61 | local img_fullname="${img##*/}" 62 | local img_loopdev 63 | 64 | # shellcheck disable=SC2154 65 | # defined via initcpio's parse_cmdline() 66 | if [ "${copytoram}" = "y" ]; then 67 | msg -n ":: Copying rootfs image to RAM..." 68 | 69 | # in case we have pv use it to display copy progress feedback otherwise 70 | # fallback to using plain cp 71 | if command -v pv >/dev/null 2>&1; then 72 | echo "" 73 | (pv "${img}" >"/run/archiso/copytoram/${img_fullname}") 74 | local rc=$? 75 | else 76 | (cp -- "${img}" "/run/archiso/copytoram/${img_fullname}") 77 | local rc=$? 78 | fi 79 | 80 | if [ "$rc" != 0 ]; then 81 | echo "ERROR: while copy '${img}' to '/run/archiso/copytoram/${img_fullname}'" 82 | launch_interactive_shell 83 | fi 84 | 85 | img="/run/archiso/copytoram/${img_fullname}" 86 | msg "done." 87 | fi 88 | img_loopdev="$(losetup --find --show --read-only -- "${img}")" 89 | _mnt_dev "${img_loopdev}" "${mnt}" "-r" "defaults" 90 | } 91 | 92 | # args: device, mountpoint, flags, opts 93 | _mnt_dev() { 94 | local dev="${1}" 95 | local mnt="${2}" 96 | local flg="${3}" 97 | local opts="${4}" 98 | local resolved_dev 99 | 100 | msg ":: Mounting '${dev}' to '${mnt}'" 101 | 102 | while ! resolved_dev="$(rootdelay="${rootdelay:-30}" resolve_device "${dev}")"; do 103 | echo "ERROR: '${dev}' device did not show up after ${rootdelay:-30} seconds..." 104 | echo " Falling back to interactive prompt" 105 | echo " You can try to fix the problem manually, log out when you are finished" 106 | launch_interactive_shell 107 | done 108 | 109 | # If the tag is supported by mount, pass it as is. Otherwise, use the resolved device path. 110 | case "${dev}" in 111 | 'UUID='* | 'LABEL='* | 'PARTUUID='* | 'PARTLABEL='*) : ;; 112 | *) dev="${resolved_dev}" ;; 113 | esac 114 | if mount --mkdir -o "${opts}" "${flg}" "${dev}" "${mnt}"; then 115 | msg ":: Device '${dev}' mounted successfully." 116 | else 117 | echo "ERROR; Failed to mount '${dev}'" 118 | echo " Falling back to interactive prompt" 119 | echo " You can try to fix the problem manually, log out when you are finished" 120 | launch_interactive_shell 121 | fi 122 | } 123 | 124 | _verify_checksum() { 125 | local _status 126 | cd "/run/archiso/bootmnt/${archisobasedir}/${arch}" || exit 1 127 | sha512sum -c airootfs.sha512 >/tmp/checksum.log 2>&1 128 | _status=$? 129 | cd -- "${OLDPWD}" || exit 1 130 | return "${_status}" 131 | } 132 | 133 | _verify_signature() { 134 | local _status 135 | local sigfile="${1}" 136 | cd "/run/archiso/bootmnt/${archisobasedir}/${arch}" || exit 1 137 | gpg --homedir /gpg --status-fd 1 --verify "${sigfile}" 2>/dev/null | grep -E '^\[GNUPG:\] GOODSIG' 138 | _status=$? 139 | cd -- "${OLDPWD}" || exit 1 140 | return "${_status}" 141 | } 142 | 143 | _verify_cms_signature() { 144 | # Note: There is an "issue" with openssl. 145 | # Which requires emailProtection in extended key usage on the code signing certificate. 146 | # See: https://github.com/openssl/openssl/issues/17134 147 | local _status 148 | local cms_sigfile="${1}" 149 | local bootfile="${2}" 150 | local certfile="/codesign.crt" 151 | local cafile="/codesign_CA.crt" 152 | 153 | # Use the signer certificate as the CA certificate to allow validating with self-signed certificates. 154 | if [ ! -e "$cafile" ]; then 155 | cafile="$certfile" 156 | fi 157 | 158 | cd "/run/archiso/bootmnt/${archisobasedir}/${arch}" || exit 1 159 | # "-purpose any" can be removed once the issue mentioned above is fixed. 160 | openssl cms \ 161 | -verify \ 162 | -binary \ 163 | -noattr \ 164 | -nointern \ 165 | -purpose any \ 166 | -in "${cms_sigfile}" \ 167 | -content "${bootfile}" \ 168 | -inform DER \ 169 | -out /dev/null \ 170 | -certfile "$certfile" \ 171 | -CAfile "$cafile" 172 | _status=$? 173 | cd -- "${OLDPWD}" || exit 1 174 | return "${_status}" 175 | } 176 | 177 | run_hook() { 178 | [ -z "${arch}" ] && arch="$(uname -m)" 179 | [ -z "${copytoram}" ] && copytoram="auto" 180 | [ -z "${copytoram_size}" ] && copytoram_size="75%" 181 | [ -z "${archisobasedir}" ] && archisobasedir="arch" 182 | [ -z "${dm_snap_prefix}" ] && dm_snap_prefix="arch" 183 | # shellcheck disable=SC2154 184 | # defined via initcpio's parse_cmdline() 185 | [ -z "${archisodevice}" ] && archisodevice="/dev/disk/by-label/${archisolabel}" 186 | [ -z "${cow_spacesize}" ] && cow_spacesize="256M" 187 | # shellcheck disable=SC2154 188 | # defined via initcpio's parse_cmdline() 189 | if [ -n "${cow_label}" ]; then 190 | cow_device="/dev/disk/by-label/${cow_label}" 191 | [ -z "${cow_persistent}" ] && cow_persistent="P" 192 | elif [ -n "${cow_device}" ]; then 193 | [ -z "${cow_persistent}" ] && cow_persistent="P" 194 | else 195 | cow_persistent="N" 196 | fi 197 | 198 | [ -z "${cow_flags}" ] && cow_flags="defaults" 199 | [ -z "${cow_directory}" ] && cow_directory="persistent_${archisolabel}/${arch}" 200 | [ -z "${cow_chunksize}" ] && cow_chunksize="8" 201 | 202 | # set mount handler for archiso 203 | export mount_handler="archiso_mount_handler" 204 | } 205 | 206 | # This function is called normally from init script, but it can be called 207 | # as chain from other mount handlers. 208 | # args: /path/to/newroot 209 | archiso_mount_handler() { 210 | local newroot="${1}" 211 | local sigfile cms_sigfile fs_img fs_img_size iso_blockdev 212 | 213 | if ! mountpoint -q "/run/archiso/bootmnt"; then 214 | _mnt_dev "${archisodevice}" "/run/archiso/bootmnt" "-r" "defaults" 215 | fi 216 | 217 | # We need this block at the top for early failure 218 | # but also to be able to give the fs_img to CMS verification. 219 | # (sha512sum files contain the image, CMS files does not) 220 | if [ -f "/run/archiso/bootmnt/${archisobasedir}/${arch}/airootfs.sfs" ]; then 221 | fs_img="/run/archiso/bootmnt/${archisobasedir}/${arch}/airootfs.sfs" 222 | elif [ -f "/run/archiso/bootmnt/${archisobasedir}/${arch}/airootfs.erofs" ]; then 223 | fs_img="/run/archiso/bootmnt/${archisobasedir}/${arch}/airootfs.erofs" 224 | else 225 | echo "ERROR: no root file system image found" 226 | launch_interactive_shell 227 | fi 228 | 229 | # shellcheck disable=SC2154 230 | # defined via initcpio's parse_cmdline() 231 | if [ "${checksum}" = "y" ]; then 232 | if [ -f "/run/archiso/bootmnt/${archisobasedir}/${arch}/airootfs.sha512" ]; then 233 | msg ":: Self-test requested, please wait..." 234 | if _verify_checksum; then 235 | msg "Checksum is OK, continue booting." 236 | else 237 | echo "ERROR: one or more files are corrupted" 238 | echo "see /tmp/checksum.log for details" 239 | launch_interactive_shell 240 | fi 241 | else 242 | echo "ERROR: checksum=y option specified but ${archisobasedir}/${arch}/airootfs.sha512 not found" 243 | launch_interactive_shell 244 | fi 245 | fi 246 | 247 | # shellcheck disable=SC2154 248 | # defined via initcpio's parse_cmdline() 249 | if [ "${verify}" = "y" ]; then 250 | if ! command -v gpg >/dev/null 2>&1; then 251 | echo 'ERROR: verify=y option specified but the gpg binary is not available in initramfs' 252 | launch_interactive_shell 253 | fi 254 | 255 | if [ -f "${fs_img}.sig" ]; then 256 | sigfile="${fs_img##*/}.sig" 257 | 258 | msg ":: Signature verification requested, please wait..." 259 | if _verify_signature "${sigfile}"; then 260 | msg "Signature is OK, continue booting." 261 | else 262 | echo "ERROR: one or more files are corrupted" 263 | launch_interactive_shell 264 | fi 265 | else 266 | echo "ERROR: verify=y option specified but GPG signature not found in ${archisobasedir}/${arch}/" 267 | launch_interactive_shell 268 | fi 269 | fi 270 | 271 | # shellcheck disable=SC2154 272 | # defined via initcpio's parse_cmdline() 273 | if [ "${cms_verify}" = "y" ]; then 274 | if [ -f "${fs_img}.cms.sig" ]; then 275 | cms_sigfile="${fs_img##*/}.cms.sig" 276 | 277 | msg ":: Signature verification requested, please wait..." 278 | if _verify_cms_signature "${cms_sigfile}" "${fs_img}"; then 279 | msg "Signature is OK, continue booting." 280 | else 281 | echo "ERROR: one or more files are corrupted" 282 | launch_interactive_shell 283 | fi 284 | else 285 | echo "ERROR: cms_verify=y option specified but CMS signature not found in ${archisobasedir}/${arch}/" 286 | launch_interactive_shell 287 | fi 288 | fi 289 | 290 | # Enable copytoram if the following conditions apply: 291 | # * the root file system image is not on an optical disc drive, 292 | # * the root file system image size is less than 4 GiB, 293 | # * the estimated available memory is more than the root file system image size + 2 GiB. 294 | if [ "${copytoram}" = "auto" ]; then 295 | iso_blockdev="$(realpath "$(resolve_device "$archisodevice")")" 296 | if [ "$iso_blockdev" = "${iso_blockdev##/dev/sr}" ]; then 297 | fs_img_size="$(du -bsk "$fs_img" | cut -f 1)" 298 | if [ "$fs_img_size" -lt 4194304 ] && [ "$(awk '$1 == "MemAvailable:" { print $2 }' /proc/meminfo)" -gt $((fs_img_size + 2097152)) ]; then 299 | copytoram="y" 300 | fi 301 | fi 302 | fi 303 | if [ "${copytoram}" = "y" ]; then 304 | msg ":: Mounting /run/archiso/copytoram (tmpfs) filesystem, size=${copytoram_size}" 305 | mount --mkdir -t tmpfs -o "size=${copytoram_size}",mode=0755 copytoram /run/archiso/copytoram 306 | fi 307 | 308 | if [ -n "${cow_device}" ]; then 309 | # Mount cow_device read-only at first and remount it read-write right after. This prevents errors when the 310 | # device is already mounted read-only somewhere else (e.g. if cow_device and archisodevice are the same). 311 | _mnt_dev "${cow_device}" "/run/archiso/cowspace" "-r" "${cow_flags}" 312 | mount -o remount,rw "/run/archiso/cowspace" 313 | else 314 | msg ":: Mounting /run/archiso/cowspace (tmpfs) filesystem, size=${cow_spacesize}..." 315 | mount --mkdir -t tmpfs -o "size=${cow_spacesize}",mode=0755 cowspace /run/archiso/cowspace 316 | fi 317 | mkdir -p "/run/archiso/cowspace/${cow_directory}" 318 | chmod 0700 "/run/archiso/cowspace/${cow_directory}" 319 | 320 | _mnt_fs "${fs_img}" "/run/archiso/airootfs" 321 | if [ -f "/run/archiso/airootfs/airootfs.img" ]; then 322 | _mnt_dmsnapshot "/run/archiso/airootfs/airootfs.img" "${newroot}" "/" 323 | else 324 | _mnt_overlayfs "/run/archiso/airootfs" "${newroot}" "/" 325 | fi 326 | 327 | if [ "${copytoram}" = "y" ]; then 328 | umount -d /run/archiso/bootmnt 329 | rmdir /run/archiso/bootmnt 330 | fi 331 | } 332 | 333 | # vim: set ft=sh: 334 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/machine-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/airootfs/etc/machine-id -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/mkinitcpio.conf: -------------------------------------------------------------------------------- 1 | # vim:set ft=sh 2 | # MODULES 3 | # The following modules are loaded before any boot hooks are 4 | # run. Advanced users may wish to specify all system modules 5 | # in this array. For instance: 6 | # MODULES=(piix ide_disk reiserfs) 7 | MODULES=() 8 | 9 | # BINARIES 10 | # This setting includes any additional binaries a given user may 11 | # wish into the CPIO image. This is run last, so it may be used to 12 | # override the actual binaries included by a given hook 13 | # BINARIES are dependency parsed, so you may safely ignore libraries 14 | BINARIES=() 15 | 16 | # FILES 17 | # This setting is similar to BINARIES above, however, files are added 18 | # as-is and are not parsed in any way. This is useful for config files. 19 | FILES=() 20 | 21 | # HOOKS 22 | # This is the most important setting in this file. The HOOKS control the 23 | # modules and scripts added to the image, and what happens at boot time. 24 | # Order is important, and it is recommended that you do not change the 25 | # order in which HOOKS are added. Run 'mkinitcpio -H ' for 26 | # help on a given hook. 27 | # 'base' is _required_ unless you know precisely what you are doing. 28 | # 'udev' is _required_ in order to automatically load modules 29 | # 'filesystems' is _required_ unless you specify your fs modules in MODULES 30 | # Examples: 31 | ## This setup specifies all modules in the MODULES setting above. 32 | ## No raid, lvm2, or encrypted root is needed. 33 | # HOOKS=(base) 34 | # 35 | ## This setup will autodetect all modules for your system and should 36 | ## work as a sane default 37 | # HOOKS=(base udev autodetect block filesystems) 38 | # 39 | ## This setup will generate a 'full' image which supports most systems. 40 | ## No autodetection is done. 41 | # HOOKS=(base udev block filesystems) 42 | # 43 | ## This setup assembles a pata mdadm array with an encrypted root FS. 44 | ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices. 45 | # HOOKS=(base udev block mdadm encrypt filesystems) 46 | # 47 | ## This setup loads an lvm2 volume group on a usb device. 48 | # HOOKS=(base udev block lvm2 filesystems) 49 | # 50 | ## NOTE: If you have /usr on a separate partition, you MUST include the 51 | # usr, fsck and shutdown hooks. 52 | HOOKS=(base udev plymouth keymap consolefont modconf memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs kms block filesystems keyboard ) 53 | 54 | # COMPRESSION 55 | # Use this to compress the initramfs image. By default, zstd compression 56 | # is used. Use 'cat' to create an uncompressed image. 57 | #COMPRESSION="zstd" 58 | #COMPRESSION="gzip" 59 | #COMPRESSION="bzip2" 60 | #COMPRESSION="lzma" 61 | COMPRESSION="xz" 62 | #COMPRESSION="lzop" 63 | #COMPRESSION="lz4" 64 | 65 | # COMPRESSION_OPTIONS 66 | # Additional options for the compressor 67 | #COMPRESSION_OPTIONS=() 68 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/mkinitcpio.d/linux.preset: -------------------------------------------------------------------------------- 1 | # mkinitcpio preset file for the 'linux' package on archiso 2 | 3 | PRESETS=('archiso') 4 | 5 | ALL_kver='/boot/vmlinuz-linux' 6 | ALL_config='/etc/mkinitcpio.conf' 7 | 8 | archiso_image="/boot/initramfs-linux.img" 9 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- 1 | # The broadcom-wl package requires some modules to be disabled in order to use 2 | # wl. Since the ISO image needs to cover many hardware cases, this file 3 | # overrides the default blacklist in /usr/lib/modprobe.d/ 4 | # 5 | # If you need to use wl, you may need to delete this file, then `rmmod` any 6 | # already-loaded modules that are now blacklisted before proceeding to modprobe 7 | # wl itself. 8 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/pacman.conf: -------------------------------------------------------------------------------- 1 | # 2 | # /etc/pacman.conf 3 | # 4 | # See the pacman.conf(5) manpage for option and repository directives 5 | 6 | # 7 | # GENERAL OPTIONS 8 | # 9 | [options] 10 | # The following paths are commented out with their default values listed. 11 | # If you wish to use different paths, uncomment and update the paths. 12 | #RootDir = / 13 | #DBPath = /var/lib/pacman/ 14 | #CacheDir = /var/cache/pacman/pkg/ 15 | #LogFile = /var/log/pacman.log 16 | #GPGDir = /etc/pacman.d/gnupg/ 17 | #HookDir = /etc/pacman.d/hooks/ 18 | HoldPkg = pacman glibc 19 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u 20 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u 21 | #CleanMethod = KeepInstalled 22 | Architecture = auto 23 | 24 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup 25 | #IgnorePkg = 26 | #IgnoreGroup = 27 | 28 | #NoUpgrade = 29 | #NoExtract = 30 | 31 | # Misc options 32 | #UseSyslog 33 | #Color 34 | #NoProgressBar 35 | # We cannot check disk space from within a chroot environment 36 | #CheckSpace 37 | #VerbosePkgLists 38 | ParallelDownloads = 5 39 | 40 | # By default, pacman accepts packages signed by keys that its local keyring 41 | # trusts (see pacman-key and its man page), as well as unsigned packages. 42 | SigLevel = Required DatabaseOptional 43 | LocalFileSigLevel = Optional 44 | #RemoteFileSigLevel = Required 45 | 46 | # NOTE: You must run `pacman-key --init` before first using pacman; the local 47 | # keyring can then be populated with the keys of all official AxOS 48 | # packagers with `pacman-key --populate archlinux`. 49 | 50 | # 51 | # REPOSITORIES 52 | # - can be defined here or included from another file 53 | # - pacman will search repositories in the order defined here 54 | # - local/custom mirrors can be added here or in separate files 55 | # - repositories listed first will take precedence when packages 56 | # have identical names, regardless of version number 57 | # - URLs will have $repo replaced by the name of the current repo 58 | # - URLs will have $arch replaced by the name of the architecture 59 | # 60 | # Repository entries are of the format: 61 | # [repo-name] 62 | # Server = ServerName 63 | # Include = IncludePath 64 | # 65 | # The header [repo-name] is crucial - it must be present and 66 | # uncommented to enable the repo. 67 | # 68 | 69 | # The testing repositories are disabled by default. To enable, uncomment the 70 | # repo name header and Include lines. You can add preferred servers immediately 71 | # after the header, and they will be used before the default mirrors. 72 | 73 | #[testing] 74 | #Include = /etc/pacman.d/mirrorlist 75 | 76 | [core] 77 | Include = /etc/pacman.d/mirrorlist 78 | 79 | [extra] 80 | Include = /etc/pacman.d/mirrorlist 81 | 82 | #[community-testing] 83 | #Include = /etc/pacman.d/mirrorlist 84 | 85 | #[community] 86 | #Include = /etc/pacman.d/mirrorlist 87 | 88 | # If you want to run 32 bit applications on your x86_64 system, 89 | # enable the multilib repositories as required here. 90 | 91 | #[multilib-testing] 92 | #Include = /etc/pacman.d/mirrorlist 93 | 94 | #[multilib] 95 | #Include = /etc/pacman.d/mirrorlist 96 | 97 | # An example of a custom package repository. See the pacman manpage for 98 | # tips on creating your own repositories. 99 | #[custom] 100 | #SigLevel = Optional TrustAll 101 | #Server = file:///home/custompkgs 102 | 103 | # AxOS repo 104 | [axos] 105 | SigLevel = Optional TrustedOnly 106 | Server = https://www.axos-project.com/AxMirrors/$arch 107 | 108 | [chaotic-aur] 109 | SigLevel = Optional TrustAll 110 | Include = /etc/pacman.d/chaotic-mirrorlist 111 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0:root:/root:/usr/bin/bash 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/samba/smb.conf: -------------------------------------------------------------------------------- 1 | # This is the main Samba configuration file. You should read the 2 | # smb.conf(5) manual page in order to understand the options listed 3 | # here. Samba has a huge number of configurable options (perhaps too 4 | # many!) most of which are not shown in this example 5 | # 6 | # For a step to step guide on installing, configuring and using samba, 7 | # read the Samba-HOWTO-Collection. This may be obtained from: 8 | # http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf 9 | # 10 | # Many working examples of smb.conf files can be found in the 11 | # Samba-Guide which is generated daily and can be downloaded from: 12 | # http://www.samba.org/samba/docs/Samba-Guide.pdf 13 | # 14 | # Any line which starts with a ; (semi-colon) or a # (hash) 15 | # is a comment and is ignored. In this example we will use a # 16 | # for commentry and a ; for parts of the config file that you 17 | # may wish to enable 18 | # 19 | # NOTE: Whenever you modify this file you should run the command "testparm" 20 | # to check that you have not made any basic syntactic errors. 21 | # 22 | #======================= Global Settings ===================================== 23 | [global] 24 | 25 | # workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH 26 | workgroup = WORKGROUP 27 | client max protocol = SMB3 28 | # SMB1 protocol enbaled in live desktop boot mode 29 | server min protocol = CORE 30 | 31 | # server string is the equivalent of the NT Description field 32 | server string = Samba Server 33 | 34 | # Server role. Defines in which mode Samba will operate. Possible 35 | # values are "standalone server", "member server", "classic primary 36 | # domain controller", "classic backup domain controller", "active 37 | # directory domain controller". 38 | # 39 | # Most people will want "standalone server" or "member server". 40 | # Running as "active directory domain controller" will require first 41 | # running "samba-tool domain provision" to wipe databases and create a 42 | # new domain. 43 | server role = standalone server 44 | 45 | # This option is important for security. It allows you to restrict 46 | # connections to machines which are on your local network. The 47 | # following example restricts access to two C class networks and 48 | # the "loopback" interface. For more examples of the syntax see 49 | # the smb.conf man page 50 | 51 | # Allow networks 52 | # * 192.168.0.0/16 53 | # * 127.0.0.0/8 54 | hosts allow = 10.0.0.0/8 169.254.0.0/16 172.16.0.0/20 192.168.0.0/16 127.0.0.0/8 fe80::/10 55 | 56 | # Uncomment this if you want a guest account, you must add this to /etc/passwd 57 | # otherwise the user "nobody" is used 58 | ; guest account = pcguest 59 | guest account = nobody 60 | 61 | # this tells Samba to use a separate log file for each machine 62 | # that connects 63 | log file = /var/log/samba/%m.log 64 | 65 | # Put a capping on the size of the log files (in Kb). 66 | max log size = 50 67 | 68 | # Specifies the Kerberos or Active Directory realm the host is part of 69 | ; realm = MY_REALM 70 | 71 | # Backend to store user information in. New installations should 72 | # use either tdbsam or ldapsam. smbpasswd is available for backwards 73 | # compatibility. tdbsam requires no further configuration. 74 | ; passdb backend = tdbsam 75 | 76 | # Using the following line enables you to customise your configuration 77 | # on a per machine basis. The %m gets replaced with the netbios name 78 | # of the machine that is connecting. 79 | # Note: Consider carefully the location in the configuration file of 80 | # this line. The included file is read at that point. 81 | ; include = /usr/local/samba/lib/smb.conf.%m 82 | 83 | # Configure Samba to use multiple interfaces 84 | # If you have multiple network interfaces then you must list them 85 | # here. See the man page for details. 86 | ; interfaces = 192.168.12.2/24 192.168.13.2/24 87 | ; interfaces = lo 88 | ; bind interfaces only = true 89 | 90 | # Where to store roving profiles (only for Win95 and WinNT) 91 | # %L substitutes for this servers netbios name, %U is username 92 | # You must uncomment the [Profiles] share below 93 | ; logon path = \\%L\Profiles\%U 94 | 95 | # Windows Internet Name Serving Support Section: 96 | # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server 97 | ; wins support = yes 98 | 99 | # WINS Server - Tells the NMBD components of Samba to be a WINS Client 100 | # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both 101 | ; wins server = w.x.y.z 102 | 103 | # WINS Proxy - Tells Samba to answer name resolution queries on 104 | # behalf of a non WINS capable client, for this to work there must be 105 | # at least one WINS Server on the network. The default is NO. 106 | ; wins proxy = yes 107 | 108 | # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names 109 | # via DNS nslookups. The default is NO. 110 | dns proxy = no 111 | 112 | # These scripts are used on a domain controller or stand-alone 113 | # machine to add or delete corresponding unix accounts 114 | ; add user script = /usr/sbin/useradd %u 115 | ; add group script = /usr/sbin/groupadd %g 116 | ; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u 117 | ; delete user script = /usr/sbin/userdel %u 118 | ; delete user from group script = /usr/sbin/deluser %u %g 119 | ; delete group script = /usr/sbin/groupdel %g 120 | 121 | usershare path = /var/lib/samba/usershare 122 | usershare max shares = 100 123 | usershare allow guests = yes 124 | ;usershare owner only = yes 125 | 126 | load printers = No 127 | printcap name = /dev/null 128 | disable spoolss = Yes 129 | 130 | ;netbios name = ARCH 131 | name resolve order = bcast host lmhosts wins 132 | ;security = user 133 | map to guest = bad user 134 | 135 | #============================ Share Definitions ============================== 136 | #[homes] 137 | # comment = Home Directories 138 | # browseable = no 139 | # writable = yes 140 | 141 | # Enable rw Public share 142 | [Public] 143 | path = /home/live/Public 144 | available = yes 145 | browsable = yes 146 | public = yes 147 | ;only guest = yes 148 | writable = yes 149 | force user = live 150 | 151 | # Un-comment the following and create the netlogon directory for Domain Logons 152 | ; [netlogon] 153 | ; comment = Network Logon Service 154 | ; path = /usr/local/samba/lib/netlogon 155 | ; guest ok = yes 156 | ; writable = no 157 | ; share modes = no 158 | 159 | 160 | # Un-comment the following to provide a specific roving profile share 161 | # the default is to use the user's home directory 162 | ;[Profiles] 163 | ; path = /usr/local/samba/profiles 164 | ; browseable = no 165 | ; guest ok = yes 166 | 167 | 168 | # NOTE: If you have a BSD-style print system there is no need to 169 | # specifically define each individual printer 170 | [printers] 171 | comment = All Printers 172 | path = /usr/spool/samba 173 | browseable = no 174 | # Set public = yes to allow user 'guest account' to print 175 | guest ok = no 176 | writable = no 177 | printable = yes 178 | 179 | # This one is useful for people to share files 180 | ;[tmp] 181 | ; comment = Temporary file space 182 | ; path = /tmp 183 | ; read only = no 184 | ; public = yes 185 | 186 | # A publicly accessible directory, but read only, except for people in 187 | # the "staff" group 188 | ;[public] 189 | ; comment = Public Stuff 190 | ; path = /home/samba 191 | ; public = yes 192 | ; writable = no 193 | ; printable = no 194 | ; write list = @staff 195 | 196 | # Other examples. 197 | # 198 | # A private printer, usable only by fred. Spool data will be placed in fred's 199 | # home directory. Note that fred must have write access to the spool directory, 200 | # wherever it is. 201 | ;[fredsprn] 202 | ; comment = Fred's Printer 203 | ; valid users = fred 204 | ; path = /homes/fred 205 | ; printer = freds_printer 206 | ; public = no 207 | ; writable = no 208 | ; printable = yes 209 | 210 | # A private directory, usable only by fred. Note that fred requires write 211 | # access to the directory. 212 | ;[fredsdir] 213 | ; comment = Fred's Service 214 | ; path = /usr/somewhere/private 215 | ; valid users = fred 216 | ; public = no 217 | ; writable = yes 218 | ; printable = no 219 | 220 | # a service which has a different directory for each machine that connects 221 | # this allows you to tailor configurations to incoming machines. You could 222 | # also use the %U option to tailor it by user name. 223 | # The %m gets replaced with the machine name that is connecting. 224 | ;[pchome] 225 | ; comment = PC Directories 226 | ; path = /usr/pc/%m 227 | ; public = no 228 | ; writable = yes 229 | 230 | # A publicly accessible directory, read/write to all users. Note that all files 231 | # created in the directory by users will be owned by the default user, so 232 | # any user with access can delete any other user's files. Obviously this 233 | # directory must be writable by the default user. Another user could of course 234 | # be specified, in which case all files would be owned by that user instead. 235 | ;[public] 236 | ; path = /usr/somewhere/else/public 237 | ; public = yes 238 | ; only guest = yes 239 | ; writable = yes 240 | ; printable = no 241 | 242 | # The following two entries demonstrate how to share a directory so that two 243 | # users can place files there that will be owned by the specific users. In this 244 | # setup, the directory should be writable by both users and should have the 245 | # sticky bit set on it to prevent abuse. Obviously this could be extended to 246 | # as many users as required. 247 | ;[myshare] 248 | ; comment = Mary's and Fred's stuff 249 | ; path = /usr/somewhere/shared 250 | ; valid users = mary fred 251 | ; public = no 252 | ; writable = yes 253 | ; printable = no 254 | ; create mask = 0765 255 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/sddm.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | Numlock=on 3 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/sddm.conf.d/autologin.conf: -------------------------------------------------------------------------------- 1 | [Autologin] 2 | Relogin=false 3 | Session=sleex 4 | User=live 5 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/sddm.conf.d/settings.conf: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Current=axos 3 | CursorTheme=breeze_cursors 4 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/shadow: -------------------------------------------------------------------------------- 1 | root::14871:::::: 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/skel/.config/autostart/vm-detector.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Exec=/usr/local/bin/vm-detector.sh 4 | Hidden=false 5 | NoDisplay=false 6 | X-GNOME-Autostart-enabled=true 7 | Name=VM detector 8 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/ssh/sshd_config.d/10-archiso.conf: -------------------------------------------------------------------------------- 1 | # Allow root login using password authentication 2 | PasswordAuthentication yes 3 | PermitRootLogin yes 4 | 5 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/sudoers: -------------------------------------------------------------------------------- 1 | ## sudoers file. 2 | ## 3 | ## This file MUST be edited with the 'visudo' command as root. 4 | ## Failure to use 'visudo' may result in syntax or file permission errors 5 | ## that prevent sudo from running. 6 | ## 7 | ## See the sudoers man page for the details on how to write a sudoers file. 8 | ## 9 | Defaults env_reset,pwfeedback 10 | ## 11 | ## Host alias specification 12 | ## 13 | ## Groups of machines. These may include host names (optionally with wildcards), 14 | ## IP addresses, network numbers or netgroups. 15 | # Host_Alias WEBSERVERS = www1, www2, www3 16 | 17 | ## 18 | ## User alias specification 19 | ## 20 | ## Groups of users. These may consist of user names, uids, Unix groups, 21 | ## or netgroups. 22 | # User_Alias ADMINS = millert, dowdy, mikef 23 | 24 | ## 25 | ## Cmnd alias specification 26 | ## 27 | ## Groups of commands. Often used to group related commands together. 28 | # Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \ 29 | # /usr/bin/pkill, /usr/bin/top 30 | # 31 | # Cmnd_Alias REBOOT = /sbin/halt, /sbin/reboot, /sbin/poweroff 32 | # 33 | # Cmnd_Alias DEBUGGERS = /usr/bin/gdb, /usr/bin/lldb, /usr/bin/strace, \ 34 | # /usr/bin/truss, /usr/bin/bpftrace, \ 35 | # /usr/bin/dtrace, /usr/bin/dtruss 36 | # 37 | # Cmnd_Alias PKGMAN = /usr/bin/apt, /usr/bin/dpkg, /usr/bin/rpm, \ 38 | # /usr/bin/yum, /usr/bin/dnf, /usr/bin/zypper, \ 39 | # /usr/bin/pacman 40 | 41 | ## 42 | ## Defaults specification 43 | ## 44 | ## You may wish to keep some of the following environment variables 45 | ## when running commands via sudo. 46 | ## 47 | ## Locale settings 48 | # Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET" 49 | ## 50 | ## Run X applications through sudo; HOME is used to find the 51 | ## .Xauthority file. Note that other programs use HOME to find 52 | ## configuration files and this may lead to privilege escalation! 53 | # Defaults env_keep += "HOME" 54 | ## 55 | ## X11 resource path settings 56 | # Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH" 57 | ## 58 | ## Desktop path settings 59 | # Defaults env_keep += "QTDIR KDEDIR" 60 | ## 61 | ## Allow sudo-run commands to inherit the callers' ConsoleKit session 62 | # Defaults env_keep += "XDG_SESSION_COOKIE" 63 | ## 64 | ## Uncomment to enable special input methods. Care should be taken as 65 | ## this may allow users to subvert the command being run via sudo. 66 | # Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER" 67 | ## 68 | ## Uncomment to use a hard-coded PATH instead of the user's to find commands 69 | # Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" 70 | ## 71 | ## Uncomment to restore the historic behavior where a command is run in 72 | ## the user's own terminal. 73 | # Defaults !use_pty 74 | ## 75 | ## Uncomment to send mail if the user does not enter the correct password. 76 | # Defaults mail_badpass 77 | ## 78 | ## Uncomment to enable logging of a command's output, except for 79 | ## sudoreplay and reboot. Use sudoreplay to play back logged sessions. 80 | ## Sudo will create up to 2,176,782,336 I/O logs before recycling them. 81 | ## Set maxseq to a smaller number if you don't have unlimited disk space. 82 | # Defaults log_output 83 | # Defaults!/usr/bin/sudoreplay !log_output 84 | # Defaults!/usr/local/bin/sudoreplay !log_output 85 | # Defaults!REBOOT !log_output 86 | # Defaults maxseq = 1000 87 | ## 88 | ## Uncomment to disable intercept and log_subcmds for debuggers and 89 | ## tracers. Otherwise, anything that uses ptrace(2) will be unable 90 | ## to run under sudo if intercept_type is set to "trace". 91 | # Defaults!DEBUGGERS !intercept, !log_subcmds 92 | ## 93 | ## Uncomment to disable intercept and log_subcmds for package managers. 94 | ## Some package scripts run a huge number of commands, which is made 95 | ## slower by these options and also can clutter up the logs. 96 | # Defaults!PKGMAN !intercept, !log_subcmds 97 | 98 | ## 99 | ## Runas alias specification 100 | ## 101 | 102 | ## 103 | ## User privilege specification 104 | ## 105 | root ALL=(ALL:ALL) ALL 106 | 107 | ## Uncomment to allow members of group wheel to execute any command 108 | # %wheel ALL=(ALL:ALL) ALL 109 | 110 | ## Same thing without a password 111 | # %wheel ALL=(ALL:ALL) NOPASSWD: ALL 112 | 113 | ## Uncomment to allow members of group sudo to execute any command 114 | # %sudo ALL=(ALL:ALL) ALL 115 | 116 | ## Uncomment to allow any user to run sudo if they know the password 117 | ## of the user they are running the command as (root by default). 118 | # Defaults targetpw # Ask for the password of the target user 119 | # ALL ALL=(ALL:ALL) ALL # WARNING: only use this together with 'Defaults targetpw' 120 | 121 | ## Read drop-in files from /etc/sudoers.d 122 | @includedir /etc/sudoers.d 123 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf: -------------------------------------------------------------------------------- 1 | [Login] 2 | HandleSuspendKey=ignore 3 | HandleHibernateKey=ignore 4 | HandleLidSwitch=ignore 5 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/network/20-ethernet.network: -------------------------------------------------------------------------------- 1 | [Match] 2 | # Matching with "Type=ether" causes issues with containers because it also matches virtual Ethernet interfaces (veth*). 3 | # See https://bugs.archlinux.org/task/70892 4 | # Instead match by globbing the network interface name. 5 | Name=en* 6 | Name=eth* 7 | 8 | [Network] 9 | DHCP=yes 10 | 11 | # systemd-networkd does not set per-interface-type default route metrics 12 | # https://github.com/systemd/systemd/issues/17698 13 | # Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. 14 | # Use values from NetworkManager. From nm_device_get_route_metric_default in 15 | # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c 16 | 17 | [DHCPv4] 18 | RouteMetric=100 19 | 20 | [IPv6AcceptRA] 21 | RouteMetric=100 22 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/network/20-wlan.network: -------------------------------------------------------------------------------- 1 | [Match] 2 | Name=wl* 3 | 4 | [Link] 5 | RequiredForOnline=routable 6 | 7 | [Network] 8 | DHCP=yes 9 | 10 | # systemd-networkd does not set per-interface-type default route metrics 11 | # https://github.com/systemd/systemd/issues/17698 12 | # Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. 13 | # Use values from NetworkManager. From nm_device_get_route_metric_default in 14 | # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c 15 | 16 | [DHCPv4] 17 | RouteMetric=600 18 | 19 | [IPv6AcceptRA] 20 | RouteMetric=600 21 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/network/20-wwan.network: -------------------------------------------------------------------------------- 1 | [Match] 2 | Name=ww* 3 | 4 | [Link] 5 | RequiredForOnline=routable 6 | 7 | [Network] 8 | DHCP=yes 9 | 10 | # systemd-networkd does not set per-interface-type default route metrics 11 | # https://github.com/systemd/systemd/issues/17698 12 | # Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. 13 | # Use values from NetworkManager. From nm_device_get_route_metric_default in 14 | # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c 15 | 16 | [DHCPv4] 17 | RouteMetric=700 18 | 19 | [IPv6AcceptRA] 20 | RouteMetric=700 21 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Choose mirror from the kernel command line 3 | ConditionKernelCommandLine=mirror 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/usr/local/bin/choose-mirror 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: LGPL-2.1-or-later 2 | # 3 | # This file is part of systemd. 4 | # 5 | # systemd is free software; you can redistribute it and/or modify it 6 | # under the terms of the GNU Lesser General Public License as published by 7 | # the Free Software Foundation; either version 2.1 of the License, or 8 | # (at your option) any later version. 9 | 10 | [Unit] 11 | Description=Network Name Resolution 12 | Documentation=man:systemd-resolved.service(8) 13 | Documentation=man:org.freedesktop.resolve1(5) 14 | Documentation=https://www.freedesktop.org/wiki/Software/systemd/writing-network-configuration-managers 15 | Documentation=https://www.freedesktop.org/wiki/Software/systemd/writing-resolver-clients 16 | 17 | DefaultDependencies=no 18 | After=systemd-sysctl.service systemd-sysusers.service 19 | Before=sysinit.target network.target nss-lookup.target shutdown.target initrd-switch-root.target 20 | Conflicts=shutdown.target initrd-switch-root.target 21 | Wants=nss-lookup.target 22 | 23 | [Service] 24 | AmbientCapabilities=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE 25 | BusName=org.freedesktop.resolve1 26 | CapabilityBoundingSet=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE 27 | ExecStart=!!/usr/lib/systemd/systemd-resolved 28 | LockPersonality=yes 29 | MemoryDenyWriteExecute=yes 30 | NoNewPrivileges=yes 31 | PrivateDevices=yes 32 | PrivateTmp=yes 33 | ProtectClock=yes 34 | ProtectControlGroups=yes 35 | ProtectHome=yes 36 | ProtectKernelLogs=yes 37 | ProtectKernelModules=yes 38 | ProtectKernelTunables=yes 39 | ProtectSystem=strict 40 | Restart=always 41 | RestartSec=0 42 | RestrictAddressFamilies=AF_UNIX AF_NETLINK AF_INET AF_INET6 43 | RestrictNamespaces=yes 44 | RestrictRealtime=yes 45 | RestrictSUIDSGID=yes 46 | RuntimeDirectory=systemd/resolve 47 | RuntimeDirectoryPreserve=yes 48 | SystemCallArchitectures=native 49 | SystemCallErrorNumber=EPERM 50 | SystemCallFilter=@system-service 51 | Type=notify 52 | User=systemd-resolve 53 | ImportCredential=network.dns 54 | ImportCredential=network.search_domains 55 | WatchdogSec=3min 56 | 57 | [Install] 58 | WantedBy=sysinit.target 59 | Alias=dbus-org.freedesktop.resolve1.service 60 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: LGPL-2.1-or-later 2 | # 3 | # This file is part of systemd. 4 | # 5 | # systemd is free software; you can redistribute it and/or modify it 6 | # under the terms of the GNU Lesser General Public License as published by 7 | # the Free Software Foundation; either version 2.1 of the License, or 8 | # (at your option) any later version. 9 | 10 | [Unit] 11 | Description=Network Time Synchronization 12 | Documentation=man:systemd-timesyncd.service(8) 13 | ConditionCapability=CAP_SYS_TIME 14 | ConditionVirtualization=!container 15 | DefaultDependencies=no 16 | After=systemd-sysusers.service 17 | Before=time-set.target sysinit.target shutdown.target 18 | Conflicts=shutdown.target 19 | Wants=time-set.target 20 | 21 | [Service] 22 | AmbientCapabilities=CAP_SYS_TIME 23 | BusName=org.freedesktop.timesync1 24 | CapabilityBoundingSet=CAP_SYS_TIME 25 | # Turn off DNSSEC validation for hostname look-ups, since those need the 26 | # correct time to work, but we likely won't acquire that without NTP. Let's 27 | # break this chicken-and-egg cycle here. 28 | Environment=SYSTEMD_NSS_RESOLVE_VALIDATE=0 29 | ExecStart=!!/usr/lib/systemd/systemd-timesyncd 30 | LockPersonality=yes 31 | MemoryDenyWriteExecute=yes 32 | NoNewPrivileges=yes 33 | PrivateDevices=yes 34 | PrivateTmp=yes 35 | ProtectProc=invisible 36 | ProtectControlGroups=yes 37 | ProtectHome=yes 38 | ProtectHostname=yes 39 | ProtectKernelLogs=yes 40 | ProtectKernelModules=yes 41 | ProtectKernelTunables=yes 42 | ProtectSystem=strict 43 | Restart=always 44 | RestartSec=0 45 | RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 46 | RestrictNamespaces=yes 47 | RestrictRealtime=yes 48 | RestrictSUIDSGID=yes 49 | RuntimeDirectory=systemd/timesync 50 | StateDirectory=systemd/timesync 51 | SystemCallArchitectures=native 52 | SystemCallErrorNumber=EPERM 53 | SystemCallFilter=@system-service @clock 54 | Type=notify 55 | User=systemd-timesync 56 | WatchdogSec=3min 57 | 58 | [Install] 59 | WantedBy=sysinit.target 60 | Alias=dbus-org.freedesktop.timesync1.service 61 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Temporary /etc/pacman.d/gnupg directory 3 | 4 | [Mount] 5 | What=tmpfs 6 | Where=/etc/pacman.d/gnupg 7 | Type=tmpfs 8 | Options=mode=0755,noswap 9 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | ExecStart= 3 | ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin root - $TERM 4 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Choose mirror from the kernel command line 3 | ConditionKernelCommandLine=mirror 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/usr/local/bin/choose-mirror 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Initializes Pacman keyring 3 | Requires=etc-pacman.d-gnupg.mount 4 | After=etc-pacman.d-gnupg.mount 5 | BindsTo=etc-pacman.d-gnupg.mount 6 | Before=archlinux-keyring-wkd-sync.service 7 | 8 | [Service] 9 | Type=oneshot 10 | RemainAfterExit=yes 11 | ExecStart=/usr/bin/pacman-key --init 12 | ExecStart=/usr/bin/pacman-key --populate 13 | 14 | [Install] 15 | WantedBy=multi-user.target 16 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: LGPL-2.1-or-later 2 | # 3 | # This file is part of systemd. 4 | # 5 | # systemd is free software; you can redistribute it and/or modify it 6 | # under the terms of the GNU Lesser General Public License as published by 7 | # the Free Software Foundation; either version 2.1 of the License, or 8 | # (at your option) any later version. 9 | 10 | [Unit] 11 | Description=Network Name Resolution 12 | Documentation=man:systemd-resolved.service(8) 13 | Documentation=man:org.freedesktop.resolve1(5) 14 | Documentation=https://www.freedesktop.org/wiki/Software/systemd/writing-network-configuration-managers 15 | Documentation=https://www.freedesktop.org/wiki/Software/systemd/writing-resolver-clients 16 | 17 | DefaultDependencies=no 18 | After=systemd-sysctl.service systemd-sysusers.service 19 | Before=sysinit.target network.target nss-lookup.target shutdown.target initrd-switch-root.target 20 | Conflicts=shutdown.target initrd-switch-root.target 21 | Wants=nss-lookup.target 22 | 23 | [Service] 24 | AmbientCapabilities=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE 25 | BusName=org.freedesktop.resolve1 26 | CapabilityBoundingSet=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE 27 | ExecStart=!!/usr/lib/systemd/systemd-resolved 28 | LockPersonality=yes 29 | MemoryDenyWriteExecute=yes 30 | NoNewPrivileges=yes 31 | PrivateDevices=yes 32 | PrivateTmp=yes 33 | ProtectClock=yes 34 | ProtectControlGroups=yes 35 | ProtectHome=yes 36 | ProtectKernelLogs=yes 37 | ProtectKernelModules=yes 38 | ProtectKernelTunables=yes 39 | ProtectSystem=strict 40 | Restart=always 41 | RestartSec=0 42 | RestrictAddressFamilies=AF_UNIX AF_NETLINK AF_INET AF_INET6 43 | RestrictNamespaces=yes 44 | RestrictRealtime=yes 45 | RestrictSUIDSGID=yes 46 | RuntimeDirectory=systemd/resolve 47 | RuntimeDirectoryPreserve=yes 48 | SystemCallArchitectures=native 49 | SystemCallErrorNumber=EPERM 50 | SystemCallFilter=@system-service 51 | Type=notify 52 | User=systemd-resolve 53 | ImportCredential=network.dns 54 | ImportCredential=network.search_domains 55 | WatchdogSec=3min 56 | 57 | [Install] 58 | WantedBy=sysinit.target 59 | Alias=dbus-org.freedesktop.resolve1.service 60 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Initializes Pacman keyring 3 | Requires=etc-pacman.d-gnupg.mount 4 | After=etc-pacman.d-gnupg.mount 5 | BindsTo=etc-pacman.d-gnupg.mount 6 | Before=archlinux-keyring-wkd-sync.service 7 | 8 | [Service] 9 | Type=oneshot 10 | RemainAfterExit=yes 11 | ExecStart=/usr/bin/pacman-key --init 12 | ExecStart=/usr/bin/pacman-key --populate 13 | 14 | [Install] 15 | WantedBy=multi-user.target 16 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/reflector.service.d/archiso.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionKernelCommandLine=!mirror 3 | 4 | [Service] 5 | Restart=on-failure 6 | RestartSec=10 7 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=PC/SC Smart Card Daemon Activation Socket 3 | 4 | [Socket] 5 | ListenStream=/run/pcscd/pcscd.comm 6 | SocketMode=0666 7 | 8 | [Install] 9 | WantedBy=sockets.target 10 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: LGPL-2.1-or-later 2 | # 3 | # This file is part of systemd. 4 | # 5 | # systemd is free software; you can redistribute it and/or modify it 6 | # under the terms of the GNU Lesser General Public License as published by 7 | # the Free Software Foundation; either version 2.1 of the License, or 8 | # (at your option) any later version. 9 | 10 | [Unit] 11 | Description=Wait Until Kernel Time Synchronized 12 | Documentation=man:systemd-time-wait-sync.service(8) 13 | 14 | # Note that this tool doesn't need CAP_SYS_TIME itself, but its primary 15 | # use case is to run in conjunction with a local NTP service such as 16 | # systemd-timesyncd.service, which is conditioned this way. There might be 17 | # niche use cases where running this service independently is desired, but let's 18 | # make this all "just work" for the general case, and leave it to local 19 | # modifications to make it work in the remaining cases. 20 | 21 | ConditionCapability=CAP_SYS_TIME 22 | ConditionVirtualization=!container 23 | 24 | DefaultDependencies=no 25 | Before=time-sync.target shutdown.target 26 | Wants=time-sync.target 27 | Conflicts=shutdown.target 28 | 29 | [Service] 30 | Type=oneshot 31 | ExecStart=/usr/lib/systemd/systemd-time-wait-sync 32 | TimeoutStartSec=infinity 33 | RemainAfterExit=yes 34 | 35 | [Install] 36 | WantedBy=sysinit.target 37 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: LGPL-2.1-or-later 2 | # 3 | # This file is part of systemd. 4 | # 5 | # systemd is free software; you can redistribute it and/or modify it 6 | # under the terms of the GNU Lesser General Public License as published by 7 | # the Free Software Foundation; either version 2.1 of the License, or 8 | # (at your option) any later version. 9 | 10 | [Unit] 11 | Description=Network Time Synchronization 12 | Documentation=man:systemd-timesyncd.service(8) 13 | ConditionCapability=CAP_SYS_TIME 14 | ConditionVirtualization=!container 15 | DefaultDependencies=no 16 | After=systemd-sysusers.service 17 | Before=time-set.target sysinit.target shutdown.target 18 | Conflicts=shutdown.target 19 | Wants=time-set.target 20 | 21 | [Service] 22 | AmbientCapabilities=CAP_SYS_TIME 23 | BusName=org.freedesktop.timesync1 24 | CapabilityBoundingSet=CAP_SYS_TIME 25 | # Turn off DNSSEC validation for hostname look-ups, since those need the 26 | # correct time to work, but we likely won't acquire that without NTP. Let's 27 | # break this chicken-and-egg cycle here. 28 | Environment=SYSTEMD_NSS_RESOLVE_VALIDATE=0 29 | ExecStart=!!/usr/lib/systemd/systemd-timesyncd 30 | LockPersonality=yes 31 | MemoryDenyWriteExecute=yes 32 | NoNewPrivileges=yes 33 | PrivateDevices=yes 34 | PrivateTmp=yes 35 | ProtectProc=invisible 36 | ProtectControlGroups=yes 37 | ProtectHome=yes 38 | ProtectHostname=yes 39 | ProtectKernelLogs=yes 40 | ProtectKernelModules=yes 41 | ProtectKernelTunables=yes 42 | ProtectSystem=strict 43 | Restart=always 44 | RestartSec=0 45 | RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 46 | RestrictNamespaces=yes 47 | RestrictRealtime=yes 48 | RestrictSUIDSGID=yes 49 | RuntimeDirectory=systemd/timesync 50 | StateDirectory=systemd/timesync 51 | SystemCallArchitectures=native 52 | SystemCallErrorNumber=EPERM 53 | SystemCallFilter=@system-service @clock 54 | Type=notify 55 | User=systemd-timesync 56 | WatchdogSec=3min 57 | 58 | [Install] 59 | WantedBy=sysinit.target 60 | Alias=dbus-org.freedesktop.timesync1.service 61 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf: -------------------------------------------------------------------------------- 1 | # Allow systemd-networkd-wait-online to succeed with one interface, otherwise, if multiple network interfaces exist, 2 | # network-online.target gets needlessly delayed. 3 | # See https://wiki.archlinux.org/title/systemd-networkd#systemd-networkd-wait-online 4 | 5 | [Service] 6 | ExecStart= 7 | ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any 8 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- 1 | # Reflector configuration file for the systemd service. 2 | 3 | --save /etc/pacman.d/mirrorlist 4 | --ipv4 5 | --ipv6 6 | --protocol https 7 | --latest 20 8 | --sort rate 9 | -------------------------------------------------------------------------------- /axos-iso/airootfs/root/.automated_script.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | script_cmdline () 4 | { 5 | local param 6 | for param in $(< /proc/cmdline); do 7 | case "${param}" in 8 | script=*) echo "${param#*=}" ; return 0 ;; 9 | esac 10 | done 11 | } 12 | 13 | automated_script () 14 | { 15 | local script rt 16 | script="$(script_cmdline)" 17 | if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then 18 | if [[ "${script}" =~ ^((http|https|ftp|tftp)://) ]]; then 19 | # there's no synchronization for network availability before executing this script 20 | printf '%s: waiting for network-online.target\n' "$0" 21 | until systemctl --quiet is-active network-online.target; do 22 | sleep 1 23 | done 24 | printf '%s: downloading %s\n' "$0" "${script}" 25 | curl "${script}" --location --retry-connrefused --retry 10 -s -o /tmp/startup_script 26 | rt=$? 27 | else 28 | cp "${script}" /tmp/startup_script 29 | rt=$? 30 | fi 31 | if [[ ${rt} -eq 0 ]]; then 32 | chmod +x /tmp/startup_script 33 | printf '%s: executing automated script\n' "$0" 34 | # note that script is executed when other services (like pacman-init) may be still in progress, please 35 | # synchronize to "systemctl is-system-running --wait" when your script depends on other services 36 | /tmp/startup_script 37 | fi 38 | fi 39 | } 40 | 41 | if [[ $(tty) == "/dev/tty1" ]]; then 42 | automated_script 43 | fi 44 | -------------------------------------------------------------------------------- /axos-iso/airootfs/root/.config/user-dirs.conf: -------------------------------------------------------------------------------- 1 | # This controls the behaviour of xdg-user-dirs-update which is run on user login 2 | # You can also have per-user config in ~/.config/user-dirs.conf, or specify 3 | # the XDG_CONFIG_HOME and/or XDG_CONFIG_DIRS to override this 4 | # 5 | 6 | enabled=False 7 | 8 | # This sets the filename encoding to use. You can specify an explicit 9 | # encoding, or "locale" which means the encoding of the users locale 10 | # will be used 11 | filename_encoding=UTF-8 12 | -------------------------------------------------------------------------------- /axos-iso/airootfs/root/.gnupg/scdaemon.conf: -------------------------------------------------------------------------------- 1 | disable-ccid 2 | disable-pinpad 3 | pcsc-driver /usr/lib/libpcsclite.so 4 | pcsc-shared 5 | -------------------------------------------------------------------------------- /axos-iso/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /axos-iso/airootfs/root/customize_airootfs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | # DO NOT EXECUTE UNLESS YOU KNOW WHAT YOU ARE DOING !!! 6 | 7 | set -e -u 8 | 9 | sed -i -E '/^# *(en_US|en_GB|de_DE|fr_FR|es_ES|it_IT|pt_PT|pt_BR|zh_CN|zh_TW|ja_JP|ko_KR|ru_RU|nl_NL|sv_SE|da_DK|fi_FI|nb_NO|pl_PL)/ s/^# *//' /etc/locale.gen # Main languages 10 | locale-gen 11 | 12 | sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist 13 | 14 | # nsswitch.conf settings 15 | # * Avahi : add 'mdns_minimal' 16 | # * Winbind : add 'wins' 17 | sed -i '/^hosts:/ { 18 | s/\(resolve\)/mdns_minimal \[NOTFOUND=return\] \1/ 19 | s/\(dns\)$/\1 wins/ }' /etc/nsswitch.conf 20 | 21 | # Enable service when available 22 | { [[ -e /usr/lib/systemd/system/bluetooth.service ]] && systemctl enable bluetooth.service; 23 | [[ -e /usr/lib/systemd/system/NetworkManager.service ]] && systemctl enable NetworkManager.service; 24 | [[ -e /usr/lib/systemd/system/nmb.service ]] && systemctl enable nmb.service; 25 | [[ -e /usr/lib/systemd/system/cups.service ]] && systemctl enable cups.service; 26 | [[ -e /usr/lib/systemd/system/smb.service ]] && systemctl enable smb.service; 27 | [[ -e /usr/lib/systemd/system/winbind.service ]] && systemctl enable winbind.service; 28 | [[ -e /usr/lib/systemd/system/ntpd.service ]] && systemctl enable ntpd.service; 29 | } > /dev/null 2>&1 30 | 31 | # Enable sddm display-manager 32 | # ln -s /usr/lib/systemd/system/sddm.service /etc/systemd/system/display-manager.service 33 | systemctl enable sddm.service 34 | 35 | # Add live user 36 | # * groups member 37 | # * user without password 38 | # * sudo no password settings 39 | useradd -m -G 'wheel' -s /bin/bash live 40 | sed -i 's/^\(live:\)!:/\1:/' /etc/shadow 41 | sed -i 's/^#\s\(%wheel\s.*NOPASSWD\)/\1/' /etc/sudoers 42 | 43 | # Pacman keys 44 | pacman-key --init 45 | pacman-key --populate archlinux 46 | 47 | # Set root password 48 | echo "root:root" | chpasswd # Change root password to 'root' 49 | -------------------------------------------------------------------------------- /axos-iso/airootfs/usr/local/bin/Installation_guide: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | exec lynx 'https://wiki.archlinux.org/title/Installation_guide' 6 | -------------------------------------------------------------------------------- /axos-iso/airootfs/usr/local/bin/choose-mirror: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | get_cmdline() { 6 | local param 7 | for param in $(< /proc/cmdline); do 8 | case "${param}" in 9 | $1=*) echo "${param##*=}"; 10 | return 0 11 | ;; 12 | esac 13 | done 14 | } 15 | 16 | mirror=$(get_cmdline mirror) 17 | [[ $mirror = auto ]] && mirror=$(get_cmdline archiso_http_srv) 18 | [[ $mirror ]] || exit 0 19 | 20 | mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig 21 | cat >/etc/pacman.d/mirrorlist << EOF 22 | # 23 | # Arch Linux repository mirrorlist 24 | # Generated by archiso 25 | # 26 | 27 | Server = ${mirror%%/}/\$repo/os/\$arch 28 | EOF 29 | -------------------------------------------------------------------------------- /axos-iso/airootfs/usr/local/bin/vm-detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/airootfs/usr/local/bin/vm-detector -------------------------------------------------------------------------------- /axos-iso/airootfs/usr/local/bin/vm-detector.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo /usr/local/bin/vm-detector 4 | -------------------------------------------------------------------------------- /axos-iso/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /axos-iso/efiboot/loader/entries/01-archiso-x86_64-linux.conf: -------------------------------------------------------------------------------- 1 | title Arch Linux install medium (x86_64, UEFI) 2 | sort-key 01 3 | linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 4 | initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 5 | options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=5G nvme_load=yes copytoram=n 6 | -------------------------------------------------------------------------------- /axos-iso/efiboot/loader/entries/02-archiso-x86_64-memtest86+.conf: -------------------------------------------------------------------------------- 1 | title Memtest86+ 2 | sort-key 02 3 | efi /boot/memtest86+/memtest.efi 4 | -------------------------------------------------------------------------------- /axos-iso/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default 01-archiso-x86_64-linux.conf 3 | beep on 4 | -------------------------------------------------------------------------------- /axos-iso/grub/grub.cfg: -------------------------------------------------------------------------------- 1 | # Load partition table and file system modules 2 | insmod part_gpt 3 | insmod part_msdos 4 | insmod fat 5 | insmod iso9660 6 | insmod ntfs 7 | insmod ntfscomp 8 | insmod exfat 9 | insmod udf 10 | 11 | # Use graphics-mode output 12 | if loadfont "${prefix}/fonts/unicode.pf2" ; then 13 | insmod all_video 14 | set gfxmode="auto" 15 | terminal_input console 16 | terminal_output gfxterm 17 | fi 18 | 19 | # Enable serial console 20 | insmod serial 21 | insmod usbserial_common 22 | insmod usbserial_ftdi 23 | insmod usbserial_pl2303 24 | insmod usbserial_usbdebug 25 | if serial --unit=0 --speed=115200; then 26 | terminal_input --append serial 27 | terminal_output --append serial 28 | fi 29 | 30 | # Get a human readable platform identifier 31 | if [ "${grub_platform}" == 'efi' ]; then 32 | archiso_platform='UEFI' 33 | if [ "${grub_cpu}" == 'x86_64' ]; then 34 | archiso_platform="x64 ${archiso_platform}" 35 | elif [ "${grub_cpu}" == 'i386' ]; then 36 | archiso_platform="IA32 ${archiso_platform}" 37 | else 38 | archiso_platform="${grub_cpu} ${archiso_platform}" 39 | fi 40 | elif [ "${grub_platform}" == 'pc' ]; then 41 | archiso_platform='BIOS' 42 | else 43 | archiso_platform="${grub_cpu} ${grub_platform}" 44 | fi 45 | 46 | # Set default menu entry 47 | default=axos 48 | timeout=15 49 | timeout_style=menu 50 | 51 | # Set theme 52 | set gfxpayload=keep 53 | insmod jpeg 54 | insmod png 55 | loadfont ($root)/boot/grub/themes/axos/terminus-12.pf2 56 | loadfont ($root)/boot/grub/themes/axos/terminus-14.pf2 57 | loadfont ($root)/boot/grub/themes/axos/terminus-16.pf2 58 | loadfont ($root)/boot/grub/themes/axos/terminus-18.pf2 59 | loadfont ($root)/boot/grub/themes/axos/unifont-16.pf2 60 | loadfont ($root)/boot/grub/themes/axos/unifont-24.pf2 61 | loadfont ($root)/boot/grub/themes/axos/unifont-32.pf2 62 | set theme=($root)/boot/grub/themes/axos/theme.txt 63 | export theme 64 | 65 | 66 | # Menu entries 67 | 68 | menuentry "AxOS install medium (%ARCH%, ${archiso_platform})" --class axos --class gnu-linux --class gnu --class os --id 'axos' { 69 | set gfxpayload=keep 70 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisodevice=UUID=${ARCHISO_UUID} quiet splash loglevel=3 udev.log_level=3 vt.global_cursor_default=0 cow_spacesize=5G copytoram=n nvme_load=yes 71 | initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 72 | } 73 | 74 | 75 | if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then 76 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 77 | set gfxpayload=800x600,1024x768 78 | linux /boot/memtest86+/memtest.efi 79 | } 80 | fi 81 | if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then 82 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 83 | set gfxpayload=800x600,1024x768 84 | linux /boot/memtest86+/memtest 85 | } 86 | fi 87 | if [ "${grub_platform}" == 'efi' ]; then 88 | if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then 89 | menuentry 'UEFI Shell' --class efi { 90 | chainloader /shellx64.efi 91 | } 92 | elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then 93 | menuentry 'UEFI Shell' --class efi { 94 | chainloader /shellia32.efi 95 | } 96 | fi 97 | 98 | menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { 99 | fwsetup 100 | } 101 | fi 102 | 103 | menuentry 'System shutdown' --class shutdown --class poweroff { 104 | echo 'System shutting down...' 105 | halt 106 | } 107 | 108 | menuentry 'System restart' --class reboot --class restart { 109 | echo 'System rebooting...' 110 | reboot 111 | } 112 | 113 | 114 | # GRUB init tune for accessibility 115 | play 600 988 1 1319 4 116 | -------------------------------------------------------------------------------- /axos-iso/grub/loopback.cfg: -------------------------------------------------------------------------------- 1 | # https://www.supergrubdisk.org/wiki/Loopback.cfg 2 | 3 | # Search for the ISO volume 4 | search --no-floppy --set=archiso_img_dev --file "${iso_path}" 5 | probe --set archiso_img_dev_uuid --fs-uuid "${archiso_img_dev}" 6 | 7 | # Get a human readable platform identifier 8 | if [ "${grub_platform}" == 'efi' ]; then 9 | archiso_platform='UEFI' 10 | if [ "${grub_cpu}" == 'x86_64' ]; then 11 | archiso_platform="x64 ${archiso_platform}" 12 | elif [ "${grub_cpu}" == 'i386' ]; then 13 | archiso_platform="IA32 ${archiso_platform}" 14 | else 15 | archiso_platform="${grub_cpu} ${archiso_platform}" 16 | fi 17 | elif [ "${grub_platform}" == 'pc' ]; then 18 | archiso_platform='BIOS' 19 | else 20 | archiso_platform="${grub_cpu} ${grub_platform}" 21 | fi 22 | 23 | # Set default menu entry 24 | default=axos 25 | timeout=15 26 | timeout_style=menu 27 | 28 | 29 | # Menu entries 30 | 31 | menuentry "AxOS install medium (%ARCH%, ${archiso_platform})" --class axos --class gnu-linux --class gnu --class os --id 'axos' { 32 | set gfxpayload=keep 33 | linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}" 34 | initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img 35 | } 36 | 37 | if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then 38 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 39 | set gfxpayload=800x600,1024x768 40 | linux /boot/memtest86+/memtest.efi 41 | } 42 | fi 43 | if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then 44 | menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { 45 | set gfxpayload=800x600,1024x768 46 | linux /boot/memtest86+/memtest 47 | } 48 | fi 49 | if [ "${grub_platform}" == 'efi' ]; then 50 | if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then 51 | menuentry 'UEFI Shell' --class efi { 52 | chainloader /shellx64.efi 53 | } 54 | elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then 55 | menuentry 'UEFI Shell' --class efi { 56 | chainloader /shellia32.efi 57 | } 58 | fi 59 | 60 | menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { 61 | fwsetup 62 | } 63 | fi 64 | 65 | menuentry 'System shutdown' --class shutdown --class poweroff { 66 | echo 'System shutting down...' 67 | halt 68 | } 69 | 70 | menuentry 'System restart' --class reboot --class restart { 71 | echo 'System rebooting...' 72 | reboot 73 | } 74 | -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/background.jpg -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/4MLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/4MLinux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/AlpineLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/AlpineLinux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/Manjaro.i686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/Manjaro.i686.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/Manjaro.x86_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/Manjaro.x86_64.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/SystemRescueCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/SystemRescueCD.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/android.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/anonymous.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/antergos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/antergos.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/arch.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/archcraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/archcraft.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/archlinux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/arcolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/arcolinux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/artix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/artix.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/axos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/axos.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/brunch-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/brunch-settings.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/brunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/brunch.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/cancel.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/chakra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/chakra.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/chimera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/chimera.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/debian.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/deepin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/deepin.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/devuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/devuan.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/driver.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/edit.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/efi.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/elementary.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/endeavouros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/endeavouros.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/fedora.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/find.efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/find.efi.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/find.none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/find.none.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/freebsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/freebsd.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/gentoo.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/gnu-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/gnu-linux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/gpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/gpart.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/haiku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/haiku.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/help.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/kali.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/kaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/kaos.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/kbd.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/kernel.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/korora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/korora.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/kubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/kubuntu.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/lang.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/lfs.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/linux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/linuxmint.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/lubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/lubuntu.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/macosx.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/mageia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/mageia.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/manjaro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/manjaro.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/manjarolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/manjarolinux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/memtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/memtest.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/mx-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/mx-linux.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/neon.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/nixos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/nixos.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/openSUSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/openSUSE.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/opensuse.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/parrot.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/pop-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/pop-os.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/pop.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/recovery.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/regolith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/regolith.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/restart.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/shutdown.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/siduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/siduction.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/solus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/solus.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/steamos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/steamos.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/submenu.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/type.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/tz.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/ubuntu.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/ubuntuDDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/ubuntuDDE.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/unknown.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/unset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/unset.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/void.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/windows.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/xubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/xubuntu.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/icons/zorin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/icons/zorin.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/info.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/logo.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/select_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/select_c.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/select_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/select_e.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/select_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/select_w.png -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/terminus-12.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/terminus-12.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/terminus-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/terminus-14.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/terminus-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/terminus-16.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/terminus-18.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/terminus-18.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/theme.txt: -------------------------------------------------------------------------------- 1 | # GRUB2 gfxmenu Linux theme 2 | # Designed for any resolution 3 | 4 | # Global Property 5 | title-text: "" 6 | desktop-image: "background.jpg" 7 | desktop-color: "#242424" 8 | terminal-font: "Terminus Regular 14" 9 | terminal-box: "terminal_box_*.png" 10 | terminal-left: "0" 11 | terminal-top: "0" 12 | terminal-width: "100%" 13 | terminal-height: "100%" 14 | terminal-border: "0" 15 | 16 | # Show the boot menu 17 | + boot_menu { 18 | left = 19% 19 | top = 18% 20 | width = 28% 21 | height = 54% 22 | item_font = "Unifont Regular 16" 23 | item_color = "#efefef" 24 | selected_item_color = "#ffffff" 25 | icon_width = 32 26 | icon_height = 32 27 | item_icon_space = 6 28 | item_height = 48 29 | item_padding = 3 30 | item_spacing = 6 31 | selected_item_pixmap_style = "select_*.png" 32 | } 33 | 34 | + image { 35 | top = 0% 36 | left = 0% 37 | file = "info.png" 38 | } 39 | 40 | # Show a countdown message using the label component 41 | + label { 42 | top = 78% 43 | left = 19% 44 | width = 28% 45 | align = "center" 46 | id = "__timeout__" 47 | text = "Booting in %d seconds" 48 | color = "#ffffff" 49 | font = "Unifont Regular 16" 50 | } 51 | -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/unifont-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/unifont-16.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/unifont-24.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/unifont-24.pf2 -------------------------------------------------------------------------------- /axos-iso/grub/themes/axos/unifont-32.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxOS-project/AxOS/d66d8ef36a91cd126a56b97c4d71453a011f7e39/axos-iso/grub/themes/axos/unifont-32.pf2 -------------------------------------------------------------------------------- /axos-iso/packages.x86_64: -------------------------------------------------------------------------------- 1 | ##### Base packages 2 | alsa-utils 3 | amd-ucode 4 | arch-install-scripts 5 | archinstall 6 | b43-fwcutter 7 | base 8 | bash 9 | bcachefs-tools 10 | bind 11 | bolt 12 | brltty 13 | broadcom-wl 14 | btrfs-progs 15 | clonezilla 16 | cloud-init 17 | cryptsetup 18 | darkhttpd 19 | ddrescue 20 | dhclient 21 | dhcpcd 22 | diffutils 23 | dmidecode 24 | dmraid 25 | dnsmasq 26 | dosfstools 27 | e2fsprogs 28 | edk2-shell 29 | efibootmgr 30 | espeakup 31 | ethtool 32 | exfatprogs 33 | f2fs-tools 34 | fakeroot 35 | fatresize 36 | foot-terminfo 37 | fsarchiver 38 | gpart 39 | gpm 40 | gptfdisk 41 | grml-zsh-config 42 | hdparm 43 | hyperv 44 | intel-ucode 45 | irssi 46 | iw 47 | iwd 48 | jfsutils 49 | kitty-terminfo 50 | ldns 51 | less 52 | lftp 53 | libfido2 54 | libusb-compat 55 | linux 56 | linux-firmware 57 | livecd-sounds 58 | lsscsi 59 | lvm2 60 | lynx 61 | man-db 62 | man-pages 63 | mc 64 | mdadm 65 | memtest86+ 66 | memtest86+-efi 67 | mkinitcpio 68 | mkinitcpio-archiso 69 | mkinitcpio-nfs-utils 70 | modemmanager 71 | mtools 72 | nano 73 | nbd 74 | ndisc6 75 | nfs-utils 76 | nilfs-utils 77 | nmap 78 | ntfs-3g 79 | ntp 80 | nvme-cli 81 | open-iscsi 82 | open-vm-tools 83 | openconnect 84 | openpgp-card-tools 85 | openssh 86 | openvpn 87 | os-prober 88 | partclone 89 | parted 90 | partimage 91 | pcsclite 92 | ppp 93 | pptpclient 94 | pv 95 | qemu-guest-agent 96 | refind 97 | reflector 98 | rp-pppoe 99 | rsync 100 | rxvt-unicode-terminfo 101 | screen 102 | sdparm 103 | sequoia-sq 104 | sg3_utils 105 | smartmontools 106 | sof-firmware 107 | squashfs-tools 108 | sudo 109 | syslinux 110 | systemd-resolvconf 111 | tcpdump 112 | terminus-font 113 | testdisk 114 | tmux 115 | tpm2-tools 116 | tpm2-tss 117 | udftools 118 | usb_modeswitch 119 | usbmuxd 120 | usbutils 121 | vim 122 | vpnc 123 | wireless-regdb 124 | wireless_tools 125 | wpa_supplicant 126 | wvdial 127 | xfsprogs 128 | xl2tpd 129 | zsh 130 | 131 | ##### System Utilities 132 | neofetch 133 | firefox 134 | sddm 135 | bash-completion 136 | networkmanager 137 | pipewire-pulse 138 | inxi 139 | power-profiles-daemon 140 | sddm-theme-axos 141 | packagekit 142 | packagekit-qt6 143 | gnome-packagekit 144 | papirus-icon-theme 145 | virt-what 146 | 147 | 148 | ##### KDE packages 149 | #plasma 150 | #xorg 151 | #filelight 152 | #partitionmanager 153 | #kwrite 154 | #kdialog 155 | #dolphin 156 | #konsole 157 | 158 | ##### Sleex packages 159 | sleex 160 | hyprland 161 | 162 | ##### Installer 163 | axinstall 164 | axinstall-cli 165 | 166 | ##### AxOS packages 167 | about-axos 168 | axskel 169 | axos-hooks 170 | axos-hooks-extra 171 | #axos-nf 172 | plymouth-theme-axos 173 | epsilon 174 | axuralis 175 | axctl 176 | 177 | axos/grub 178 | axos/plymouth 179 | 180 | ##### Drivers for GPU 181 | xf86-video-intel 182 | xf86-video-amdgpu 183 | xf86-video-nouveau 184 | 185 | xf86-video-vesa 186 | 187 | ##### Chaotic 188 | chaotic-keyring 189 | chaotic-mirrorlist 190 | 191 | -------------------------------------------------------------------------------- /axos-iso/pacman.conf: -------------------------------------------------------------------------------- 1 | # 2 | # /etc/pacman.conf 3 | # 4 | # See the pacman.conf(5) manpage for option and repository directives 5 | 6 | # 7 | # GENERAL OPTIONS 8 | # 9 | [options] 10 | # The following paths are commented out with their default values listed. 11 | # If you wish to use different paths, uncomment and update the paths. 12 | #RootDir = / 13 | #DBPath = /var/lib/pacman/ 14 | #CacheDir = /var/cache/pacman/pkg/ 15 | #LogFile = /var/log/pacman.log 16 | #GPGDir = /etc/pacman.d/gnupg/ 17 | #HookDir = /etc/pacman.d/hooks/ 18 | HoldPkg = pacman glibc 19 | #XferCommand = /usr/bin/curl -L -C - -f -o %o %u 20 | #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u 21 | #CleanMethod = KeepInstalled 22 | Architecture = auto 23 | 24 | # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup 25 | #IgnorePkg = 26 | #IgnoreGroup = 27 | 28 | #NoUpgrade = 29 | #NoExtract = 30 | 31 | # Misc options 32 | #UseSyslog 33 | #Color 34 | #NoProgressBar 35 | # We cannot check disk space from within a chroot environment 36 | #CheckSpace 37 | #VerbosePkgLists 38 | ParallelDownloads = 5 39 | 40 | # By default, pacman accepts packages signed by keys that its local keyring 41 | # trusts (see pacman-key and its man page), as well as unsigned packages. 42 | SigLevel = Required DatabaseOptional 43 | LocalFileSigLevel = Optional 44 | #RemoteFileSigLevel = Required 45 | 46 | # NOTE: You must run `pacman-key --init` before first using pacman; the local 47 | # keyring can then be populated with the keys of all official AxOS 48 | # packagers with `pacman-key --populate archlinux`. 49 | 50 | # 51 | # REPOSITORIES 52 | # - can be defined here or included from another file 53 | # - pacman will search repositories in the order defined here 54 | # - local/custom mirrors can be added here or in separate files 55 | # - repositories listed first will take precedence when packages 56 | # have identical names, regardless of version number 57 | # - URLs will have $repo replaced by the name of the current repo 58 | # - URLs will have $arch replaced by the name of the architecture 59 | # 60 | # Repository entries are of the format: 61 | # [repo-name] 62 | # Server = ServerName 63 | # Include = IncludePath 64 | # 65 | # The header [repo-name] is crucial - it must be present and 66 | # uncommented to enable the repo. 67 | # 68 | 69 | # The testing repositories are disabled by default. To enable, uncomment the 70 | # repo name header and Include lines. You can add preferred servers immediately 71 | # after the header, and they will be used before the default mirrors. 72 | 73 | #[testing] 74 | #Include = /etc/pacman.d/mirrorlist 75 | 76 | [core] 77 | Include = /etc/pacman.d/mirrorlist 78 | 79 | [extra] 80 | Include = /etc/pacman.d/mirrorlist 81 | 82 | #[community-testing] 83 | #Include = /etc/pacman.d/mirrorlist 84 | 85 | #[community] 86 | #Include = /etc/pacman.d/mirrorlist 87 | 88 | # If you want to run 32 bit applications on your x86_64 system, 89 | # enable the multilib repositories as required here. 90 | 91 | #[multilib-testing] 92 | #Include = /etc/pacman.d/mirrorlist 93 | 94 | #[multilib] 95 | #Include = /etc/pacman.d/mirrorlist 96 | 97 | # An example of a custom package repository. See the pacman manpage for 98 | # tips on creating your own repositories. 99 | #[custom] 100 | #SigLevel = Optional TrustAll 101 | #Server = file:///home/custompkgs 102 | 103 | #AxOS repo 104 | [axos] 105 | SigLevel = Optional TrustedOnly 106 | #Server = file:///home/ardox/Documents/mirrors/x86_64 107 | Server = https://www.axos-project.com/AxMirrors/$arch 108 | 109 | #Chaotic aur for iso creation (not applied in system) 110 | [chaotic-aur] 111 | SigLevel = Optional TrustAll 112 | Include = /etc/pacman.d/chaotic-mirrorlist 113 | 114 | #Calamares repo 115 | [alci_repo] 116 | SigLevel = Optional TrustedOnly 117 | Server = https://arch-linux-calamares-installer.github.io/$repo/$arch 118 | -------------------------------------------------------------------------------- /axos-iso/profiledef.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # shellcheck disable=SC2034 3 | 4 | iso_name="AxOS" 5 | iso_publisher="Ardox <@levraiardox>" 6 | iso_application="AxOS Live/Rescue CD" 7 | iso_version="$(date +%y.%m)" 8 | iso_label="AxOS" 9 | install_dir="arch" 10 | buildmodes=('iso') 11 | bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 12 | 'uefi-ia32.grub.esp' 'uefi-x64.grub.esp' 13 | 'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito') 14 | arch="x86_64" 15 | pacman_conf="pacman.conf" 16 | airootfs_image_type="squashfs" 17 | airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M') 18 | file_permissions=( 19 | ["/etc/shadow"]="0:0:400" 20 | ["/root"]="0:0:750" 21 | ["/root/.automated_script.sh"]="0:0:755" 22 | ["/usr/local/bin/choose-mirror"]="0:0:755" 23 | ["/usr/local/bin/Installation_guide"]="0:0:755" 24 | ["/usr/local/bin/livecd-sound"]="0:0:755" 25 | ["/usr/local/bin/alci-displaymanager-check"]="0:0:755" 26 | ["/usr/local/bin/vm-detector"]="0:0:755" 27 | ["/usr/local/bin/vm-detector.sh"]="0:0:755" 28 | ) 29 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_head.cfg: -------------------------------------------------------------------------------- 1 | SERIAL 0 115200 2 | UI vesamenu.c32 3 | MENU TITLE AxOS 4 | 5 | MENU WIDTH 78 6 | MENU MARGIN 4 7 | MENU ROWS 7 8 | MENU VSHIFT 10 9 | MENU TABMSGROW 14 10 | MENU CMDLINEROW 14 11 | MENU HELPMSGROW 16 12 | MENU HELPMSGENDROW 29 13 | 14 | # Refer to https://wiki.syslinux.org/wiki/index.php/Comboot/menu.c32 15 | 16 | MENU COLOR border 30;44 #40ffffff #a0000000 std 17 | MENU COLOR title 1;36;44 #9033ccff #a0000000 std 18 | MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all 19 | MENU COLOR unsel 37;44 #50ffffff #a0000000 std 20 | MENU COLOR help 37;40 #c0ffffff #a0000000 std 21 | MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std 22 | MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std 23 | MENU COLOR msg07 37;40 #90ffffff #a0000000 std 24 | MENU COLOR tabmsg 31;40 #30ffffff #00000000 std 25 | 26 | MENU CLEAR 27 | MENU IMMEDIATE 28 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_pxe-linux.cfg: -------------------------------------------------------------------------------- 1 | LABEL arch64_nbd 2 | TEXT HELP 3 | Boot the AxOS install medium using NBD. 4 | It allows you to install AxOS or perform system maintenance. 5 | ENDTEXT 6 | MENU LABEL AxOS install medium (x86_64, NBD) 7 | LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 8 | INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 9 | APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver} checksum verify 10 | SYSAPPEND 3 11 | 12 | LABEL arch64_nfs 13 | TEXT HELP 14 | Boot the AxOS live medium using NFS. 15 | It allows you to install AxOS or perform system maintenance. 16 | ENDTEXT 17 | MENU LABEL AxOS install medium (x86_64, NFS) 18 | LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 19 | INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 20 | APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt cms_verify=y 21 | SYSAPPEND 3 22 | 23 | LABEL arch64_http 24 | TEXT HELP 25 | Boot the AxOS live medium using HTTP. 26 | It allows you to install AxOS or perform system maintenance. 27 | ENDTEXT 28 | MENU LABEL AxOS install medium (x86_64, HTTP) 29 | LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 30 | INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 31 | APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ cms_verify=y 32 | SYSAPPEND 3 33 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_pxe.cfg: -------------------------------------------------------------------------------- 1 | INCLUDE archiso_head.cfg 2 | 3 | INCLUDE archiso_pxe-linux.cfg 4 | 5 | INCLUDE archiso_tail.cfg 6 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_sys-linux.cfg: -------------------------------------------------------------------------------- 1 | LABEL arch64 2 | TEXT HELP 3 | Boot the AxOS install medium on BIOS. 4 | It allows you to install AxOS or perform system maintenance. 5 | ENDTEXT 6 | MENU LABEL AxOS install medium (x86_64, BIOS) 7 | LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux 8 | INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img 9 | APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% 10 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_sys.cfg: -------------------------------------------------------------------------------- 1 | INCLUDE archiso_head.cfg 2 | 3 | DEFAULT arch64 4 | TIMEOUT 150 5 | 6 | INCLUDE archiso_sys-linux.cfg 7 | 8 | INCLUDE archiso_tail.cfg 9 | -------------------------------------------------------------------------------- /axos-iso/syslinux/archiso_tail.cfg: -------------------------------------------------------------------------------- 1 | LABEL existing 2 | TEXT HELP 3 | Boot an existing operating system. 4 | Press TAB to edit the disk and partition number to boot. 5 | ENDTEXT 6 | MENU LABEL Boot existing OS 7 | COM32 chain.c32 8 | APPEND hd0 0 9 | 10 | # https://www.memtest.org/ 11 | LABEL memtest 12 | MENU LABEL Run Memtest86+ (RAM test) 13 | LINUX /boot/memtest86+/memtest 14 | 15 | # https://wiki.syslinux.org/wiki/index.php/Hdt_(Hardware_Detection_Tool) 16 | LABEL hdt 17 | MENU LABEL Hardware Information (HDT) 18 | COM32 hdt.c32 19 | APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz 20 | 21 | LABEL reboot 22 | TEXT HELP 23 | Reboot computer. 24 | The computer's firmware must support APM. 25 | ENDTEXT 26 | MENU LABEL Reboot 27 | COM32 reboot.c32 28 | 29 | LABEL poweroff 30 | TEXT HELP 31 | Power off computer. 32 | The computer's firmware must support APM. 33 | ENDTEXT 34 | MENU LABEL Power Off 35 | COM32 poweroff.c32 36 | -------------------------------------------------------------------------------- /axos-iso/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- 1 | DEFAULT select 2 | 3 | LABEL select 4 | COM32 whichsys.c32 5 | APPEND -pxe- pxe -sys- sys -iso- sys 6 | 7 | LABEL pxe 8 | CONFIG archiso_pxe.cfg 9 | 10 | LABEL sys 11 | CONFIG archiso_sys.cfg 12 | --------------------------------------------------------------------------------