Ubuntu Logo

Ubuntu Virtualization

Wine 简介 Wine 是在x86、x86-64容许类Unix操作系统在X Window System运行Microsoft Windows程序的软件。另外,Wine也提供程序运行库(Winelib)来帮助计算机程序设计师将Windows程序移植到类Unix系统;也有不少软件经过Wine测试后发布,比如Picasa、uTorrent、MediaCoder。 ...

March 8, 2022 · 75 min · Sakamoto Kurome
Ubuntu Logo

Ubuntu Applications

GUI Utilities Chrome 因为 Chrome 安装包的时候会自动添加 gpg,因此可以参考 Bypass GPG signature checks only for a single repository 执行如下操作 sudo sh -c 'echo "deb [arch=amd64 trusted=yes] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' sudo apt update sudo apt install google-chrome-stable PS:之前直接複製網上的,結果一直報錯,原因在於要寫 https 而非 http。 ...

March 8, 2022 · 143 min · Sakamoto Kurome
Ubuntu Logo

Ubuntu Desktop

友邦拓 乌班图 During the first ten years of this HOWTO’s life, I reported that from a new user’s point of view, all Linux distributions are almost equivalent. But in 2006-2007, an actual best choice emerged: Ubuntu. While other distros have their own areas of strength, Ubuntu is far and away the most accessible to Linux newbies. Beware, though, of the hideous and nigh-unusable “Unity” desktop interface that Ubuntu introduced as a default a few years later; the Xubuntu or Kubuntu variants are better. ...

March 8, 2022 · 204 min · Sakamoto Kurome
Hexo Logo

Hexo

Hexo Hexo 是一个快速、简洁且高效的博客框架。 安装 安装 Git: Windows: Download & install git. Mac: Install it with Homebrew, MacPorts or installer. Linux (Ubuntu, Debian): sudo apt-get install git-core Linux (Fedora, Red Hat, CentOS): sudo yum install git-core 安装 node.js: Windows: Install it with nvs (recommended) or nvm. Mac: Install it with Homebrew or MacPorts. Linux (DEB/RPM-based): Install it with NodeSource. Others: Install it through respective package manager. Refer to the guide provided by Node.js. 安装 Hexo:-g 表示全局安装,会将 Hexo 命令加入环境变量中。 ...

December 12, 2021 · 24 min · Sakamoto Kurome
Git Workflow

Git

Workspace:工作区,Index / Stage:暂存区,Repository:仓库区(或本地仓库),Remote:远程仓库 远程仓库 安装,windows需要处理换行符 sudo yum install git 设置姓名和邮箱地址 git config --global user.name "Vane Hsiung" git config --global user.email "[email protected]" 提高输出可读性 git config --global color.ui auto 设置文件 显示当前的 Git 配置 ...

December 12, 2021 · 39 min · Sakamoto Kurome