• 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 S 128

myServer 6 runs on Linux OS. 

To install myServer 6 on Linux, follow the steps below

1) Ensure your hardware is supported by Linux.   Most modern motherboards are supported.

Any Linux distribution can be used so long as it has its roots in Debian and supports Systemd and the APT package manager

2) We use Debian Bookworm with the stock XFCE desktop. For Linux-X64. For Linux-Arm64 it is Raspberry Pi OS Bookworm.

3) Use Etcher to create a bootable USB stick and burn Linux to it.

4) Insert the USB stick into the target PC's USB port.

5) Boot the PC into it's Bios mode (typically F2 or F11 or Delete key on powerup).

6) Make the Bios settings to boot from USB.  Review all other Bios settings and configure as needed.

7) Save and Exit.  System will reboot and Linux should begin it's install.

8) Linux install process should begin.  We choose to reformat whole drive and install Linux with all default settings.  You will be asked to remove the install USB so Linuxcan reboot from the installation drive.

9) In 10 minutes or so, Linux will ask if you want to update.  Choose Yes.  Answer all questions that are pertinent to your market.  We choose to auto login.  Allonis's Linux default password is "allonis".  You can choose whatever you can remember.  This password is used by Linux to install drivers, apps, make system changes.

10) Mint should now be installed!

11) We open the default Firefox browser and download Chrome.  We follow the Chrome installation instructions and select for Chrome to be the default browser.  We remove the Firefox panel link (right click on the icon) and install Chrome as a link in the panel (right click on Google Chrome from the Apps list).

12) We install TeamViewer for remote management.  Once installed, we launch it and go to TeamViewer options.  We name the TV instance, and go to the Security tab and change the TV password.  We also select for TV to launch on reboot.

13) We are now ready to install myServer 6!

Installing myServer

#ANY PLACE YOU SEE "username" SUBSTITUTE YOUR REAL LINUX USERNAME

#ANY PLACE YOU SEE "password" SUBSTITUTE YOUR REAL LINUX PASSWORD

  1. sudo usermod -aG sudo username
  2. sudo usermod -aG sambashare username
  3. ls
  4. cd /usr/local
  5. sudo mkdir Allonis
  6. sudo mkdir Allonis/myServer
  7. sudo chown -R username:username Allonis
  8. sudo apt install samba -y

#Edit the samba config file. 

sudo nano /etc/samba/smb.conf

#Add to the bottom of the file

[global] force user = username

force group = username

#paste at bottom

[myServer]

path = /usr/local/Allonis/myServer

Comment = myServer shared folder

Browseable = yes

Writeable = yes

only guest = no

create mask = 0777

directory mask = 0777

Public = yes

Guest ok = yes

#Save and exit the editor

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

sudo smbpasswd -a username

#restart the Samba daemon

sudo service smbd restart

#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

#Change Sudo permissions

sudo visudo

#change

%admin ALL=(ALL) ALL

%sudo ALL=(ALL:ALL) ALL

#to

%admin ALL=(ALL) NOPASSWD: ALL

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

#install myServer

cd /usr/local/Allonis

#download the latest myServer snapshot for linux-x64

wget http://cloud.allonis.com/downloads/myServer-linux-x64.zip

unzip myServer-linux-x64.zip -d /usr/local/Allonis/myServer

cd /usr/local/Allonis/myServer

sudo chmod +x ./myServer

sudo chmod 777 -R ./myServer

sudo chown username:username -R ./myServer

#create the system daemons for auto starting myServer

#configure myServer to run as a service

cd /usr/local/Allonis/myServer/data sudo nano myInstaller.service

#change User=pi

#to User=username ! remember the rule for username

#save and exit

sudo nano myServer.service

#change User=pi

#to User=username ! remember the rule for username

#save and exit

#copy to the systemd folder

sudo cp /usr/local/Allonis/myServer/data/linux/*.service /lib/systemd/system

#enable the services

sudo systemctl enable myServer

sudo systemctl enable myInstaller

#start myServer to test

sudo systemctl start myServer

#create some desktop shortcuts

#From the mint desktop right-click and select "Create a new Launcher here"

#1 myServer Events

#name = myServer Events

#command = tail -f -n 200 /usr/local/Allonis/myServer/logs/myServer.log

#check launch in terminal

$ click ok

#2 Start myServer Service

#name = Start myServer Service

#command = sudo systemctl start myServer

#uncheck launch in terminal

$ click ok

#3 Stop myServer Service

#name = Stop myServer Service

#command = sudo systemctl stop myServer

#uncheck launch in terminal

$ click ok

reboot