ubuntu上virtualbox无法找到usb设备【解决】

How to set up USB for Virtualbox? USB in different versions of Virtual Box For use of USB in Virtual Box 3.x you need a PUEL-version. From Virtual Box > 4.x USB 1.0 is supported in the OSE version installed from software center. For USB 2.0 or USB 3.0 (from Virtual Box > 5.x) we need to install an extension pack free for download from Oracle. This will make our Virtual Box a PUEL-Version (see this question on details on how to install Virtual Box from the Oracle repository). To change settings of a virtual machine needs the guest to be powered off.

READ MORE

try or install Ubuntu on MeegoPad T01

 Ref: Install Ubuntu on Meego Pad T01 with a Live ISO Image   MeegoPad T01 has recently been shown to boot Ubuntu and Android, but no installation disk had been provided so far. But thanks to deadhp1, there’s now a “beta” Ubuntu 14.10 image with MATE desktop environment available for download in order to try or install Ubuntu on MeegoPad T01, and other Intel Atom Bay Trail-T devices. Ubuntu MATE 14.10 Live ISO (Click to Enlarge) Before you decide to try or install the image, be aware that audio and Bluetooth are not working for now, but everything else should work, including hardware video decoding in Kodi.

READ MORE

Git 2-客户端命令on Linux:

Git客户端命令on Linux: 在此之前:Git 1-服务端搭建 Setting up a Git Server in CentOS 6.5 本地客户端操作的第一步,通常是从远程主机克隆一个版本库,这时就要用到git clone命令,但在自己搭建Git Remote Server的用法中,往往是从git remote add(添加远程主机)开始的。 本文与git clone相关的内容被放在第2点。 1. 管理远程主机 a.查看远程主机名 为了便于管理,Git要求每个远程主机都必须指定一个主机名,即远程主机在本地的一个代号?。git remote命令就用于管理主机名。 >> git remote >> git remote -v origin sonictl@x.x.x.x:/home/git_admin/project1 (fetch) origin sonictl@x.x.x.x:/home/git_admin/project1 (push) #使用-<span style="color: #000000;">v选项,显示远程主机的网址。 &gt;&gt;git remote show &lt;主机名&gt; # 查看主机详细信息:git remote show origin</span></span></span></span></span></pre>        ==相关命令== 远程主机的改名。git remote rename命令 >> $ git remote rename <原主机名> <新主机名> 添加远程主机。 git remote add命令 >> $ git remote add <主机名> <网址> >> $ git remote add origin tony@x.x.x.x:/home/git_admin/project1 删除远程主机。git remote rm命令 >> $ git remote rm <主机名> === 2.

READ MORE

Git 1-服务端搭建 Setting up a Git Server in CentOS 6.5

Setting up a Git Server in CentOS 6.5 Quick jump to: Create a git user account Install git. [root@svn ~]# yum install git Add the developers group, all git users will be part of this group. [root@svn ~]# groupadd developers Create the git user which will own all the repos. [root@svn ~]# useradd -s /sbin/nologin -g developers git_admin [root@svn ~]# passwd git_admin Changing password for user git. New password: git******** Retype new password:git******** passwd: all authentication tokens updated successfully. Update Permissions. [root@svn ~]# chmod 2770 /home/git_admin/

READ MORE

正则表达式-使用说明Regular Expression How To (Perl, Python, etc)

notepad++ wiki about regular expression 正则表达式-使用说明Regular Expression How To (Perl, Python, etc) https://docs.python.org/2/howto/regex.html#regex-howto For more: Linux Shell 通配符、元字符、转义符使用实例介绍(\后面跟实际字符: [0-9]\a  =匹配=> '0a', '1a', '9a'... ) https://docs.python.org/2/library/re.html https://regexone.com/ Learn Regular Expressions with simple, interactive exercises.     Quick Reference: The first metacharacters we’ll look at are [ and ]. They’re used for specifying a character class, which is a set of characters that you wish to match. Characters can be listed individually, or a range of characters can be indicated by giving two characters and separating them by a '-'.

READ MORE

一个全栈Web/移动App开发学习路径

