摘要:
小键盘: 打开终端的Session属性,VT模式,初始数字键盘模式,设置为普通ALT键: 打开终端的Session属性,元(Meta)键仿真,将ALT用作Meta键BackSpace: 打开终端的Session属性,选择“键盘”,BackSpace标签那选择“ASCII 127” 阅读全文
摘要:
error: Gitlab "bundler: command not found: unicorn_rails"soluton: cd /home/git/gitlab git checkout -b tmp vi Gemfile and Gemfile.l... 阅读全文
摘要:
最近公司的一个项目中,新增了classes.jar包,与android.jar有冲突,必须得在加载android.jar前行加载classes.jar;在持续集成环境中须使用ant编译,classes.jar放在libs/目录中,被加载的优先级是最低的,导致一些方法Method不能调用,也使得工程编译不过通过;所以现在是classes.jar放在与AndroidManifest.xml同级的目录中,现在写一个custom_rules.xml以最优先加载classes.jar再加载android.jar; ... 阅读全文
摘要:
最近发现在Ubuntu13.10中使用Fn+F9对触摸板的控制操作不灵了;并且在黑夜、外置键盘时,按下这个组合键也很不方便,由此便想到使用命令行来切换触摸板状态;脚本:~/bin/touchpadctrl 1 #!/bin/bash - 2 #=============================================================================== 3 # 4 # FILE: touchpadctrl 5 # 6 # USAGE: ./touchpadctrl 7 # 8 # DESCRIPTIO... 阅读全文
摘要:
使用ant编译Android应用程序工程时,出现的错误:错误信息(Cygwin):[aidl] This application has requested the Runtime to terminate it in an unusual way. [aidl] Please contact the application's support team for more information.错误信息(Linux):[aidl] terminate called after throwing an instance of 'std::logic_error'[aid 阅读全文
摘要:
=> external/eyes-free: accessibilityvalidator.jar (host,share)=> external/mesa3d: libMesa.so (host,static) system/lib/libMesa.so (static) out/host/linux-x86/bin/glsl_compiler (host)=> external/iproute2:=> external/iproute2/tc: system/bin/tc=> external/iproute2/lib: system/lib/libiprou 阅读全文
摘要:
适用场景: 下载了一个smarthosts的hosts文件,但hosts文件过旧导致一些ip地址已失效无法访问网络。脚本使用: ./hostsupdate # 直接从 /etc/hosts 中获得需要更新的域名 ./hostsupdate /path/to/hosts # 从指定路径中获得需要更新的域名脚本源码: 1 #!/bin/bash - 2 #=============================================================================== 3 # 4 # FILE: hostupdate 5 # ... 阅读全文
摘要:
严重问题: 若移植失败将可能直接导致手机***无法开机***,导入相关文件需慎重!达成效果: 1. ssh 远程登录 Android 终端; 2. sftp 挂载/映射 Android 根文件系统至本地网络驱动盘符;适用场景: 前期开发过程中,需要做大量的调试,需要对Android文件系统频繁修改;操作流程:详细操作: 一、Linux操作系统相关的部分 1. 编译 openssh for Android 同步及编译Android源码的基础操作:[编译Android源码入门] 在一切准备就绪之后,输入以下命令:source build/envsetup.shlunch ... 阅读全文
摘要:
vim /etc/network/interfaces # interfaces(5) file used by ifup(8) and ifdown(8) auto eth0 iface eth0 inet static address 200.200.137.173 netmask 255.255.252.0 gateway 200.200.136.80 dns-nameservers 8.8.8.8 2.2.2.2sudo service networking restart 阅读全文
摘要:
1. 安装$ sudo apt-get install samba2. 配置smb用户密码# cat /etc/passwd | mksmbpasswd > /etc/samba/smbpasswd3. 为当前用户配置Samba密码# smbpasswd -a scueNew SMB password:Retype new SMB password:Added user scue.4. 配置/etc/samba/smb.conf(假定现在要共享目录/media/Storage)[global]server string = Samba Serversecurity = userencry 阅读全文