redhat

修改redhat默认显示语言为中文

梦想与她 提交于 2020-02-17 20:18:20
[delmore@localhost Desktop]$ su //切换到最高权限 Password: //输入root密码 [root@localhost Desktop]# cd /etc/sysconfig/ //切换到系统设置目录下 [root@localhost sysconfig]# vi i18n //使用VI工具编辑 l18n 这个文件。输入冒号和i(:i)切换到输入模式,并将该文件修改为以下内容,修改好后保存(:w),退出VI(:q) #LANG="en_US.UTF-8" LANG="zh_CN.UTF-8" SYSFONT="latarcyrheb-sun16" [root@localhost sysconfig]# reboot //重启系统 重启后,便成功切换到了中文环境。当然,提前需要修改/etc/inittab从id:5启动 来源: https://www.cnblogs.com/mmdln/p/9039246.html

RedHat 6.2 中的 samba 服务端配置 方法

家住魔仙堡 提交于 2020-02-12 01:19:09
1、 安装samba-3.5.10-114.el6.i686 包; 2、 修改配置文件:/etc/samba/smb.conf     在配置文件末尾增加 如下内容, 例如:     [root]   path = /   writable = yes   valid users = root 3、 使用smbpasswd命令增加samba用户:     如下:     [root@CentOS ~]# smbpasswd -a root     New SMB password:     Retype new SMB password: 4、 配置samba服务自动启动:       chkconfig smb on 5、 重启samba服务:       [root@CentOS ~]# service smb restart       Shutting down SMB services: [ OK ]       Starting SMB services: [ OK ] 6、 停止或配置iptables,以开放客户端连接,方法如下(停止iptables服务):       service iptables stop       并关闭自动启动功能:       chkconfig iptables off 7、 为客户端提供写权限,方法:       修改/etc

linux命令之grep用法介绍

独自空忆成欢 提交于 2020-02-07 03:58:14
Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户。 grep的工作方式是这样的,它在一个或多个文件中搜索字符串模板。如果模板包括空格,则必须被引用,模板后的所有字符串被看作文件名。搜索的结果被送到标准输出,不影响原文件内容。 grep可用于shell脚本,因为grep通过返回一个状态值来说明搜索的状态,如果模板搜索成功,则返回0,如果搜索不成功,则返回1,如果搜索的文件不存在,则返回2。我们利用这些返回值就可进行一些自动化的文本处理工作。 1.命令格式: grep [option] pattern file 2.命令功能: 用于过滤/搜索的特定字符。可使用正则表达式能多种命令配合使用,使用上十分灵活。 3.命令参数: -a --text #不要忽略二进制的数据。 -A<显示行数> --after-context=<显示行数> #除了显示符合范本样式的那一列之外,并显示该行之后的内容。 -b --byte-offset #在显示符合样式的那一行之前,标示出该行第一个字符的编号。 -B<显示行数> --before-context=<显示行数> #除了显示符合样式的那一行之外,并显示该行之前的内容。 -c

linux学习笔记24---命令grep

◇◆丶佛笑我妖孽 提交于 2020-02-07 03:04:30
Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。grep全称是global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来,表示全局正则表达式版本,它的使用权限是所有用户。 grep的工作方式是这样的,它在一个或多个文件中搜索字符串模板。 如果模板包括空格,则必须被引用,模板后的所有字符串被看作文件名。搜索的结果被送到标准输出,不影响原文件内容 。 grep可用于shell脚本,因为grep通过返回一个状态值来说明搜索的状态, 如果模板搜索成功,则返回0,如果搜索不成功,则返回1,如果搜索的文件不存在,则返回2 。我们利用这些返回值就可进行一些自动化的文本处理工作。 1.命令格式: grep [option] pattern file 2.命令功能: 用于过滤/搜索的特定字符。可使用正则表达式能多种命令配合使用,使用上十分灵活。 3.命令参数: -a --text #不要忽略二进制的数据。 -A<显示行数> --after-context=<显示行数> #除了显示符合范本样式的那一列之外,并显示该行之后的内容。 -b --byte-offset #在显示符合样式的那一行之前,标示出该行第一个字符的编号。 -B<显示行数> -

