Installation and Updates
Configuration
Accessing media files
Backup and restore
Expert / Developers
Peripherals
Installation and Updates
Configuration
Accessing media files
Backup and restore
Expert / Developers
Peripherals
This is an old revision of the document!
This page contains answers and solutions to Frequently Asked Questions and/or common issues.
“How do I change the SSH port?”
On XBian the SSH daemon runs behind inetd. That's why you have to change the listening port in /etc/services instead of in /etc/ssh/sshd_config. Alternatively you can configure SSH to start in standalone mode - that way you can still use the /etc/ssh/sshd_config file to set the port.
Edit /etc/services with your preferred text editor and find the following 2 lines:
ssh 22/tcp # SSH Remote Login Protocol ssh 22/udp
Then change ”22” to your desired port. Afterwards restart inetd to apply the change:
$ sudo restart openbsd-inetd
To enable the standalone mode, remove the line ”manual” from /etc/init/ssh-hid.override. You can now change the port in /etc/ssh/sshd_config and then start the service with
$ sudo start ssh-hid
“How do I get a script running automatically at startup?”
The easiest way to do so, is editing the file /etc/rc.local. In this file you can put in any command you want to run at startup. There are three important things you have to consider:
If you want to run the script as user xbian and keep the script running in the background, you have to add a line like this:
su xbian -c "/path/script &"
before the exit(0) line in /etc/rc.local.
If you want to run the script as root, adding the part in the quotes (/path/script &) is already enough.
If it's a command which shouldn't stay running in the background, you have to remove the & sign at the end.
Edit the /boot/boot.src.txt
file and run /boot/mks
afterwards.
If you are using one of these adapters, you may need to change the /boot/boot.src.txt
file from:
setenv baseconfig ahci_imx.hotplug=1 raid=noautodetect telnet root=/dev/mmcblk0p2 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 rootwait consoleblank=0 selinux=0 nohdparm splashto
setenv baseconfig ahci_imx.hotplug=1 raid=noautodetect telnet root=/dev/mmcblk0p2 video=mxcfb0:dev=hdmi,1280x720@60,if=RGB565 rootwait consoleblank=0 selinux=0 nohdparm splash
If you video mode is incorrect, it can result in a reboot loop.
To enable the serial console, add console=ttymxc0,115200
to the command line, after setenv baseconfig
. The third line in /boot/boot.src.txt should look something like this:
setenv baseconfig console=ttymxc0,115200 coherent_pool=1M rw ahci_imx.hotplug=1 raid=noautodetect telnet root=/dev/mmcblk0p2 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 rootwait consoleblank=0 selinux=0 nohdparm splash dmfc=3Run /boot/mks to activate the change.
To enable a terminal on the serial console, copy the file /etc/init/tty1.conf
to /etc/init/tty3.conf
. Edit the last line in the new file, replace tty1 with ttymxc0, and 38400 with 115200. It should look like this:
exec /sbin/getty -8 115200 ttymxc0