原文链接:http://www.cnblogs.com/kinyoung/p/4493472.html ubuntu的快捷方式都在/usr/share/applications/路径下有很多*.desktop(eclipse的快捷方式也可以类似设置) 下面就建立我们的studio sudo gedit /usr/share/applications/Studio.desktop [Desktop Entry] Name = Studio Comment= android studio Exec=…
ubuntu的快捷方式都在/usr/share/applications/路径下有很多*.desktop(eclipse的快捷方式也可以类似设置) 下面就建立我们的studio sudo gedit  /usr/share/applications/Studio.desktop [Desktop Entry]  Name = Studio  Comment= android studio  Exec=/home/young/android/android-studio/bin/studio.sh…
ubuntu中的软件可通过图形界面的软件中心安装,也可以通过命令行apt-get install安装.但是安装后的软件在哪个位置呢?这点跟windows环境下安装软件的路径选择不一样.ubuntu中可供调用的终端大都在/usr/bin或者/opt,但也不尽然.可尝试用下面的方法快速找到软件的位置. 1.执行该程序: 2.用命令 ps -e 找到该程序的名字: 3.用 find 或 whereis 命令查找文件位置. 此外,如果知道使用apt-get install命令安装的软件,可直接用命令 d…
原博客地址:http://www.cnblogs.com/zhuyatao/p/4060559.html ubuntu中的软件可通过图形界面的软件中心安装,也可以通过命令行apt-get install安装.但是安装后的软件在哪个位置呢?这点跟windows环境下安装软件的路径选择不一样.ubuntu中可供调用的终端大都在/usr/bin或者/opt,但也不尽然.可尝试用下面的方法快速找到软件的位置. 1.执行该程序: 2.用命令 ps -e 找到该程序的名字: 3.用 find 或 where…
Ubuntu 中查找软件安装的位置 执行该程序 直接执行该程序,有时候一些程序执行时会显示出自己的位置,比如: 用命令 ps -e 找到该程序的名字 用 find 或 whereis 命令查找文件位置. 此外,如果知道使用 apt-get install 命令安装的软件,可直接用命令 dpkg -S softwarename 显示包含此软件包的所有位置,dpkg -L softwarename 显示安装路径. PS:aptitude show softearename  或 dpkg -l so…
距离google发布android studio 1.0正式版已经两个月左右了.由于一直习惯使用eclipse+ADT的模式,而且曾在windows下试用一次Android Studio预览版,感觉卡的不行,就暂时搁置下来了.今天突发奇想,不知道在linux下使用android studio是否会比windows下更加流畅.下面是基本的搭建过程,以及遇到的一些问题:一.安装用的文件 1.ubuntu 14.10 LTS 64-bits(由于使用了64-bits的操作系统,在运行android s…
在ubuntu中一般使用apt-get来安装软件工具, 例如 sudo apt-get install g++ apt-get会在镜像库中找到你需要的软件镜像(例如 g++)来安装,那么apt-get 是在哪里找的呢? 在 ubuntu中,文件/etc/apt/sources.list中写着一系列linux镜像源的服务器地址,apt-get就是在这些服务器上找安装文件的. 关于sources.list的更多内容查看   关于Ubuntu的sources.list 的总结 还有一种办法就是离线安装…
问:Android Studio中有没有类似于Eclipse中的ctrl+2+L的快捷键? 答:有,as中的快捷键是Ctrl+Alt+V AndroidStudio和Eclipse常用快捷键对比 功能 AndroidStudio Eclipse 代码提示 ctrl+alt+space/ctrl+shift+space alt+/ 快速修复(Quick Fix) alt+enter ctrl+1 快速生成代码 alt+insert alt+shift+s 代码参数提示 ctrl+p alt+/ 整…
ssh: sudo apt-get install openssh-server sudo apt-get install openssh-client…
1.在终端里 apt-get安装的软件:安装软件sudo  apt-get install softname1 softname2softname3--卸载软件 sudo apt-get remove softname1 softname2 softname3--卸载并清除配置sudo  apt-get remove --purgesoftname1更新软件信息数据库 sudo apt-get update进行系统升级sudo  apt-get upgrade, sudo apt-get dis…