HTML、CSS 和 JavaScript 网页开发的基本元素,包括HTML、CSS个JavaScript。本课程完全适合零基础的同学,当然如果你有相关开发经验更好。在课程开始呢,我们先探索与讨论HTML与CSS。然后我们将继续学习Javascript的基本组件,包括变量、数组、循环、事件和函数。最后,我们将探索更高级的Javascript控制元素,包括函数的高级用法,控制事件,数组处理以及DOM操作。 前端 Web 界面框架(Bootstrap)与工具(Nodejs\npm\Bower) Front-End JavaScript Frameworks: AngularJS(MVC, two-way data binding and angular directives and filters. angular controllers and scopes. UI routing and templates ,angular modules and services) 使用 Web 技术进行多平台移动 App 开发 Cordova,Ionic, 使用 NodeJS 进行服务器端开发 web servers,CRUD operations, NoSQL databases, in particular MongoDB and Mongoose,REST concepts and building a RESTful API,backend as a service (BaaS) approaches, 毕业项目 The Capstone project is the culmination of your journey through the Full Stack Web Development specialization. The Capstone project is aimed at building a fully functional front-end Application (both Web App designed using Bootstrap+AngularJS, and hybrid mobile app implemented using the Ionic framework) and full server-side implementation using Node.

READ MORE

使用Linux命令行测试网速

使用Linux命令行测试网速 http://www.linuxde.net/2014/01/15561.html 当发现上网速度变慢时,人们通常会先首先测试自己的电脑到网络服务提供商(通常被称为“最后一公里”)的网络连接速度。在可用于测试宽带速度的网站中,Speedtest.net也许是使用最广泛的。 Speedtest.net的工作原理并不复杂:它在你的浏览器中加载JavaScript代码并自动检测离你最近的Speedtest.net服务器,然后向服务器发送HTTP GET and POST请求来测试上行/下行网速。 但在没有图形化桌面时(例如,当你通过命令行远程登陆服务器或使用没有图形界面的操作系统),基于flash、界面友好的Speedtest.net将无法工作。幸运的是,Speedtest.net提供了一个命令行版本——speedtest-cli。下面我将向你演示如何在Linux的命令行中使用speedtest-cli来测试宽带连接速度。 安装speedtest-cli speedtest-cli是一个用Python编写的轻量级Linux命令行工具,在Python2.4至3.4版本下均可运行。它基于Speedtest.net的基础架构来测量网络的上/下行速率。安装speedtest-cli很简单——只需要下载其Python脚本文件。 $ wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py $ chmod a+rx speedtest_cli.py $ sudo mv speedtest_cli.py /usr/local/bin/speedtest-cli $ sudo chown root:root /usr/local/bin/speedtest-cli 使用speedtest-cli测试网速 使用speedtest-cli命令也很简单,它不需要任何参数即可工作。 $ speedtest-cli 输入这个命令后,它会自动发现离你最近的Speedtest.net服务器(地理距离),然后打印出测试的网络上/下行速率。 如果你愿意分享测试结果,你可以使用参数“–share”。它将会把你的测试结果上传到Speedtest.net服务器并以图形的方式分享给其他人。 下面是一幅由speedtest-cli自动生成并上传到Speedtest.net的测试结果: 如果你对目前所有可用的Speedtest.net服务器感兴趣,你可以使用参数“–list”。它会打印出所有的Speedtest.net服务器(按照离你的地理距离由近及远排序)。 在上面的列表中,每个服务器的前面都有一个与其对应的ID。如果想使用指定的服务器来测试你的网速,你只需要在speedtest-cli命令后指定其ID即可。例如,如果想使用在Washington DC的服务器,你只需要指定相对应的服务器ID(如935)。

READ MORE

Geany 编辑器打开 高亮所选单词 功能

Geany 编辑器打开 高亮所选单词 功能   在Ubuntu 系统的Software Center 工具中,搜索到geany, 下方有个 Miscellanous Plugins for Geany, 勾选,点击 “Apply Changes”。 ref: 我的CSDN blog:http://blog.csdn.net/sonictl/article/details/54136152  

READ MORE