- Z軸偏移
將噴頭歸位時,Z軸總是會偏移10mm,這是個小問題,後來論壇上有人提出了解決方式。 - 加熱底板的連接頭會熔毀
因為連接端子的規格不對,無法承受高電流,需要自行更換。 - 導料管連接頭的尺寸不合
導致卡料,最後只能把整個噴頭拆下,順便換成台製的E3D V6。 - 玻璃底板不平整
結論是自行更換。 Orz
因為這台的設計不太好,再加上生產的品質很糟,有不少人在論壇打算賣出自己的BI V2.5。
![]() |
Chrome 40.0.2214.95 |
![]() |
Firefox 35.0.1 |
Google Hangout calling rates |
中華4G費率 |
1) enable password function
vi /var/www/html/roundcube/config/config.inc.php
- alter the following line as follows:
$config['plugins'] = array('password');
cd /var/www/html/roundcube/plugins/password
cp config.inc.php.dist config.inc.php
2) enable the password plugin
cd /var/www/html/roundcube/plugins/password
cp config.inc.php.dist config.inc.php
vi config.inc.php
- alter the following as follows:
$config['password_driver'] = 'chpasswd';
3) allow apache to run the script
visudo
- add to bottom
Defaults:apache !requiretty
apache ALL=(root) NOPASSWD: /usr/sbin/chpass-wrapper.py
4) add blacklisted users and minimum UID below
vi /var/www/html/roundcube/plugins/password/helpers/chpass-wrapper.py
BLACKLIST = (
# add blacklisted users here comma separated
'root'
)
if user.pw_uid < 494:
sys.exit('Changing the password for user id < 494 is forbidden')
5) copy the helper to executable directory & set make it executable
cp /var/www/html/roundcube/plugins/password/helpers/chpass-wrapper.py /usr/sbin
chmod 755 /usr/sbin/chpass-wrapper.py
6) alter the driver to run the helper which in turn runs the driver (wraps it)
vi /var/www/html/roundcube/plugins/password/config.inc.php
old:
$config['password_chpasswd_cmd'] = 'sudo /usr/sbin/chpasswd 2> /dev/null';
new:
$config['password_chpasswd_cmd'] = 'sudo /usr/sbin/chpass-wrapper.py 2> /dev/null';