1.百度输入法Pad版 (官方网站)
个人觉得很好用2.安卓市场平板客户端 (官方网站)
这里可以搜索并下载各种应用与游戏,资源比较丰富3.MoboPlayer (官方网站)
比较好用的视频播放器软件,支持各种视频格式4.Evernote (官方网站)
强大的笔记本软件,可在各种平台间同步笔记。
国内类似的应用为有道云笔记,但功能差远了,在wifi代理情况下不能同步。5.鲜果联播Android HD版 (官方网站)
杂志般的阅读体验,可订阅各种内容。这个可以取代RSS阅读器了。6.Google Maps (官方网站)
google 官方的地图应用,强大易用不必多说。另外Google Sky Map还可以查看星空。7.Google Music (官方网站)
Google的另一个应用,这个一定要安装,超炫的音乐播放器。有人说你装了这个软件就再也不想装其他的音乐播放器了8.豆瓣FM (官方网站)
豆瓣电台,自动推荐歌曲9.云中书城 (官方网站)
盛大出品的阅读应用,可以下载各种电子书10.Twitter (官方网站)
这个不解释11.豌豆荚 (官方网站)
在Windows下安装豌豆荚程序,可以向android平板里面安装应用,并且可以截取平板上面的屏幕图像12.豆果美食 Android Pad版 (官方网站)
发现的唯一针对Android平板进行优化设计的食谱应用,内容很丰富,拿着平板可以做菜了13.Adobe Reader (官方网站)
官方的PDF阅读器,很流畅,支持文本重排,阅读体验非常好14.开卷有益 (官方网站)
支持TXT EPUB UMD CHM HTML JPG PNG GIF CBZ格式电子书 漫画和图片。
持久性的环境变量
到目前为止,我们只讨论临时设置一个环境变量的方式,当设置它时所在的shell会话被关闭时这个环境变量也就失效了。有人可能会问,是否有一种方法来永久设置一个环境变量为特定的值。
Note: 下面提到的Shell配置文件只为特定Shells和桌面环境所读取,不应该被以其他方式使用。
会话范围环境变量
只影响特定用户的环境变量 (而不是整个系统)应该在下面文件中设置:
- ~/.pam_environment - 这个文件是特别为设置用户的环境变量.它并不是一个脚本文件,而是由每行一句声明表达式组成
Note:使用 .pam_environment 需要重新登录以便初始化环境变量. 仅仅重新打开 terminal 并不能够立即使用这些变量.
如果你正在使用 KDE, 请查看 the KDE User-base page on this topic.
不推荐在下面文件中设置:
- ~/.profile - This is probably the best file for placing environment variable assignments, since it gets executed automatically by the Display Manager during the start-up process desktop session as well as by the login shell when one logs-in from the textual console.
- ~/.bash_profile or ~./bash_login - If one of these file exist, bash executes it rather then "~/.profile" when it is started as a login shell. (Bash will prefer "~/.bash_profile" to "~/.bash_login"). However, these files won't influence a graphical session by default.
- ~/.bashrc - Because of the way Ubuntu currently sets up the various script files by default, this may be the easiest place to set variables in. The default configuration nearly guarantees that this file will be executed in each and every invocation of bash as well as while logging in to the graphical environment. However, performance-wise this may not be the best thing to do since it will cause values to be unnecessarily set many times.
系统范围环境变量
影响整个系统的环境变量设置 (而不是仅仅一个用户) 不应该放在任何系统或桌面会话加载时被执行的系统级别的脚本中,而应该在下面文件中设置:
- /etc/environment - 这个文件是特别为设置系统范围的环境变量. 它并不是一个脚本文件,而是由每行一句声明表达式组成. 特别地,这个文件存储了系统范围的 locale 和 path 设置.
不推荐在以下文件中设置:
- /etc/profile - This file gets executed whenever a bash login shell is entered (e.g. when logging in from the console or over ssh), as well as by the Display Manager when the desktop session loads. This is probably the file you will get referred to when asking veteran UNIX system administrators about environment variables. In Ubuntu, however, this file does little more then invoke the /etc/bash.bashrc file.
- /etc/bash.bashrc - This is the system-wide version of the ~/.bashrc file. Ubuntu is configured by default to execute this file whenever a user enters a shell or the desktop environment.
Note: 当处理多用户桌面系统时,把设置放在上面提到的用户的~/.pam_environment 文件中是比较合适的,而不是系统范围的文件,因为这些文件不需要root权限来编辑,并且很容易在多个系统中移动。