Skip to content

Organization

Akashdeep Dhar edited this page Dec 20, 2024 · 2 revisions
  1. The images archive configuration file stores an unordered dictionary of images archives available for usage.

    $ nano /etc/syncstar/images.yml
    
  2. The identifier for the images archives is the message digest text which can be found out using the following command.

    $ cat Fedora-Workstation-Live-x86_64-40-1.14.iso | sha256sum
    
  3. The second line per images archive entry stores the location of the file which is validated on every task run.

    path: /home/archdesk/Downloads/Fedora-Workstation-Live-x86_64-40-1.14.iso
    
  4. The third line per images archive entry stores the name that would be displayed to the users on the service frontend.

    name: Fedora Linux 41 Workstation
    
  5. The fourth line per images archive entry stores the type that would be used for metadata generation purposes.

    type: fedora
    
  6. The images archive that have not been provided with one of the supported types would be provided with the generic type.

    type: common
    
  7. The images archive should be verified for their consistency by the service administrators before consumption.

    $ wget https://download.fedoraproject.org/pub/fedora/linux/releases/40/Workstation/x86_64/iso/Fedora-Workstation-40-1.14-x86_64-CHECKSUM
    
  8. The following types of images archive are supported for metadata generation purposes used on the service frontend.

    # Name Identity Icon
    1 Android gdroid
    2 Arch Linux archlx
    3 CentOS Stream centos
    4 Debian Linux debian
    5 Fedora Linux fedora
    6 Kodi or XBMC kodimc
    7 Linux Mint lxmint
    8 Manjaro Linux mnjaro
    9 Red Hat Enterprise Linux redhat
    10 OpenSUSE Linux opsuse
    11 Ubuntu Linux ubuntu
    12 Generic common
Clone this wiki locally