linux 笔记

ubuntu 单用户

选择默认启动的项目,按e键

在linux /boot/vmlinux-..........这一行末尾

把ro到后面换成 rw init=/bin/bash

按ctrl+x就可已进入单用户了

重启后,不影响正常启动




linux在命令行下设置代理服务器
        

1、在profile文件中设置相关环境变量  
# vi /etc/profile
# 分别指定http、https、ftp协议使用的代理服务器地址
http_proxy=http://192.168.20.20:3128  
https_proxy=http://192.168.20.20:3128
ftp_proxy=http://192.168.20.20:3128
no_proxy=192.168.20. # 访问局域网地址(192.168.20.0/24网段)时不使用代理,可以用逗号分隔多个地址  
export http_proxy https_proxy ftp_proxy no_proxy
保存退出,注销重新登陆系统即可生效。





这是使用者自订开机启动程序 (/etc/rc.d/rc.local)



发现vim竟然没有颜色,root或sudo修改

vim /etc/vim/vimrc   #查找到syntax on 启用,去掉前面的“ (引号)。

保存ok

==========================================================

【scp 反过来复制 】


scp [email protected]:/home/root/others/music /home/space/music/1.mp3
scp -r www.cumt.edu.cn:/home/root/others/ /home/space/music/


===========================================================

[mysql 类问题 ]

安装itop警告包过大
vim /etc/my.conf
[mysqld]
增加:
max_allowed_packet=20M

保存退出!
service mysqld restart

修改mysql的root默认空密码
mysqladmin -u root passwd "root123"

修改mysql用户密码
use user;
update userset password=PASSWORD("asset$haha") WHERE user='root';
FLUSH PRIVILEGES;

===========================================================

【 时间 时区 问题 】

修改时区为上海:
cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

打包命令:
tar -jcf tar.bz2
tar -zcf tar.gz

日期时间修改
date -s "20150817 09:09:09"

时间显示
[root@pc0003 wudi.sh]# date "+%Y-%m-%d %H-%M-%S"
2015-09-01 14-34-51

时间同步:
yum -y install ntpdate
ntpdate time.nist.gov


=====================================================
redhat类linux主机名 修改
vim /etc/sysconfig/network


uniq命令

重启计划任务
sudo /etc/init.d/cron restart

=====================================================

【全局变量问题】


添加当前路径到环境变量,注意后面的小点
export PATH=$PATH:.
永久环境变量
vim /etc/profile
export PATH=$PATH:$PATH:/usr/local/bin

========================================================


scp 命令未被发现
yum -y install openssh-clients

tar.bz2解压失败
apt-get install bzip2

centos7没有kill
yum install -y pasmisc


获取root权限
sudo su

忽略所有输出
cat hahaha.txt > /dev/null 2>&1



配置防火墙
vim /etc/sysconfig/iptables

iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT


yum 的设置
vim /etc/yum.conf





com1 && com2 com1为真时执行com2
com1 || com2 com1为假时执行com2
sort < haha 把haha排序


:%s/\r//g 删除vim文本里面的^M

== Debian 问题 ========================
dpkg -l




debian7 的sudo问题

提示:-bash: sudo: command not found

解决方法:


root@ceph-osd3:~# cd /etc/apt/

root@ceph-osd3:/etc/apt# wget -O sources.list http://mirrors.163.com/.help/sources.list.wheezy

root@ceph-osd3:/etc/apt# apt-get update;apt-get install sudo

root@ceph-osd2:~# sudo fdisk -l
sudo: unable to resolve host ceph-osd2

Disk /dev/sda: 536.9 GB, 536870912000 bytes
255 heads, 63 sectors/track, 65270 cylinders, total 1048576000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000314e2

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048    19531775     9764864   83  Linux
/dev/sda2        19533822  1048573951   514520065    5  Extended
/dev/sda5        19533824    23724031     2095104   82  Linux swap / Solaris
/dev/sda6        23726080  1048573951   512423936   83  Linux


你可能感兴趣的:(linux,笔记)