@Gebitang
2015-07-07T11:55:36.000000Z
字数 13366
阅读 2548
ubuntu
收集整理Ubuntu系统使用中遇到的问题
2015-04-19重新开始使用Linode。跟Apple的密码一致,比较有纪念意义,避免忘记。新建一个正常用户和工作密码。新建ssh私钥一般网上密码。更改邮箱到PM
快速使用指南
echo "plato" > /etc/hostname
hostname -F /etc/hostname
dpkg-reconfigure tzdata
apt-get update
apt-get upgrade --show-upgraded
adduser exampleuser
usermod -a -G sudo exampleuser
底下两行的提示信息。^G表示Ctrl+G
To get started on Linux:
Unpack the .zip file you've downloaded. The SDK files are download separately to a user-specified directory.
Make a note of the name and location of the SDK directory on your system—you will need to refer to the SDK directory later when using the SDK tools from the command line.
Troubleshooting Ubuntu
If you need help installing and configuring Java on your development machine, you might find these resources helpful:
Here are the steps to install Java:
If you are running a 64-bit distribution on your development machine, you need to install additional packages first.
# For Ubuntu 13.10 (Saucy Salamander) and above, install the libncurses5:i386, libstdc++6:i386, and zlib1g:i386 packages using apt-get:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libncurses5:i386 libstdc++6:i386 zlib1g:i386
#For earlier versions of Ubuntu, install the ia32-libs package using apt-get:
apt-get install ia32-libs
#Next, install Java:
apt-get install sun-java6-jdk
cat /proc/version
uname -a
Linux 下一步步安装 Git Server
Git远程操作详解
GIT的使用
git init --bare projectname
指定 --bare,当前 repository 下就只有projectname下的 objects,而没有真实文件。一般在 Server 端。
# install git
sudo apt-get install git
# cd to the destination derectory. init a repository
# init baer repository
ecuser@ecweb:~/gitrepo$ git init --bare demoprj
Initialized empty Git repository in /home/ecuser/gitrepo/demoprj/
ecuser@ecweb:~/gitrepo$
非空之后才能被正常 clone 到其他地方。更换一个目录之后:
1. 初始化git inint
2. 添加远程主机/仓库git remote add origin /home/ecuser/gitrepo/demoprj
3. 添加当前所有文件git add .
4. 提交本地仓库git commit -m "init project"
5. 提交到远程仓库git push origin master
修改后的文件再次提交,要先git add modify.file
#init here
ecuser@ecweb:~/gitrepo/drprj$ git init
Initialized empty Git repository in /home/ecuser/gitrepo/drprj/.git/
#add remote repository
ecuser@ecweb:~/gitrepo/drpr$ git remote add origin /home/ecuser/gitrepo/demoprj/
# add all files in current derectory to git
ecuser@ecweb:~/gitrepo/drpr$ git add .
# commit to git
ecuser@ecweb:~/gitrepo/drpr$ git commit -m "init device register"
[master (root-commit) b485ce3] init device register
#update to origin
ecuser@ecweb:~/gitrepo/drpr$ git push origin master
/home/ecuser/gitrepo/deviceregister
192.168.1.102
ssh
端口22
# 此为注释 – 将被 Git 忽略
*.a # 忽略所有 .a 结尾的文件
!lib.a # 但 lib.a 除外
/TODO # 仅仅忽略项目根目录下的 TODO 文件,不包括 subdir/TODO
build/ # 忽略 build/ 目录下的所有文件
doc/*.txt # 会忽略 doc/notes.txt 但不包括 doc/server/arch.txt
删除abc之外的所有文件。参数abc必须是确定的单个文件?
ls | grep -v abc | xargs -i rm -rf {}
vi /etc/ssh/sshd_config
将PermitRootLogin without-password 修改为PermitRootLogin yes
更改时区:
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ZONE=Asia/Shanghai ( 查/usr/share/zoneinfo 下面的文件。 )
UTC=false ( 硬件时钟是否为 UTC 或者说 GMT 时钟。 )
ARC=false (如果是在 Alpha 机器上,则设置为 true 。 )
将系统日期设定成2014年6月24日的命令: date -s 06/24/14
将系统时间设定成下午1点52分14秒的命令: date -s 13:52:14
root权限,更多信息,参考
/etc/group 的内容包括用户组(Group)、用户组口令、GID及该用户组所包含的用户(User),每个用户组一条记录;格式如下:
group_name:passwd:GID:user_list
在/etc/group 中的每条记录分四个字段:〔用户组名称〕:〔用户组密码〕:〔GID〕:〔用户列表〕
(也可以使用adduser)用来创建新的用户帐号。参数:
-d 设置新用户的登陆目录
-e 设置新用户的停止日期,日期格式为MM/DD/YY
-f 帐户过期几日后永久停权。当值为0时帐号则立刻被停权。而当值为-1时则关闭此功能。预设值为-1
-g 使新用户加入群组
-G 使新用户加入一个新组。每个群组使用逗号“,”隔开,不可以夹杂空白字
-s 指定新用户的登陆Shell
-u 设定新用户的ID值
如:
useradd getbitang -d /home/gebitang -u 525 -s /bin/bash
默认新用户就在自己同名的组里 usermod
修改用户的信息,如: usermod –d/home/user2 –s/bin/bash user2
使用-s /sbin/nologin
表示不用于登录新用户需要制定密码才可以登录。 passwd gebitang
根据系统的提示信息输入两次密码,系统会显示:
passwd ::all authentication tokens updated successfully
删除用户: userdel -r gebitang
-r将用户目录下的文档一并删除。在其他位置上的文档也将一一找出并删除。
新建群组:groupadd -g 555 testgroup
删除群组: groupdel testgroup
查看机器中登陆的用户 w
[agentone@testagent ~]
w>17:27:30up1day,22:25,2users,loadaverage:0.02,0.01,0.00USERTTYFROMLOGIN@IDLEJCPUPCPUWHATagentonepts/0192.168.100.18816:470.00s0.09s0.03swrootpts/1192.168.100.18816:4135:160.05s0.05s−bash[agentone@testagent ]
我把pts/0踢掉(只有root才能去踢掉用户): `pkill -kill -t pts/0
安装语言支持;安装iBUs框架;添加输入法选项(+号)
vi无法高亮: 安装vim sudo apt-get install vim
askubuntu
在Unix/Linux下运行命令 dos2unix [文件名] (debian下需安装sysutils)
sudo uft status
sudo ufw allow from 192.168.1.123
40616 directories (根目录下共有40616个子目录,你不会都想浏览一遍吧?所以不重要我全干掉,否则这个帖子没法看了)
#创建users.link指向Download文件夹完整路径
ln -s /home/gebitang/Download/ users.link
Ctrl + A : 光标移到行首。
Ctrl + E : 光标移到行尾。
Ctrl + F :向前移动一个字符。
Ctrl + B :向后移动一个字符
Alt + F : 向前移动一个单词。
Alt + B : 向后移动一个单词。
整页翻页 ctrl-f ctrl-b
f就是forword b就是backward
翻半页 ctrl-d ctlr-u
d=down u=up
$移动光标到行尾 n$:移动到第n行的行尾
数字0(Num):移动光标到行首
^:移动光标到行首第一个非空字符上去
/abc #向下查找abc
?abc #向上查找abc
使用了查找命令之后,使用如下两个键快速查找:
n:按照同一方向继续查找
N:按照反方向查找
VI显示行号:在VI的命令模式下输入“:set nu” 或者修改vi配置文件“vi ~/.vimrc” 添加set nu
需要root权限。U盘插入后,fdisk -l自动识别出来,如Disk /dev/sdc 4023 MB..
下面的具体信息才是设备号。通常为数字,如 /dev/sdc4
要mount的为 /dev/sdc4
[root@localhost root]# fdisk -l
#会出现很多关于设备的信息,通常sda1是U盘设备名
Device Boot Start End Blocks Id System
/dev/sda1 * 1 8186 261920 b Win95 FAT32
[root@localhost root]# mkdir /mnt/usb #新建一个目录usb
[root@localhost root]# mount /dev/sda1 /mnt/usb #U盘里的内容挂载到目录usb
[root@localhost root]# ls /mnt/usb #查看usb
[root@localhost root]# umount /dev/sda1 #使用完之后,安全删除U盘
#cp 将U盘的东西拷贝到新的目录
cp -rf /mnt/usb /home/winnie/Download #-rf r是复制目录 f是强制
#rm 删除文件夹
rm -rf /home/winnie/usb
#mv 移动文件夹
mv -f /home/winnie/Download/rpm /home/winnie/
#文件夹重命名
mv abc rpm abc变成rpm
mkdir -p directory/next/again
mkdir {test1,test2,test3}
ls -a | wc -l
-l:多少行; -m:多少字符; -w:多少字unzip abc\?.zip
?表示一个字符,如果用*表示任意多个字符。unzip -t request.zip
unzip -v sponsored.zip
unzip request.zip -d /home/want/here
压缩
tar –cvf jpg.tar *.jpg
//将目录里所有jpg文件打包成tar.jpg
tar –czf jpg.tar.gz *.jpg
//将目录里所有jpg文件打包成jpg.tar后,并且将其用gzip压缩,生成一个gzip压缩过的包,命名为jpg.tar.gz
tar –cjf jpg.tar.bz2 *.jpg
//将目录里所有jpg文件打包成jpg.tar后,并且将其用bzip2压缩,生成一个bzip2压缩过的包,命名为jpg.tar.bz2
tar –cZf jpg.tar.Z *.jpg
//将目录里所有jpg文件打包成jpg.tar后,并且将其用compress压缩,生成一个umcompress压缩过的包,命名为jpg.tar.Z
rar a jpg.rar *.jpg
//rar格式的压缩,需要先下载rar for linux
zip jpg.zip *.jpg //zip格式的压缩,需要先下载zip for linux
解压
tar –xvf file.tar //解压 tar包
tar -xzvf file.tar.gz //解压tar.gz
tar -xjvf file.tar.bz2 //解压 tar.bz2
tar –xZvf file.tar.Z //解压tar.Z
unrar e file.rar //解压rar
unzip file.zip //解压zip
mkdir -p directory/next/again
ls -a | wc -l
-l:多少行; -m:多少字符; -w:多少字unzip abc\?.zip
?表示一个字符,如果用*表示任意多个字符。unzip -t request.zip
unzip -v sponsored.zip
unzip request.zip -d /home/want/here
Java RunTime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No java virtual machine was found after searching the following locations:
解决办法是在终端进入你的eclipse目录,然后输入:
mkdir jre
cd jre
ln -s 你的JDK目录/bin bin
1、 移除所有 Java相关包 (Sun, Oracle, OpenJDK, IcedTea plugins, GIJ):
sudo apt-get update
sudo apt-cache search java | awk '{print($1)}' | grep -E -e '^(ia32-)?(sun|oracle)-java' -e '^openjdk-' -e '^icedtea' -e '^(default|gcj)-j(re|dk)' -e '^gcj-(.*)-j(re|dk)' -e 'java-common' | xargs sudo apt-get -y remove
sudo apt-get -y autoremove
2、清除配置信息:
dpkg -l | grep ^rc | awk '{print($2)}' | xargs sudo apt-get -y purge
3、清除java配置及缓存:
bash -c 'ls -d /home/*/.java' | xargs sudo rm -rf
4、手动清除JVMs:
sudo rm -rf /usr/lib/jvm/*
sudo vim /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.117
gateway 192.168.1.1 #这个地址你要确认下 网关是不是这个地址
netmask 255.255.255.0
sudo vim /etc/resolv.conf
nameserver 202.96.128.86
sudo /etc/init.d/network restart
ifdown eth0
关闭eth0 ifup eth0
开启eth0sudo apt-get install python-mysqldb
#以下方案实现以下功能:
#1、锁定用户在/home/ftp默认目录活动,
# 并保留/etc/vsftpd.chroot_list文件里面的用户列表可访问其他目录。
#2、具备暂时冻结FTP用户的功能,将需暂停的用户名加入到/etc/vsftpd.usr_list即可。
#
#设置配置文件:
#复制以下文件并保存为/etc/vsftpd.conf
#新建两文件:touch /etc/vsftpd.chroot_list
# touch /etc/vsftpd.user_list
#新建目录:mkdir /home/ftp
#新建群组:addgroup ftp
#修改/home/ftp属性:chown ftp:ftp /home/ftp
#新增FTP用户: adduser --shell /bin/false --home /home/ftp your_usr_name
#把需要开通FTP的用户名加入到ftp群组:usermod -aG ftp your_usr_name
#注意:
#如果你的/etc/shells里面没有包含/bin/false,则你用上述的方法建立的用户将法访问#FTP,解决方法:编辑/etc/shells,加入/bin/false这行。
#
# Example config file /etc/vsftpd.conf
listen=YES
#listen_ipv6=YES
anonymous_enable=YES
local_enable=YES
write_enable=YES
#anon_upload_enable=YES
#anon_mkdir_write_enable=YES
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
#chown_uploads=YES
#chown_username=whoever
#xferlog_file=/var/log/vsftpd.log
#xferlog_std_format=YES
#idle_session_timeout=600
#data_connection_timeout=120
#nopriv_user=ftpsecure
#async_abor_enable=YES
#ascii_upload_enable=YES
#ascii_download_enable=YES
#ftpd_banner=Welcome to blah FTP service.
#deny_email_enable=YES
#banned_email_file=/etc/vsftpd.banned_emails
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
#ls_recurse_enable=YES
secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
anon_root=/home/ftp
local_root=/home/ftp
userlist_file=/etc/vsftpd.user_list
userlist_enable=YES
userlist_deny=YES
#添加启动项目
sudo update-rc.d mysql defaults
#删除启动项目
sudo update-rc.d -f mysql remove # -f force
#查看各级别的启动项目 级别2,默认启动
/etc/rc2.d$ ls
K10unattended-upgrades K20speech-dispatcher S30urandom S60umountroot
K20kerneloops README S31umountnfs.sh S90halt
K20rsync S20sendsigs S40umountfs
#其中S表示启动,随后的数字表示启动的顺序。K表示不启动 kill?
更改本地化设置
LC_ALL=C 是为了去除所有本地化的设置,让命令能正确执行。
在Linux中通过locale来设置程序运行的不同语言环境,locale由ANSI C提供支持。
locale的命名规则为<语言>_<地区>.<字符集编码>,如zh_CN.UTF-8
,zh代表中文,CN代表大陆地区,UTF-8表示字符集。
14.04版本trusty的source.list源需要更新
sudo cp /etc/apt/source.lost /etc/apt/source.list.backup
##可以编辑删除所有内容,添加新的源
#http://tieba.baidu.com/p/2698487054 之后更新 添加163的源,测试可用
sudo apt-get update
sudo apt-get install subversion
#------------------ubuntu14.04 trusty(sohu#山东网通用户强烈建议#)-----------------------#
deb http://mirrors.sohu.com/ubuntu/ trusty multiverse universe restricted main
deb http://mirrors.sohu.com/ubuntu/ trusty-updates multiverse universe restricted main
deb http://mirrors.sohu.com/ubuntu/ trusty-backports multiverse universe restricted main
deb http://mirrors.sohu.com/ubuntu/ trusty-security multiverse universe restricted main
deb http://mirrors.sohu.com/ubuntu/ trusty-proposed multiverse universe restricted main
#-------------ubuntu14.04 trusty(163#网易电信网通双线接入网速杆杆的#)-----------------#
deb http://mirrors.163.com/ubuntu/ trusty main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ trusty-security main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ trusty-updates main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ trusty-proposed universe restricted multiverse main
deb http://mirrors.163.com/ubuntu/ trusty-backports main multiverse restricted universe
#-------------------ubuntu14.04 trusty(taiwan)--------------------------#
# deb http://tw.archive.ubuntu.com/ubuntu/ trusty multiverse universe restricted main
# deb http://tw.archive.ubuntu.com/ubuntu/ trusty-security multiverse universe restricted main
# deb http://tw.archive.ubuntu.com/ubuntu/ trusty-updates multiverse universe restricted main
# deb http://tw.archive.ubuntu.com/ubuntu/ trusty-proposed multiverse universe restricted main
# deb http://tw.archive.ubuntu.com/ubuntu/ trusty-backports multiverse universe restricted main
#-------------------ubuntu14.04 trusty(上海交通大学)--------------------------#
deb http://ftp.sjtu.edu.cn/ubuntu/ trusty universe restricted multiverse main
deb http://ftp.sjtu.edu.cn/ubuntu/ trusty-security universe restricted multiverse main
deb http://ftp.sjtu.edu.cn/ubuntu/ trusty-updates universe restricted multiverse main
deb http://ftp.sjtu.edu.cn/ubuntu/ trusty-proposed universe restricted multiverse main
deb http://ftp.sjtu.edu.cn/ubuntu/ trusty-backports universe restricted multiverse main
#-------------------ubuntu14.04 trusty(北京交通大学)--------------------------#
deb http://mirror.bjtu.edu.cn/ubuntu/ trusty universe restricted multiverse main
deb http://mirror.bjtu.edu.cn/ubuntu/ trusty-security universe restricted multiverse main
deb http://mirror.bjtu.edu.cn/ubuntu/ trusty-updates universe restricted multiverse main
deb http://mirror.bjtu.edu.cn/ubuntu/ trusty-proposed universe restricted multiverse main
deb http://mirror.bjtu.edu.cn/ubuntu/ trusty-backports universe restricted multiverse main
可在Market里搜索svn,或利用url安装:
http://subclipse.tigris.org/update_1.10.x
http://subclipse.tigris.org/update_1.6.x
安装时注意要将svnkit adapter选中安装,否则可能会报JavaHL错误。
Failed to load JavaHL Library.
These are the errors that were encountered:
no libsvnjavahl-1 in java.library.path
no svnjavahl-1 in java.library.path
no svnjavahl in java.library.path
java.library.path = /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib