Linux或Mac首次运行Android Studio,报如下的错误:
ERROR: Failed to install the following Android SDK packages as some licences have not been accepted.
platforms;android-25 Android SDK Platform 25
build-tools;28.0.2 Android SDK Build-Tools 28.0.2
To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager.
Alternatively, to transfer the license agreements from one workstation to another, see http://d.android.com/r/studio-ui/export-licenses.html
...
错误提示没有接受Licence,在widnows下不存在这种报错,因为在点击"下一步"的过程中勾选了"I Agree",Linux和Mac下需要切换到SDK的Tools文件夹下,执行:
$ cd /home/xiaotang/Android/Sdk/tools/bin
$ ./sdkmanager --licenses
然后一路Y。
Warning: File /home/xiaotang/.android/repositories.cfg could not be loaded.
5 of 5 SDK package licenses not accepted. 100% Computing updates...
Review licenses that have not been accepted (y/N)? y
1/5: License android-googletv-license:
Terms and Conditions
...
Accept? (y/N): y
All SDK package licenses accepted
wp-content目录新建tmp文件夹,设置文件夹的权限为777。
在wp-config.php中添加下列代码:
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
define('WP_TEMP_DIR', ABSPATH.'wp-content/tmp');
define("FS_METHOD", "direct");
define("FS_CHMOD_DIR", 0777);
define("FS_CHMOD_FILE", 0777);
查看network:
ifconfig
修改IP:
vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.88
netmask 255.255.255.0
gateway 192.168.0.1
修改DNS:
vi /etc/resolve.conf
nameserver 127.0.0.1
nameserver 8.8.8.8
重启网络:
/etc/init.d/networking restart