ubuntu16.04是最近最新的长期版,已迫不及待的安装完完毕,安装很简单,我使用U盘安装,启动盘制作使用ubuntu提供的Startup Disk Creator
http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-ubuntu这是ubuntu官 提供的启动盘制作方式
安装系统完毕后,就开始了开发工具的安装了
1、adobe flash的安装
主要是为了听音乐,学习娱乐离了音乐真么能行啊
(1)获取 install_flash_player_11_linux.x86_64.tar.gz安装包
下载地址:https://get.adobe.com/flashplayer/c=cn
(2)解压安装包
tar xvzf install_flash_player_11_linux.x86_64.tar.gz
(3)复制文件
sudo cp libflashplayer.so /usr/lib/firefox/browser/plugins
sudo cp -r usr/* /usr
reboot firefox
此时在上百度音乐 页版,就可以感受多媒体了
最近发现了一款Linux版的 易云客户端,挺不错主要是支持ubuntu16.04 64位版
netease-cloud-music
下载地址:http://music.163.com/#/download
2、安装sogou输入法
我安装的是ubuntu英文版,主要是英文版习惯了,但是不能没有汉语输入法,不然怎么处理日常工作啊
下载sogou安装包
下载地址:http://pinyin.sogou.com/linux/
我安装的是64位系统,所以我选择64位版
sudo dpkg -i sogoupinyin_2.0.0.0072_amd64.deb
此时会提示安装失败
sudo apt-get install -f
会自动安装依赖包,安装完毕后
sudo dpkg -i sogoupinyin_2.0.0.0072_amd64.deb
至此,搜狗输入法安装完毕,
重启或注销系统,我个人喜欢重启,这样可能重新加载内核和文件系统,怕有些模块通过注销不能完全更新
3、smplayer视频播放器
sudo apt-get install smplayer
即可安装完毕
4、vim源码阅读器
作为一个coder,怎么能少了vim,主要是习惯了vim,不参与vim与emacs之争。
sudo apt-get install vim
配置vim
5、wireshark 络分析工具
作为热爱 络开发的coder怎么能少了wireshark
sudo apt-get install wireshark
6、minicom串口调试助手
嵌入式开发少不了minicom
sudo apt-get install minicom
7、wine windows软件虚拟机
偶尔也用到windows软件,可以用wine开启,不过还要熟练使用linux的工具
sudo apt-get install wine
8、git强大的版本管理器
无需介绍,最强大的没有之一
sudo apt-get install git
9、内核的menuconfig裁剪依赖的工具库
sudo apt-get install libncurses5-dev
只用安装后,才能对Linux_kernel正常使用make menuconfig进行内核配置
10、安装tftp服务器,用于开发板通过tftp加载内核,方便调试
安装软件
sudo apt-get install tftpd (服务端)
sudo apt-get install tftp (客户端)
sudo apt-get install xinetd
配置tftp服务
cd /etc/xinetd.d/
sudo vim tftp
输入
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = shirf
server = /usr/sbin/in.tftpd
server_args = -s /home/shirf/my_explore/tftp_file/
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
我的共享目录为/home/shirf/my_explore/tftp_file/
建立tftp共享目录
cd /home/shirf/my_explore/
mkdir tftp_file/
这个目录的权限可以根据具体情况更改,我用的默认权限
重启tftp服务
sudo /etc/init.d/xinetd restart
测试
在tftp共享目录中,建立文件
vi hello_world
输入你的内容。
tftp 127.0.0.1
tftp> get hello_world
Received 14 bytes in 0.0 seconds
tftp>
这是查看你获取的文件,
tftp> q
退出
至此,tftp服务器配置完毕
11、安装nfs,用于挂载根文件系统,方便调试
安装软件
sudo apt-get install portmap nfs-kernel-server
配置服务
sudo vi /etc/exports
/home/shirf/my_explore/nfs_file 192.168.1.103(rw,sync,no_root_squash)
我的共享文件夹为/home/shirf/my_explore/nfs_file 我只允许192.168.1.103访问我的共享文件夹
建立共享目录
mkdir /home/shirf/my_explore/nfs_file
重启服务
sudo /etc/init.d/nfs-kernel-server restart 重启nfs服务
12、开启ubuntu的telnet服务
安装软件
$sudo apt-get install openbsd-inetd
$sudo apt-get install telnetd
测试
查看服务运行情况:
$netstat -a | grep telnet
测试:
$telnet 127.0.0.1
输出:
Trying 127.0.0.1…
Connected to 127.0.0.1.
Escape character is ‘^]’. (停在这里的时候要按Ctrl+] 然后回车)
telnet> (表示登陆成功)
13、开启FTP服务
安装ftp服务,不进行任何配置项改变时,用你的用户名和密码就可以登陆
$sudo apt-get install vsftpd
14、安装根文件系统制作工具,jffs2和ubifs
sudo apt-get install mtd-utils
此时,就有了制作ubifs文件系统的工具,
mkfs.ubifs:制作ubifs的工具
ubinize:制作使用烧写工具烧写到nandflash的格式。
15、设置纯英文版的显示
ubuntu即使使用英文安装方式,也会显示中文,在终端登陆是,中文会显示乱码改进方式:
sudo vi /etc/default/locale
将所有的zh_CN更改为en_US
重启计算机即可。
声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!