Lubuntu纯小白级别安装配置

一、安装Lubuntu:

下载Lubuntu的ISO镜像和rufus启动盘制作工具或dd命令。
  1. Lubuntu官网:(https://lubuntu.net/)点击(Download lubuntu (64-bit AMD64))下载64位镜像。
  1. rufus官网:(http://rufus.akeo.ie/?locale=zh_CN)下载最新的3.0版本。Windows版。
  1. dd命令:(dd if=镜像路径 of=u盘路径 bs=速度)例:(dd if=/home/lubuntu.18.iso of=/dev/sdb1 bs=4M)。Linux版。

二、安装软件:

谷歌浏览器
1、谷歌浏览器官网:( https://www.google.cn/intl/zh-CN/chrome/ )下载适合Ubuntu的deb包。
2、终端安装命令:
cd ~/下载 //转到包路径
ls //列出包名
sudo dpkg -i 包名
依赖问题:sudo apt install -f
搜狗输入法:
1、搜狗输入法官网:( https://pinyin.sogou.com/linux/ )下载64位deb包
2、安装输入法框架:fcitx
sudo apt install fcitx
依赖问题:sudo apt install -f
3、终端安装命令:
sudo dpkg -i 包名
依赖问题:sudo apt install -f
网易云音乐:
1、网易云音乐官网:( https://music.163.com/ )下载Linux版Ubuntu64位deb包
2、终端安装命令:
sudo dpkg -i 包名
依赖问题:sudo apt install -f
安装gcc、g++、vim
1、终端命令:
sudo apt install gcc g++ vim
输入用户密码
2、新建hello.c文件用文本编辑器打开。
终端命令:
cd /home/future/Desktop //进入桌面
vim hello.c //在桌面创建hello.c文件
点击Esc退出编辑、按Shift+:+输入wq保存退出。
leafpad hello.c //用Lubuntu自带的文本编辑器打开hello.c文件
3、输入第一个C语言代码:
#include
int main() {
  • /* 我的一个个C程序 */
  • printf("Hello, World !\n");
  • return 0;
}
4、保存,关闭文件。
5、终端编译运行命令:
gcc -o HelloWorld hello.c //编译并命名为HelloWorld
./HelloWorld //运行HelloWorld


你可能感兴趣的:(Lubuntu纯小白级别安装配置)