redhat rhcsa 124学习笔记

折月煮酒 提交于 2020-02-05 06:21:24
双击tab键可以执行commang和option补充 命令行编辑快捷键:ctrl+a光标移动至命令行开头,ctrl+e光标移动至命令行尾部,ctrl+k删除当前光标至尾部的所有字符,ctrl+u删除当前光标前至头部的所有字符,ctrl+r命令反向搜索,esc+.复制前一个命令的最后一个参数 file:显示文件类型。 head(tail):显示文件内容,-n 定义显示行数。 wc:-l 统计文件行数,-w 统计文件单词数(空格作为单词分隔符),-c 统计文件字符数。 date +%r:以HH:MM:SS AM/PM显示当前时间 ctrl+d:退出当前console session. pwd: ls: -a -r -l -R cd: touch:建立新文件或更新文件时间戳。 . :当前目录 .. :当前目录的父目录 cp file1 file2 mv file1 file2 rm file1 mkdir dir1 cp -r dir1 dir2 mv dir1 dir2 rm -r dir1 globbing:通配符 * 来源: 51CTO 作者: jyxcto 链接: https://blog.51cto.com/jiaoxianyao/2469170

How to change OpenShift console URL and API URL

北慕城南 提交于 2020-02-05 05:20:08
问题 My company runs OpenShift v3.10 cluster consisting of 3 masters and 4 nodes. We would like to change URL of the OpenShift API and also the URL of the OpenShift web console. Which steps we need to take to successfully do so? We have already tried to update the o penshift_master_cluster_hostname and openshift_master_cluster_public_hostname variables to new DNS names, which resolve our F5 virtual hosts which load balances the traffic between our masters, and then started the upgrade Ansible

破解Redhat开机密码过程

无人久伴 提交于 2020-02-04 22:21:41
破解Redhat开机密码过程 仅用于忘记密码的情况下 一。重新开启虚拟机,选择开启方式,按e进入 二。修改linux16行末,添加rd.break,按ctrl+X进入 三。输入mount -o remount,rw /sysroot 修改挂载点读写权限为rw 四。输入chroot /sysroot切换挂载点,使用passwd修改root密码,创建/.autorelabel文件,输入两次exit退出命令行 五。等待加载 六。输入破解前密码发现错误 七。输入破解后密码登陆成功,破解完成 来源: CSDN 作者: Roman-H 链接: https://blog.csdn.net/qq_40877371/article/details/104173533

Python pocketsphinx recognition from the microphone

瘦欲@ 提交于 2020-02-02 16:40:00
问题 I have installed and setup both pocketsphinx and sphinxbase packages in python. I have also taken code of speech recognition for github and changed both data and mode directory as per requirement but still it is unable to stream by voice when I am trying to run it by "python test.py" Here is the code: #!/usr/bin/env python import os import sphinxbase as sb import pocketsphinx as ps MODELDIR = '/usr/lib/python2.7/site-packages/speech_recognition/pocketsphinx-data' DATADIR='/usr/lib/python2.7

Python pocketsphinx recognition from the microphone

偶尔善良 提交于 2020-02-02 16:39:11
问题 I have installed and setup both pocketsphinx and sphinxbase packages in python. I have also taken code of speech recognition for github and changed both data and mode directory as per requirement but still it is unable to stream by voice when I am trying to run it by "python test.py" Here is the code: #!/usr/bin/env python import os import sphinxbase as sb import pocketsphinx as ps MODELDIR = '/usr/lib/python2.7/site-packages/speech_recognition/pocketsphinx-data' DATADIR='/usr/lib/python2.7

Python pocketsphinx recognition from the microphone

你离开我真会死。 提交于 2020-02-02 16:38:11
问题 I have installed and setup both pocketsphinx and sphinxbase packages in python. I have also taken code of speech recognition for github and changed both data and mode directory as per requirement but still it is unable to stream by voice when I am trying to run it by "python test.py" Here is the code: #!/usr/bin/env python import os import sphinxbase as sb import pocketsphinx as ps MODELDIR = '/usr/lib/python2.7/site-packages/speech_recognition/pocketsphinx-data' DATADIR='/usr/lib/python2.7