Ubuntu16.04.3常用工具,环境设置,常用操作

    xiaoxiao2022-07-03  123

    软件更新源 http://blog.csdn.net/paincupid/article/details/52895676

    修改/etc/apt/sources.list文件,用下面的地址替换原来的官方默认地址 # deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial universe deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties deb http://archive.canonical.com/ubuntu xenial partner deb-src http://archive.canonical.com/ubuntu xenial partner deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse

    如果是debian/ubuntu可以使用build-dep命令来自动安装依赖包。

    sudo apt-get build-dep python-mysqldb

    所需工具,vsftpd ,byobu,openssh-server

    byobu ->sudo apt-get install byobu ctrl+a+c->新建新的终端 ctrl+a+数字->切换终端 openssh-server ->sudo apt-get install openssh-server ->查看与管理ftp服务: 启动ftp服务:service vsftpd start 查看ftp服务状态:service vsftpd status 重启ftp服务:service vsftpd restart 关闭ftp服务:service vsftpd stop vsftpd ->sudo apt-get install vsftpd

    使用vi命令时,不能正常编辑文件,使用方向键时老是出现很多字母 因为没有安装VIM,安装vim即可解决。

    ->执行命令 sudoapt-get install vim

    Linux Tab键命令补全失效解决办法

    查看/etc/passwd文件(该文件存储的是操作系统用户信息) [plain] view plain copy root:x:0:0:root:/root:/bin/bash daemon:x:1:1:daemon:/usr/sbin:/bin/sh bin:x:2:2:bin:/bin:/bin/sh sys:x:3:3:sys:/dev:/bin/sh sync:x:4:65534:sync:/bin:/bin/sync games:x:5:60:games:/usr/games:/bin/sh man:x:6:12:man:/var/cache/man:/bin/sh lp:x:7:7:lp:/var/spool/lpd:/bin/sh mail:x:8:8:mail:/var/mail:/bin/sh news:x:9:9:news:/var/spool/news:/bin/sh uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh proxy:x:13:13:proxy:/bin:/bin/sh www-data:x:33:33:www-data:/var/www:/bin/sh backup:x:34:34:backup:/var/backups:/bin/sh list:x:38:38:Mailing List Manager:/var/list:/bin/sh irc:x:39:39:ircd:/var/run/ircd:/bin/sh gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh nobody:x:65534:65534:nobody:/nonexistent:/bin/sh libuuid:x:100:101::/var/lib/libuuid:/bin/sh Debian-exim:x:101:103::/var/spool/exim4:/bin/false statd:x:102:65534::/var/lib/nfs:/bin/false vansome:x:1000:1000:vansome,,,:/home/vansome:/bin/bash sshd:x:103:65534::/var/run/sshd:/usr/sbin/nologin hadoop:x:1001:1001::/home/hadoop:/bin/sh ganglia:x:104:106:Ganglia Monitor:/var/lib/ganglia:/bin/false

    该文件存放的用户信息由6个分号组成的7个信息,解释如下 (1):用户名。 (2):密码(已经加密) (3):UID(用户标识),操作系统自己用的 (4):GID组标识。 (5):用户全名或本地帐号 (6):开始目录 (7):登录使用的Shell,就是对登录命令进行解析的工具。 从该文件可以看出hadoop用户所用的命令解析shell为sh。因为是命令解析的原因导致Tab键不能补全,故修改当前出错用户的shell。 在root用户下修改由

    [plain] view plain copy hadoop:x:1001:1001::/home/hadoop:/bin/sh

    修改为

    [plain] view plain copy hadoop:x:1001:1001::/home/hadoop:/bin/bash

    重启console,问题解决。 所以应该是在装某个软件的时候篡改了/etc/passwd文件,或者在创建用户的时候指定了shell为sh,导致tab键不能正常补全。

    vm扩展分区大小 http://blog.csdn.net/Timsley/article/details/50742755

    安装vivado

    编译uboot

    ubuntu 下如何下载linux内核源码

    ubuntu打实时内核补丁(RT-PREEMPT kernel) http://blog.csdn.net/x356982611/article/details/77370385

    Linux内核源代码获取方法 https://www.cnblogs.com/JiYF/p/6139038.html

    线程编译问题(undefined reference to `pthread_create’) http://blog.csdn.net/silentpebble/article/details/6906117 编译rtlinux 应用报错的解决办法。

    软链接建立 ln -s /home/work/xlnx-4.0 source===建立软连接 /home/work/xlnx-4.0 =====所要指向的源文件目录 source ======该文件夹需要更改指向文件 ln -f -s /home/work/xlnx-4.0 source ======覆盖原有软链接的命令 source -> /home/work/xlnx-4.0/

    最新回复(0)