├── .claude └── settings.local.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── debian ├── .gitignore ├── changelog ├── compat ├── control ├── copyright ├── postinst ├── releasename └── rules ├── get-depends.sh ├── get-pkg.sh ├── linbofs ├── .env ├── .profile ├── etc │ ├── busybox.conf │ ├── filesystems │ ├── fstab │ ├── group │ ├── inittab │ ├── linbo-version │ ├── modules │ ├── nsswitch.conf │ ├── passwd │ ├── rsync.exclude │ ├── services │ ├── splash.conf │ └── udev │ │ └── rules.d │ │ ├── 90-qemu.rules │ │ └── 91-permissions.rules ├── init.sh ├── linbo.sh └── usr │ ├── bin │ ├── gui_ctl │ ├── linbo_auth │ ├── linbo_autostart │ ├── linbo_bat │ ├── linbo_bitmask │ ├── linbo_cmd │ ├── linbo_cpu │ ├── linbo_create_image │ ├── linbo_download │ ├── linbo_download_image │ ├── linbo_fakestart │ ├── linbo_forcesync │ ├── linbo_forcesyncstart │ ├── linbo_format │ ├── linbo_fstype │ ├── linbo_hostname │ ├── linbo_initcache │ ├── linbo_initcache_format │ ├── linbo_ip │ ├── linbo_label │ ├── linbo_link_blkdev │ ├── linbo_listimages │ ├── linbo_login │ ├── linbo_mac │ ├── linbo_mem │ ├── linbo_mkinfo │ ├── linbo_mktorrent │ ├── linbo_mount │ ├── linbo_mountcache │ ├── linbo_netmask │ ├── linbo_partition │ ├── linbo_partition_format │ ├── linbo_patch_registry │ ├── linbo_postsync │ ├── linbo_preregister │ ├── linbo_prestart │ ├── linbo_readfile │ ├── linbo_register │ ├── linbo_seed │ ├── linbo_size │ ├── linbo_size_cache │ ├── linbo_size_disk │ ├── linbo_split_startconf │ ├── linbo_start │ ├── linbo_sync │ ├── linbo_syncstart │ ├── linbo_update │ ├── linbo_update_gui │ ├── linbo_upload │ ├── linbo_version │ ├── linbo_vnc │ ├── linbo_warmstart │ ├── linbo_wrapper │ └── linbo_writefile │ └── share │ ├── linbo │ └── shell_functions │ ├── plymouth │ └── themes │ │ ├── default.plymouth │ │ └── linbo-splash │ │ ├── arrows-1.png │ │ ├── arrows-10.png │ │ ├── arrows-11.png │ │ ├── arrows-12.png │ │ ├── arrows-13.png │ │ ├── arrows-14.png │ │ ├── arrows-15.png │ │ ├── arrows-16.png │ │ ├── arrows-17.png │ │ ├── arrows-18.png │ │ ├── arrows-2.png │ │ ├── arrows-3.png │ │ ├── arrows-4.png │ │ ├── arrows-5.png │ │ ├── arrows-6.png │ │ ├── arrows-7.png │ │ ├── arrows-8.png │ │ ├── arrows-9.png │ │ ├── linbo-splash.script │ │ └── logo_no_arrows.png │ ├── qt │ └── german_keymap.qmap │ └── udhcpc │ └── default.script └── serverfs ├── etc ├── default │ ├── linbo-multicast │ └── linbo-torrent ├── linuxmuster │ └── linbo │ │ ├── custom_kernel.ex │ │ ├── firmware.ex │ │ ├── inittab.ex │ │ ├── ssh_config │ │ ├── start.conf.default │ │ └── wpa_supplicant.conf.ex ├── logrotate.d │ └── linuxmuster-linbo7 └── systemd │ └── system │ ├── linbo-multicast.service │ ├── linbo-torrent.service │ └── opentracker.service ├── srv └── linbo │ ├── boot │ └── grub │ │ └── themes │ │ └── linbo │ │ ├── icons │ │ ├── arch.png │ │ ├── arch_newstart.png │ │ ├── arch_start.png │ │ ├── arch_syncstart.png │ │ ├── centos.png │ │ ├── centos_newstart.png │ │ ├── centos_start.png │ │ ├── centos_syncstart.png │ │ ├── debian.png │ │ ├── debian_newstart.png │ │ ├── debian_start.png │ │ ├── debian_syncstart.png │ │ ├── fedora.png │ │ ├── fedora_newstart.png │ │ ├── fedora_start.png │ │ ├── fedora_syncstart.png │ │ ├── gentoo.png │ │ ├── gentoo_newstart.png │ │ ├── gentoo_start.png │ │ ├── gentoo_syncstart.png │ │ ├── kubuntu.png │ │ ├── kubuntu_newstart.png │ │ ├── kubuntu_start.png │ │ ├── kubuntu_syncstart.png │ │ ├── linbo.png │ │ ├── linux.png │ │ ├── linux_newstart.png │ │ ├── linux_start.png │ │ ├── linux_syncstart.png │ │ ├── linuxmint.png │ │ ├── linuxmint_newstart.png │ │ ├── linuxmint_start.png │ │ ├── linuxmint_syncstart.png │ │ ├── lubuntu.png │ │ ├── lubuntu_newstart.png │ │ ├── lubuntu_start.png │ │ ├── lubuntu_syncstart.png │ │ ├── opensuse.png │ │ ├── opensuse_newstart.png │ │ ├── opensuse_start.png │ │ ├── opensuse_syncstart.png │ │ ├── ubuntu.png │ │ ├── ubuntu_newstart.png │ │ ├── ubuntu_start.png │ │ ├── ubuntu_syncstart.png │ │ ├── unknown.png │ │ ├── unknown_newstart.png │ │ ├── unknown_start.png │ │ ├── unknown_syncstart.png │ │ ├── win10.png │ │ ├── win10_newstart.png │ │ ├── win10_start.png │ │ ├── win10_syncstart.png │ │ ├── win_newstart.png │ │ ├── win_start.png │ │ ├── win_syncstart.png │ │ ├── xubuntu.png │ │ ├── xubuntu_newstart.png │ │ ├── xubuntu_start.png │ │ └── xubuntu_syncstart.png │ │ ├── linbo_logo_big.png │ │ ├── select_c.png │ │ ├── select_e.png │ │ ├── select_n.png │ │ ├── select_ne.png │ │ ├── select_nw.png │ │ ├── select_s.png │ │ ├── select_se.png │ │ ├── select_sw.png │ │ ├── select_w.png │ │ ├── terminal_box_c.png │ │ ├── terminal_box_e.png │ │ ├── terminal_box_n.png │ │ ├── terminal_box_ne.png │ │ ├── terminal_box_nw.png │ │ ├── terminal_box_s.png │ │ ├── terminal_box_se.png │ │ ├── terminal_box_sw.png │ │ ├── terminal_box_w.png │ │ ├── theme.txt │ │ └── unifont-regular-16.pf2 │ ├── examples │ ├── README.txt │ ├── image.postsync │ ├── image.prestart │ ├── start.conf.opensuse │ ├── start.conf.ubuntu │ ├── start.conf.ubuntu-efi │ ├── start.conf.ubuntu-opensuse-efi │ ├── start.conf.ubuntu2004 │ ├── start.conf.ubuntu2004-efi │ ├── start.conf.ubuntu2004-opensuse-efi │ ├── start.conf.uniform-block-device-names │ ├── start.conf.win10 │ ├── start.conf.win10-efi │ ├── start.conf.win10-ubuntu │ ├── start.conf.win10-ubuntu-efi │ ├── start.conf.win10-ubuntu2004 │ ├── start.conf.win10-ubuntu2004-efi │ ├── start.conf.win10-win10-efi │ ├── win10.global.reg │ ├── win10.image.reg │ └── win11.global.reg │ ├── german.kbd │ ├── icons │ ├── README │ ├── debian.png │ ├── default.png │ ├── fedora.png │ ├── freebsd.png │ ├── linbo_wallpaper_1024x768.png │ ├── linbo_wallpaper_640x400.png │ ├── linbo_wallpaper_800x600.png │ ├── mint.png │ ├── other.png │ ├── redhat.png │ ├── suse.png │ ├── ubuntu.png │ ├── win10.png │ ├── win7.png │ └── winxp.png │ └── linuxmuster-win │ ├── README │ ├── custom.cmd.ex │ ├── install.cmd │ ├── prepare-for-image.cmd │ ├── save-activation-status.cmd │ ├── start-tasks.cmd │ └── uninstall.cmd ├── usr ├── sbin │ ├── linbo-cloop2qcow2 │ ├── linbo-multicast │ ├── linbo-remote │ ├── linbo-torrent │ └── update-linbofs └── share │ └── linuxmuster │ ├── linbo │ ├── efipxe │ ├── graphics │ │ ├── linbo_icon_194x194.png │ │ ├── linbo_wallpaper.png │ │ ├── logo16.ppm │ │ └── logo16.txt │ ├── harvest-app.sh │ ├── linbo-configure.sh │ ├── linbo-mcasthelper.sh │ ├── linbo-mkinfo.sh │ ├── linbo-scp.sh │ ├── linbo-ssh.sh │ ├── linbo-torrenthelper.sh │ ├── make-linbo-iso.sh │ ├── mkgrubhostimg.py │ ├── mkgrubnetdir.sh │ ├── rsync-post-download.sh │ ├── rsync-post-upload.sh │ ├── rsync-pre-download.sh │ ├── rsync-pre-upload.sh │ └── templates │ │ ├── grub.cfg.forced_netboot │ │ ├── grub.cfg.global │ │ ├── grub.cfg.iso │ │ ├── grub.cfg.local │ │ ├── grub.cfg.os │ │ ├── grub.cfg.os-iso │ │ ├── grub.cfg.pxe │ │ ├── grubenv.reboot │ │ ├── host.cfg.pxe │ │ ├── isolinux │ │ ├── isolinux.cfg │ │ ├── menu.cfg │ │ ├── pxe.cfg │ │ └── sys64.cfg │ │ ├── linbo.cfg.iso │ │ ├── machineacct │ │ └── opentracker.conf │ └── templates │ ├── rsync.override.conf │ └── rsyncd.conf └── var └── lib └── linuxmuster └── hooks └── update-linbofs.pre.d └── 00_example /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/README.md -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/releasename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/releasename -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/debian/rules -------------------------------------------------------------------------------- /get-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/get-depends.sh -------------------------------------------------------------------------------- /get-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/get-pkg.sh -------------------------------------------------------------------------------- /linbofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/.env -------------------------------------------------------------------------------- /linbofs/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/.profile -------------------------------------------------------------------------------- /linbofs/etc/busybox.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linbofs/etc/filesystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/filesystems -------------------------------------------------------------------------------- /linbofs/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/fstab -------------------------------------------------------------------------------- /linbofs/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/group -------------------------------------------------------------------------------- /linbofs/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/inittab -------------------------------------------------------------------------------- /linbofs/etc/linbo-version: -------------------------------------------------------------------------------- 1 | LINBO 4.3.29-0: Psycho Killer 2 | -------------------------------------------------------------------------------- /linbofs/etc/modules: -------------------------------------------------------------------------------- 1 | # modules to load on boot 2 | fan 3 | thermal 4 | nbd 5 | ntfs3 6 | uinput 7 | -------------------------------------------------------------------------------- /linbofs/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/nsswitch.conf -------------------------------------------------------------------------------- /linbofs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/passwd -------------------------------------------------------------------------------- /linbofs/etc/rsync.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/rsync.exclude -------------------------------------------------------------------------------- /linbofs/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/services -------------------------------------------------------------------------------- /linbofs/etc/splash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/splash.conf -------------------------------------------------------------------------------- /linbofs/etc/udev/rules.d/90-qemu.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/udev/rules.d/90-qemu.rules -------------------------------------------------------------------------------- /linbofs/etc/udev/rules.d/91-permissions.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/etc/udev/rules.d/91-permissions.rules -------------------------------------------------------------------------------- /linbofs/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/init.sh -------------------------------------------------------------------------------- /linbofs/linbo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/linbo.sh -------------------------------------------------------------------------------- /linbofs/usr/bin/gui_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/gui_ctl -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_auth -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_autostart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_bat -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_bitmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_bitmask -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_cmd -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_cpu -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_create_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_create_image -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_download -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_download_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_download_image -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_fakestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_fakestart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_forcesync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_forcesync -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_forcesyncstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_forcesyncstart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_format -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_fstype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_fstype -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_hostname -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_initcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_initcache -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_initcache_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_initcache_format -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_ip -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_label -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_link_blkdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_link_blkdev -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_listimages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_listimages -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_login -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mac -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mem -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mkinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mkinfo -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mktorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mktorrent -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mount -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_mountcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_mountcache -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_netmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_netmask -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_partition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_partition -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_partition_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_partition_format -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_patch_registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_patch_registry -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_postsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_postsync -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_preregister: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_preregister -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_prestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_prestart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_readfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_readfile -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_register: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_register -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_seed -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_size -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_size_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_size_cache -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_size_disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_size_disk -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_split_startconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_split_startconf -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_start -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_sync -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_syncstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_syncstart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_update -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_update_gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_update_gui -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_upload -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_version -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_vnc -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_warmstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_warmstart -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_wrapper -------------------------------------------------------------------------------- /linbofs/usr/bin/linbo_writefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/bin/linbo_writefile -------------------------------------------------------------------------------- /linbofs/usr/share/linbo/shell_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/linbo/shell_functions -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/default.plymouth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/default.plymouth -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-1.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-10.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-11.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-12.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-13.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-14.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-15.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-16.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-17.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-18.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-2.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-3.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-4.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-5.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-6.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-7.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-8.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/arrows-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/arrows-9.png -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/linbo-splash.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/linbo-splash.script -------------------------------------------------------------------------------- /linbofs/usr/share/plymouth/themes/linbo-splash/logo_no_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/plymouth/themes/linbo-splash/logo_no_arrows.png -------------------------------------------------------------------------------- /linbofs/usr/share/qt/german_keymap.qmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/qt/german_keymap.qmap -------------------------------------------------------------------------------- /linbofs/usr/share/udhcpc/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/linbofs/usr/share/udhcpc/default.script -------------------------------------------------------------------------------- /serverfs/etc/default/linbo-multicast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/default/linbo-multicast -------------------------------------------------------------------------------- /serverfs/etc/default/linbo-torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/default/linbo-torrent -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/custom_kernel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/linuxmuster/linbo/custom_kernel.ex -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/firmware.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/linuxmuster/linbo/firmware.ex -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/inittab.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/linuxmuster/linbo/inittab.ex -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/linuxmuster/linbo/ssh_config -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/start.conf.default: -------------------------------------------------------------------------------- 1 | # LINBO empty start.conf 2 | -------------------------------------------------------------------------------- /serverfs/etc/linuxmuster/linbo/wpa_supplicant.conf.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/linuxmuster/linbo/wpa_supplicant.conf.ex -------------------------------------------------------------------------------- /serverfs/etc/logrotate.d/linuxmuster-linbo7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/logrotate.d/linuxmuster-linbo7 -------------------------------------------------------------------------------- /serverfs/etc/systemd/system/linbo-multicast.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/systemd/system/linbo-multicast.service -------------------------------------------------------------------------------- /serverfs/etc/systemd/system/linbo-torrent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/systemd/system/linbo-torrent.service -------------------------------------------------------------------------------- /serverfs/etc/systemd/system/opentracker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/etc/systemd/system/opentracker.service -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/arch_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/centos_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/debian_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/fedora_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/gentoo_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/kubuntu_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linbo.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linux_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/linuxmint_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/lubuntu_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/opensuse_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/ubuntu_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/unknown_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win10_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/win_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_newstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_newstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_start.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_syncstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/icons/xubuntu_syncstart.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/linbo_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/linbo_logo_big.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_c.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_e.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_n.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_ne.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_nw.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_s.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_se.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_sw.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/select_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/select_w.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_c.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_e.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_n.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_ne.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_nw.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_s.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_se.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_sw.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/terminal_box_w.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/theme.txt -------------------------------------------------------------------------------- /serverfs/srv/linbo/boot/grub/themes/linbo/unifont-regular-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/boot/grub/themes/linbo/unifont-regular-16.pf2 -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/README.txt -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/image.postsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/image.postsync -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/image.prestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/image.prestart -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.opensuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.opensuse -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu-opensuse-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu-opensuse-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu2004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu2004 -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu2004-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu2004-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.ubuntu2004-opensuse-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.ubuntu2004-opensuse-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.uniform-block-device-names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.uniform-block-device-names -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10 -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-ubuntu -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-ubuntu-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-ubuntu-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-ubuntu2004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-ubuntu2004 -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-ubuntu2004-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-ubuntu2004-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/start.conf.win10-win10-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/start.conf.win10-win10-efi -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/win10.global.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/win10.global.reg -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/win10.image.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/win10.image.reg -------------------------------------------------------------------------------- /serverfs/srv/linbo/examples/win11.global.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/examples/win11.global.reg -------------------------------------------------------------------------------- /serverfs/srv/linbo/german.kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/german.kbd -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/README -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/debian.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/default.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/fedora.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/freebsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/freebsd.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/linbo_wallpaper_1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/linbo_wallpaper_1024x768.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/linbo_wallpaper_640x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/linbo_wallpaper_640x400.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/linbo_wallpaper_800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/linbo_wallpaper_800x600.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/mint.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/other.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/redhat.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/suse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/suse.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/ubuntu.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/win10.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/win7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/win7.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/icons/winxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/icons/winxp.png -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/README -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/custom.cmd.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/custom.cmd.ex -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/install.cmd -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/prepare-for-image.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/prepare-for-image.cmd -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/save-activation-status.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/save-activation-status.cmd -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/start-tasks.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/start-tasks.cmd -------------------------------------------------------------------------------- /serverfs/srv/linbo/linuxmuster-win/uninstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/srv/linbo/linuxmuster-win/uninstall.cmd -------------------------------------------------------------------------------- /serverfs/usr/sbin/linbo-cloop2qcow2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/sbin/linbo-cloop2qcow2 -------------------------------------------------------------------------------- /serverfs/usr/sbin/linbo-multicast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/sbin/linbo-multicast -------------------------------------------------------------------------------- /serverfs/usr/sbin/linbo-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/sbin/linbo-remote -------------------------------------------------------------------------------- /serverfs/usr/sbin/linbo-torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/sbin/linbo-torrent -------------------------------------------------------------------------------- /serverfs/usr/sbin/update-linbofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/sbin/update-linbofs -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/efipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/efipxe -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/graphics/linbo_icon_194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/graphics/linbo_icon_194x194.png -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/graphics/linbo_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/graphics/linbo_wallpaper.png -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/graphics/logo16.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/graphics/logo16.ppm -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/graphics/logo16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/graphics/logo16.txt -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/harvest-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/harvest-app.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-configure.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-mcasthelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-mcasthelper.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-mkinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-mkinfo.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-scp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-scp.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-ssh.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/linbo-torrenthelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/linbo-torrenthelper.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/make-linbo-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/make-linbo-iso.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/mkgrubhostimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/mkgrubhostimg.py -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/mkgrubnetdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/mkgrubnetdir.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/rsync-post-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/rsync-post-download.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/rsync-post-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/rsync-post-upload.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/rsync-pre-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/rsync-pre-download.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/rsync-pre-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/rsync-pre-upload.sh -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.forced_netboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.forced_netboot -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.global -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.iso -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.local -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.os -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.os-iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.os-iso -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grub.cfg.pxe -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/grubenv.reboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/grubenv.reboot -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/host.cfg.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/host.cfg.pxe -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/isolinux/menu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/isolinux/menu.cfg -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/isolinux/pxe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/isolinux/pxe.cfg -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/isolinux/sys64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/isolinux/sys64.cfg -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/linbo.cfg.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/linbo.cfg.iso -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/machineacct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/machineacct -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/linbo/templates/opentracker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/linbo/templates/opentracker.conf -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/templates/rsync.override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/templates/rsync.override.conf -------------------------------------------------------------------------------- /serverfs/usr/share/linuxmuster/templates/rsyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/usr/share/linuxmuster/templates/rsyncd.conf -------------------------------------------------------------------------------- /serverfs/var/lib/linuxmuster/hooks/update-linbofs.pre.d/00_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-linbo7/HEAD/serverfs/var/lib/linuxmuster/hooks/update-linbofs.pre.d/00_example --------------------------------------------------------------------------------