• Try Us Out - See our Demo Tabs Above

    Sports Bars

    Experience our Sports Bar TV, Audio and Lighting Control System with our awesome demo! We provide multiple TV control systems that will easily integrate your Audio/Video and environmental components into one easy to use package. Let multiple hand-held remotes be a thing of the past and experience hassle free one-touch control. With the versatility of myServer 6, you may be able to retrofit existing equipment into the control system which makes it economical to get the most value out of your technology investment.

    Residential

    With a whole new exciting look and feel our transparent "Moonlight" user interface allows clarity and ease in maneuvering your lighting floor plan, climate control, security cameras, and security keypad as well as entertainment options. Control all aspects of your home with simplicity and confidence.

    Digital Signage

    Allonis makes it easy to control and launch your media content. We have created software that ties in seamlessly to your bar or restaurant control system. Upload new images and videos, discard old ones, decide what to play or post and where with just a few selections.

  • Sports Bar & Restaurant Demo

    Select a source on the left and then select the TVs you would like to change on the right.

    Along the bottom are options for a DirecTV remote, TV Guide, Audio, Favorites & AppleTV. In addition you can touch the video camera on the left hand source options to get a live preview of what's playing on that source. Be sure to click around and try everything.

    Read More

     

    Customer Listening Experience

    Pan from left to right and up and down to see all the TVs.

    Customers can select the TV closest to them to tune in to the audio.

    Read More

     

    No Floorplan Option.

    If you are not interested in a navigable floor plan we can provide a generic interface instead.

    The same features are supported.

    Read More
  • Residential Demo

    Below is our residential simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More
  • Digital Signage

    In the large window select a player on the left. Then select an option layout on the right. Select available assets from the list provided. You can add a ticker of either a message or weather by checking the boxes. When you are finished making selections click “send to player”. Your choice will appear on the corresponding player above. To pause a video click the player once.

    Read More
  • SmartRemote Demo

    Below is our SmartRemote simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More

Our Products

See the latest myServer 6 products, available for individual purchase or part of a custom Allonis system built especially for your project.
Software
Hardware
Sports Bars
Services

 

Allonis does not fully endorse execution of myServer6 in a hypervisor environment. Doing so should be considered experimental and Allonis does not support this method of operation even though it has been proven to be successful based on these steps.

The enclosed documentation is intended to provide high-level overview of myServer installation in a VM environment. The hypervisor of choice is Proxmox, but several other environments are likely to work as well.

1.) Install Hypervisor. Many examples in terms of how-to on YouTube. Other make/brands may work as well. Allonis recommends Proxmox.

2.) Using Hypervisor administration tool, create new VM using the following recommendations:

      • Operating System: Modern 64 bit Linux (Debian or Ubuntu)
      • VM memory: At least 4gb of memory for the guest
      • VM disk space: At least 32 gb for myServer installation or more if storing images or media files
      • VM network adapter: VM network adapter should be bridged to devices that are to be controlled by myServer. In other words, if myServer is to control FireTV or ROKU (or similar) devices, then myServer VM needs to have IP address on the same network as the FireTV and Roku devices. Note: IP addresses can not change; user needs to either static address or reserve IP address in DHCP via basic networking practices.
      • VM Processors/Cores: At least 1. The more the merrier.
      • User name should be allonis with password of allonis (change username/password accordingly if you feel so necessary to change these).

2a.) Install Linux operating system. (graphic user interface is optional, but may be recommended for users not familiar with linux commands.)

2b.) Download myServer6 installation files, and expand files to the ~/applications/myServer folder (/home/allonis/applications/myServer).

2c.) The following commands are recommended: Note: lines prefixed with # or // are comments:

sudo DEBIAN_FRONTEND=noninteractive apt update && sudo apt upgrade -y

sudo useradd -m allonis

sudo usermod -G sudo,tty,dialout,video,plugdev,games,users,input,netdev,bluetooth,docker,systemd-journal allonis

sudo passwd allonis

sudo apt install nmap

# modify sudo group to not prompt for password

sudo visudo

change

%sudo   ALL=(ALL:ALL) ALL

to

%sudo   ALL=(ALL:ALL) NOPASSWD: ALL

save

// open port 80

open port 80

#save configuration permanently

sudo nano /etc/sysctl.d/50-unprivileged-ports.conf

#add

net.ipv4.ip_unprivileged_port_start=0

#save and apply

sudo sysctl --system

# install samba

sudo apt -y install samba

# Edit the samba config file. Add to the bottom of the file

sudo nano /etc/samba/smb.conf

[global]

force user = allonis

force group = allonis

[myServer]

path = /home/allonis/applications/myServer

Comment = myServer shared folder

Browseable = yes

Writeable = yes

only guest = no

create mask = 0777

directory mask = 0777

Public = yes

Guest ok = yes

[myMedia]

path = /home/allonis/applications/media

Comment = Shared media folder

Browseable = yes

Writeable = yes

only guest = no

create mask = 0777

directory mask = 0777

Public = yes

Guest ok = yes

# create a samba user called allonis and set the password to the same password as the OS is using

sudo smbpasswd -a allonis

# restart the Samba daemon

sudo service smbd restart

# install adb

sudo apt install adb

// node js

curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - &&\

sudo apt-get install -y nodejs

// docker

for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt remove $pkg; done

sudo apt install ca-certificates curl gnupg

sudo install -m 0755 -d /etc/apt/keyrings

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

sudo chmod a+r /etc/apt/keyrings/docker.gpg

echo \

  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \

  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \

  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt update

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

// install node and npm

npm i frontail -g

// pyatv

sudo apt-get install build-essential libssl-dev libffi-dev python-dev

pip3 install pyatv

// for nfs shares

sudo apt install nfs-common

//expand swap file

sudo fallocate -l 1G /swapfile

sudo chmod 600 /swapfile

sudo mkswap /swapfile

sudo swapon /swapfile

sudo nano /etc/fstab

/swapfile swap swap defaults 0 0

swapon --show

reboot

2d) Create the myServer and myInstaller services:

sudo nano /lib/systemd/system/myServer.service

[Unit]

Description=myServer by Allonis

Wants=network-online.target

After=network-online.target

[Service]

Type=simple

User=allonis

WorkingDirectory=/home/allonis/applications/myServer

ExecStart=/home/allonis/applications/myServer/myServer

KillMode=process

Restart=on-failure

[Install]

WantedBy=multi-user.target

 

sudo nano /lib/systemd/system/myInstaller.service

[Unit]

Description=myInstaller by Allonis

[Service]

Type=oneshot

User=allonis

WorkingDirectory=/home/allonis/applications/myServer

ExecStart=/home/allonis/applications/myServer/data/linux.arm64/installer.sh

[Install]

WantedBy=multi-user.target

sudo systemctl daemon-reload

sudo systemctl enable myServer

sudo systemctl start myServer

sudo systemctl status myServer

sudo systemctl start myInstaller

2e) Ensure that myServer started successfully:

sudo cat /home/allonis/myServer/logs/myServer.log

2f) Confirm successful operation of myServer and license status - Open web browser and address to myServer6 dashboard. URL is http://ipaddress/dashboard . (replace ipaddress with ip address of myServer6 installation).    Note that URL is case sensitive. If myServer6 license is at "Trial" status, then please contact Allonis for licensing instructions.