定义单位长度为:1 byte
1 | 6 |
¶有符号输的编码规则 总结:
1 | 原码:最高位为符号位,其余各位为数值的绝对值 |
定义单位长度为:1 byte
1 | 6 |
1 | 原码:最高位为符号位,其余各位为数值的绝对值 |
Gateway的cors配置不一样,需要增加webFilter
1 | package com.yunlsp.gateway.config; |
1 | spring: |
官方网址:www.tecmint.com/install-google-chrome-on-redhat-centos-fedora-linux/
1 | [google-chrome] |
yum info google-chrome-stable
yum install google-chrome-stable --nogpg
EPEL即Extra Packages for Enterprise Linux,为CentOS提供了额外的10000多个软件包,而且在不替换系统组件方面下了很多功夫,因而可以放心使用。
sudo yum install epel-release
Nux Dextop中包含了一些与多媒体相关的软件包,作者尽量保证不覆盖base源。官方说明中说该源与EPEL兼容,实际上个别软件包存在冲突,但基本不会造成影响:
sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
ELRepo包含了一些硬件相关的驱动程序,比如显卡、声卡驱动:
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org# rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm
Remi源大家或许很少听说,不过Remi源GoFace强烈推荐,尤其对于不想编译最新版的linux使用者,因为Remi源中的软件几乎都是最新稳定版。或许您会怀疑稳定不?放心吧,这些都是Linux骨灰级的玩家编译好放进源里的,他们对于系统环境和软件编译参数的熟悉程度毋庸置疑。
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
RPMForge是CentOS系统下的软件仓库,拥有4000多种的软件包,被CentOS社区认为是最安全也是最稳定的一个软件仓库。
rpm -Uvh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
RPMFusion
如果您现在正在使用Fedora 15,对RPMFusion一定不陌生吧,各种音频软件如MPlayer在标准源中是没有的,一般先安装RPMFusion源,之后就可以放便地yum install各种需要的软件啦。
sudo rpm -Uvh http://mirrors.aliyun.com/rpmfusion/free/el/updates/6/x86_64/rpmfusion-free-release-6-1.noarch.rpm$sudorpm -Uvh http://mirrors.aliyun.com/rpmfusion/nonfree/el/updates/6/x86_64/rpmfusion-nonfree-release-6-1.noarch.rpm
yum-axelget是EPEL提供的一个yum插件。使用该插件后用yum安装软件时可以并行下载,大大提高了软件的下载速度,减少了下载的等待时间:
yum install yum-axelget
在CentOS更新后,并不会自动删除旧内核。所以在启动选项中会有多个内核选项,可以手动使用以下命令删除多余的内核:
uname -a
1 | Linux localhost2.6.18-274.18.1.el5#1 SMP Thu Feb 9 12:45:52 EST 2012 i686 i686 i386 GNU/Linux |
rpm -qa | grep kernel
1 | kernel-devel-2.6.18-194.el5 |
1 | yum remove kernel-2.6.18-194.el5 |
reboot
注意:不需要手动修改/boot/grub/menu.lst
1 | /** |
#
一级标题##
二级标题###
三级标题####
四级标题#####
五级标题######
六级标题1 | 这是多行代码 |
1 | |表头1|表头1|表头1| |
1 | * \\ |
1 | <details> |
预览效果:
1、配置环境变量
2、配置MySQL配置文件
3、初始化
以管理员身份运行cmd,进入bin目录
输入:mysqld -install (如果不用管理员身份运行,将会因为权限不够而出现错误:Install/Remove of the Service Denied!)
然后输入:mysqld --initialize-insecure --user=mysql (此操作会初始化data文件夹,如果不执行此操作,一般都会无法启动MySql服务)
4、更新密码
放开 skip-grant-tables , 启动服务(net start mysql)
执行 mysql -u root -p , 还不输入密码直接进入
update mysql.user set authentication_string=password('root') where user='root' ;
commit;
注意:
MySQL报错:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
解决办法:
set global read_only=0;、(关掉新主库的只读属性)
flush privileges;
注释 skip-grant-tables,停止服务(net stop mysql),重启服务(net start mysql),使用密码正常登陆