系统版本 Ubuntu 16.04 LTS
http://www.cnblogs.com/huanghuang/archive/2011/09/23/2185968.html
http://www.linuxidc.com/Linux/2014-02/96713.htm
手动挂载共享文件夹:
mkdir share_windows
sudo mount -t vboxsf myshare share_windows
cd share_windows
ls
在Home目录下就可以看到共享文件夹了
卸载命令为:
sudo umount -f share_windows
https://zhidao.baidu.com/question/234582301.html
解决方法:sudo passwd root (更新密码),然后再su root(输入新密码)
① exit
② logout
③ ctrl D
http://www.cnblogs.com/savagemorgan/p/3650926.html
sudo tar zxvf xxx.tar.gz
sudo chmod u+x a.bin //此行给文件执行权限
sudo ./a.bin
dpkg -i file.deb
④ 如果Eclipse 找不到 JDK 的路径
在eclipse目录下新建jre目录,并连接jdk下的jre/bin目录到该目录下。
mkdir jre
cd jre
ln -s 你的JDK目录/bin bin
http://jingyan.baidu.com/article/0aa22375b8d9bf88cc0d643f.html
http://jingyan.baidu.com/article/3f16e003cb810f2591c10339.html
我还是习惯用 gedit ~/.bashrc,虽然很多人推崇vi / vim
chmod 777
如果想连其所有子目录都一起修改:
chmod -R 777
https://zhidao.baidu.com/question/506645291.html
或者得到root 权限
【$NDK/build 有时也会遇到这个问题,如果以上修改权限后还不行,尝试手动删除obj目录】
sudo rm /var/lib/apt/lists/lock
或 sudo rm /var/cache/apt/archives/lock
http://askubuntu.com/questions/15433/unable-to-lock-the-administration-directory-var-lib-dpkg-is-another-process
http://thierry-xing.iteye.com/blog/2017864
http://blog.csdn.net/season_hangzhou/article/details/24399371
① http://blog.csdn.net/vblittleboy/article/details/25223699
其中乱码的代码如下:
git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
cd fdk-aac
autoreconf -fiv
//./configure --disable-shared // 禁用shared的情况
./configure --enable-shared // 启用shared的情况
make && make install
ldconfig /usr/local/lib
./configure --enable-libfdk_aac --enable-nonfree --enable-libmp3lame
/configure --prefix=/usr/local/ffmpeg --enable-shared --enable-yasm --enable-libx264 --enable-gpl --enable-pthreads --enable-libfdk-aac --enable-nonfree --enable-pic --enable-libmp3lame --extra-cflags=-I/usr/local/x264/include --extra-ldflags=-L/usr/local/x264/lib
② http://www.cnblogs.com/lixiaodi/p/4702535.html
③ 如果以上两个库都是通过包管理器下载安装的话,那configure 就可以简化为
./configure --enable-shared --enable-libfaac --enable-libx264 --enable-gpl --enable-nonfree --enable-pic
(http://blog.csdn.net/leixiaohua1020/article/details/43898125)
附上:
ffmpeg 的 configure选项 对照表
http://blog.csdn.net/junmuzi/article/details/49888123
完整错误信息:/usr/bin/ld: /usr/local/lib/libavcodec.a(avpacket.o): relocation R_X86_64_32S against `av_destruct_packet' can not be used when making a shared object; recompile with -fPIC
需要重新configure 并 make ffmpeg
sudo CFLAGS="-fPIC" ./configure --enable-nonfree --enable-pic --enable-shared
make clean
make
make install
sudo apt-cache search xxx
进入sdk目录下的tools,用 ./android 运行即可
http://blog.csdn.net/telencool/article/details/47057065
修改系统环境变量
sudo gedit /etc/profile
export ANDROID_NDK= ndk路径
export PATH=$ANDROID_NDK:$PATH
source /etc/profile
提示说没有.git这样一个目录,git init就可以了
http://blog.chinaunix.net/uid-26000296-id-5213411.html
http://blog.chinaunix.net/uid-26000296-id-5213410.html
http://www.itnose.net/detail/6219672.html
最后是我自己将它们整理之后,亲测有效的脚本
http://blog.csdn.net/panda1234lee/article/details/53099203
http://jingyan.baidu.com/article/adc815134f4b92f722bf7350.html
http://codingstandards.iteye.com/blog/810900
转换整个文件夹:
cd 到想转换的目录下,然后输入以下命令
$ find . -type f -exec dos2unix {} \;