
Linux
adamchau
上海交通大学博士,从事机器学习相关研究工作
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
透过ssh使用VNC(VNC over SSH)
除了SSH,linux平台还可以使用图形化的方式访问远端机器,最流行的当属VNC然而VNC连接并不安全,容易被拦截,监听,所以更安全的方式是透过SSH隧道来使用VNC,SSH的安全性是有保证的。很简单,使用SSH做端口转发终端方式$ ssh -L 5900:localhost:5900 -N -f sshserver_ip_or_name参数-L [bind_add转载 2015-04-29 15:08:27 · 9791 阅读 · 0 评论 -
chrome 谷歌浏览器命令行大全 (List of Chromium Command Line Switches)
There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experimenting. This page lists the available switches in原创 2015-03-22 19:40:40 · 56610 阅读 · 2 评论 -
在ubuntu下安装ipa应用
Install iOS Applications From Linux People always liked the free stuff. Although that line hardly explains why people use Ubuntu (or any other linux distributions) to work with, people really like the原创 2015-03-17 17:15:46 · 1840 阅读 · 0 评论 -
python进度条
# -*- coding: utf-8 -*-"""Created on Sun Jan 4 09:24:28 2015@author: ydzhao"""import os import sys import cmd import unicodedata from threading import Thread from time im原创 2015-01-04 09:59:54 · 720 阅读 · 0 评论 -
Git的深入理解与GitHub托管服务的使用
源代码管理系统(SCM)与版本控制版本控制是一种记录若干文件内容变化,以便将来查阅特定版本修订情况的系统。本地版本控制系统许多人习惯用复制整个项目目录的方式来保存不同的版本,或许还会改名加上备份时间进行区别。这么做的唯一好处就是简单,坏处也不少:有时候会混淆所在的工作目录,一旦弄错了文件数据就没办法撤销恢复。为了解决这个问题,人们很久以前就开发了许多本地版本控制转载 2014-12-13 16:27:56 · 494 阅读 · 0 评论 -
ubuntu 平台vlc播放器无法播放hevc/H.265视频解决方法
VLC无法播放Reference: https://launchpad.net/~strukturag/+archive/ubuntu/libde265原创 2014-09-28 10:03:49 · 12774 阅读 · 2 评论 -
windows和ubuntu平台python-pip和python-setuptools安装及注意事项
windows平台下安装PIP1.在以下地址下载最新的PIP安装文件:http://pypi.python.org/pypi/pip#downloads2.解压安装3.下载Windows的easy installer,然后安装:http://pypi.python.org/pypi/setuptools4.安装setuptools工具5.命令行工具cd切换到原创 2014-09-10 19:14:33 · 1989 阅读 · 0 评论 -
ubuntu环境LAMP环境搭建
一、说明用SAE建站时需要调试,总不能改一下,上传一下SVN,在Ubuntu中仅安装几个软件,进行简单配置即可建立本地调试环境,即LAMP(Linux+Apache+Mysql+Php)二、实现1. 安装Web服务器Apache$ sudo apt-get install apache2安装后在浏览器中打开http://localhost/或者http://127.原创 2014-08-27 10:03:59 · 592 阅读 · 0 评论 -
Ubuntu 14.04 Adminer安装,替换phpmyadmin的最佳选择
Install Adminer manually on Ubuntu 14.04原创 2014-08-27 17:08:59 · 2070 阅读 · 0 评论