Linux下添加一用户Sunrier并设置密码为redhat:
su -
输入密码
pwconv
useradd Sunrier
pwunconv
pwconv
passwd Sunrier
redhat
pwunconv
改变档案的拥有者
chown -R user[:group] file
user : 新的档案拥有者的使用者 ID
group: 新的档案拥有者的使用者群体(group),为可选项
-R : 对目前目录下的所有档案与子目录进行相同的拥有者变更(即以递回的方式逐个变更)
例:
[root@localhost Sunrier]# ls -l
总计 6
drwxr-xr-x 3 root root 4096 07-31 11:11 src
[root@localhost Sunrier]# chown -R Sunrier:Sunrier src
[root@localhost Sunrier]# ls -l
总计 6
drwxr-xr-x 3 Sunrier Sunrier 4096 07-31 11:11 src
[root@localhost Sunrier]#
初始设置root密码: sudo passwd root
切换到root: su root
Windows到Linux编码转换:iconv -f 原编码 -t 新编码 filename [-o newfile]
iconv -f GBK -t UTF-8 hello.c -o hello_new.c
makefile中文乱码解决方案:
vi makefile
:set fileencoding //查看文件编码格式
:set fileencoding=utf-8 //修改文件编码为utf-8(linux)
:set fileencoding=cp936 //修改文件编码为cp936(windows)
注:linux下默认编码为utf-8, windows下默认编码为cp936