root@router39:~/mesh-svn-repo/LabBrick-Control# ./LabBrickControl
./LabBrickControl: error while loading shared libraries: libhid.so.0: cannot open shared object file: No such file or directory
all you need to do is to copy /usr/local/lib/libhid.so.0 to the node that needs it.
Thursday, September 29, 2011
Tuesday, September 20, 2011
How to disable GRUB 2 menu, even after crash.
Just wanted to share this with anyone wanting to know.
If your headless server crashes, GRUB2 (at least on Ubuntu Server) is designed to force the GRUB menu to load up next time it starts up, which means you are locked out of SSH until someone physically makes a kernel selection on the PC.
To prevent this do the following change to your grub.cfg file.
#nano /boot/grub/grub.cfg
You want to find this line and change it:
And change to:
Or a number other than -1.
when install new kernel image, the system will update this grub.cfg file. Therefore, you also need to change the /etc/grub.d/00_header, find the following function:
So we need to change "set timeout=-1" to "set timeout=1" as well.
Also, please enable the "auto answering feature" for fsck:
/etc/default/rcS
it is enough to change FSCKFIX=no => FSCKFIX=yes
If your headless server crashes, GRUB2 (at least on Ubuntu Server) is designed to force the GRUB menu to load up next time it starts up, which means you are locked out of SSH until someone physically makes a kernel selection on the PC.
To prevent this do the following change to your grub.cfg file.
#nano /boot/grub/grub.cfg
You want to find this line and change it:
Code:
if [ ${recordfail} = 1 ]; then set timeout=-1 else set timeout=10 fi
Code:
if [ ${recordfail} = 1 ]; then set timeout=3 else set timeout=10 fi
when install new kernel image, the system will update this grub.cfg file. Therefore, you also need to change the /etc/grub.d/00_header, find the following function:
Code:
make_timeout () { cat << EOF if [ "\${recordfail}" = 1 ]; then set timeout=1 else set timeout=${2} fi EOF }
Also, please enable the "auto answering feature" for fsck:
/etc/default/rcS
Quote:
cat /etc/default/rcS # # /etc/default/rcS # # Default settings for the scripts in /etc/rcS.d/ # # For information about these variables see the rcS(5) manual page. # # This file belongs to the "initscripts" package. TMPTIME=0 SULOGIN=no DELAYLOGIN=no UTC=yes VERBOSE=no FSCKFIX=no |
Thursday, September 15, 2011
在Modoer2.0中更换为Google地图后修复“地图坐标不正确” 问题
在./data/cachefiles/item_field_1.php里,找“地图坐标不正确”
4 =>
array (
'fieldid' => '5',
'modelid' => '1',
'tablename' => 'subject',
'fieldname' => 'mappoint',
'title' => '地图坐标',
'unit' => '',
'style' => '',
'template' => '',
'note' => '',
'type' => 'mappoint',
'listorder' => '4',
'allownull' => '0',
'enablesearch' => '0',
'iscore' => '1',
'isadminfield' => '0',
'show_list' => '0',
'show_detail' => '1',
'regular' => '/[0-9a-z]+,[0-9a-z]+/i',
'errmsg' => '地图坐标不正确',
'datatype' => 'varchar(60)',
'config' =>
array (
'default' => '',
'size' => '30',
),
'disable' => '0',
),
把
'regular' => '/[0-9a-z]+,[0-9a-z]+/i',
改成
'regular' => '/[\-\.0-9a-z]+,[\-\.0-9a-z]+/i',
4 =>
array (
'fieldid' => '5',
'modelid' => '1',
'tablename' => 'subject',
'fieldname' => 'mappoint',
'title' => '地图坐标',
'unit' => '',
'style' => '',
'template' => '',
'note' => '',
'type' => 'mappoint',
'listorder' => '4',
'allownull' => '0',
'enablesearch' => '0',
'iscore' => '1',
'isadminfield' => '0',
'show_list' => '0',
'show_detail' => '1',
'regular' => '/[0-9a-z]+,[0-9a-z]+/i',
'errmsg' => '地图坐标不正确',
'datatype' => 'varchar(60)',
'config' =>
array (
'default' => '',
'size' => '30',
),
'disable' => '0',
),
把
'regular' => '/[0-9a-z]+,[0-9a-z]+/i',
改成
'regular' => '/[\-\.0-9a-z]+,[\-\.0-9a-z]+/i',
Subscribe to:
Posts (Atom)
RISC-v emulator
Changes are based on https://risc-v-getting-started-guide.readthedocs.io/en/latest/linux-qemu.html For Ubuntu/Debian, in addition to sud...
-
It took me a few days to resolve this problem with the NTL library on Mac OS X. http://www.shoup.net/ntl/doc/tour-unix.html So I am...
-
/etc/rc.local # Put your custom commands here that should be executed once # the system init finished. By default this file does nothing. ...
-
Tweak the LINUX_VERSION variable in target/linux/ar71xx/Makefile. Supported Kernels are listed in include/kernel-version.mk