当前位置:首页 > 嵌入式 > 嵌入式软件
[导读]这两天单位要部一个环境.CentOS64+Qt+Mysql+ftp+无密钥传输的.有段日了没装系统了..呵呵..命令忘的都差不多了..记录一下.###############################################

这两天单位要部一个环境.CentOS64+Qt+Mysql+ftp+无密钥传输的.

有段日了没装系统了..呵呵..

命令忘的都差不多了..记录一下.

############################################################################################

# 1. CentOS 配置yum源

############################################################################################

# 挂载两个ISO

将第一个盘的ISO1文件拷贝到ISO2中,进行挂载.

[base-centos]

name=CentOS

baseurl=file:///mnt/iso

gpgcheck=0

enabled=1

# 安装gcc,java

yum intall -y gcc*

yum intall -y java*

# 关闭防火墙

关闭:

chkconfig iptables off

selinuxenabled 0

############################################################################################

# 2. 安装MYSQL-5.1.66

############################################################################################

# 配置好yum源后,yum install -y mysql*

# 启动mysql

service mysqld start

mysql -h192.168.2.18 -uroot -p111

# 查看监听端口

netstat -tnlp |grep :3306

# 查看库

show databases;

# mysql的远程连接

# 在[mysqld]的段中加上一句:skip-grant-tables

[mysqld]

datadir=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

skip-name-resolve

skip-grant-tables

目的是为了:

跳过MySQL的访问控制,任何人都可以在控制台以管理员的身份进入MySQL数据库。

需要注意的是在修改完密码以后要把MySQL服务器停掉重新启动才会生效

重启mysql服务!

如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

############################################################################################

# 3. 编译安装Qt-4.5.2

############################################################################################

## Qt安装方法

解压安装包,并移动到 /user/locale/下面.

./configure -debug-and-release -fast -qt-sql-mysql -no-qt3support -no-webkit -no-opengl -no-openssl

# 配置结果

<注意:Qt默认只支持PNG图片,

如果有JPEG或其它格式,

需要去Qt的安装目录

plugins\imageformats

下拷贝图片插件>

Debug ............... no

Qt 3 compatibility .. no

QtDBus module ....... no

QtScriptTools module yes

QtXmlPatterns module yes

Phonon module ....... no

SVG module .......... yes

WebKit module ....... no

STL support ......... yes

PCH support ......... yes

MMX/3DNOW/SSE/SSE2.. yes/yes/yes/yes

Graphics System ..... default

IPv6 support ........ yes

IPv6 ifname support . yes

getaddrinfo support . yes

getifaddrs support .. yes

Accessibility ....... yes

NIS support ......... yes

CUPS support ........ no

Iconv support ....... yes

Glib support ........ no

GStreamer support ... no

Large File support .. yes

GIF support ......... plugin

TIFF support ........ plugin (qt)

JPEG support ........ plugin (qt)

PNG support ......... yes (qt)

MNG support ......... plugin (qt)

zlib support ........ system

Session management .. yes

OpenGL support ...... no

NAS sound support ... no

XShape support ...... yes

Xinerama support .... runtime

Xcursor support ..... runtime

Xfixes support ...... runtime

Xrandr support ...... runtime

Xrender support ..... yes

Xi support .......... runtime

MIT-SHM support ..... yes

FontConfig support .. yes

XKB Support ......... yes

immodule support .... yes

GTK theme support ... no

MySQL support ....... qt

SQLite support ...... plugin (qt)

OpenSSL support ..... no

## 编译安装

gmake && gmake install

## 修改环境变量

可以将环境变量添加到 .bashrc 或 .bash_profile 或 /etc/bashrc 或 /etc/profile

它们的区别是:

1. /etc/profile:对所有用户生效,当用户第一次登录时,该文件被执行.

2. /etc/bashrc:对所有用户生效,为每一个运行bash shell的用户执行此文件

3. ~/.bash_profile:仅会对当前用户有效,当用户登录时,该文件仅仅执行一次

4. ~/.bashrc:仅会对当前用户有效,当登录时以及每次打开新的shell时,该该文件被读取

QTDIR=/usr/local/qt-4.5.2

PATH=$QTDIR/bin:$PATH

LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

QMAKESPEC=$QTDIR/mkspecs/linux-g++-64

export QTDIR

export PATH

export LD_LIBRARY_PATH

export QMAKESPEC

## 查看Qt支持的图片类型

可以运行下面的函数查看:QImageReader::supportedImageFormats

QList QImageReader::supportedImageFormats () [static]

Returns the list of image formats supported by QImageReader.

By default, Qt can read the following formats:

Format Description

BMP Windows Bitmap

GIF Graphic Interchange Format (optional)

JPG Joint Photographic Experts Group

JPEG Joint Photographic Experts Group

MNG Multiple-image Network Graphics

PNG Portable Network Graphics

PBM Portable Bitmap

PGM Portable Graymap

PPM Portable Pixmap

TIFF Tagged Image File Format

XBM X11 Bitmap

XPM X11 Pixmap

SVG Scalable Vector Graphics

TGA Targa Image Format

Reading and writing SVG files is supported through Qt's SVG Module.

TGA support only extends to reading non-RLE compressed files. In particular calls to capabilities for the tga plugin returns only QImageIOPlugin::CanRead, not QImageIOPlugin::CanWrite.

To configure Qt with GIF support, pass -qt-gif to the configure script or check the appropriate option in the graphical installer.

Note that the QApplication instance must be created before this function is called.

See also setFormat(), QImageWriter::supportedImageFormats(), and QImageIOPlugin.

############################################################################################

# 4. 使用Qt连接Mysql

############################################################################################

#include

#include

#include

#include

using namespace std;

int main(int argc, char *argv[])

{

QApplication app(argc, argv);

QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");

db.setHostName("localhost");

db.setDatabaseName("mydb");

db.setUserName("username");

db.setPassword("password");

db.open();

QSqlQuery query;

query.exec("create table hello(id bigint not null auto_increment,name varchar(255),age bigint,primary key (id))");

query.exec("insert into hello(name, age) values('xiaoxi', 18)");

query.exec("insert into hello(name, age) values('xiaonan', 19)");

query.exec("insert into hello(name, age) values('xiaobei', 20)");

query.exec("insert into hello(name, age) values('xiaodong', 21)");

QSqlQueryModel *model = new QSqlQueryModel;

model->setQuery("select * from hello");

model->setHeaderData(0, Qt::Horizontal, "id");

model->setHeaderData(1, Qt::Horizontal, "name");

model->setHeaderData(2, Qt::Horizontal, "age");

QTableView *view = new QTableView;

view->setWindowTitle("QSqlQueryModel");

view->setModel(model);

view->show();

db.close();

return app.exec();

}

编译:

xhy@xhy-desktop:~$ qmake -project

xhy@xhy-desktop:~$ qmake

一定别忘了在工程的.pro文件里加上下面一行:

QT += sql

xhy@xhy-desktop:~$make

xhy@xhy-desktop:~$./mysql

############################################################################################

# 5. CentOS配置sftp

############################################################################################

sftp是ssh内含的协议,只要sshd服务器启动了,它就可用.

sftp root@192.168.2.18

>ls

>get ...

>put ...

如果sshd服务没有默认启动:

chkconfig sshd on

############################################################################################

# 6. CentOS配置无密钥传输

############################################################################################

# 举例说明:

[root@centos6-64 .ssh]# pwd

/root/.ssh

[root@centos6-64 .ssh]# ssh-keygen

Generating public/private rsa key pair.

Enter file in which to save the key (/root/.ssh/id_rsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in /root/.ssh/id_rsa.

Your public key has been saved in /root/.ssh/id_rsa.pub.

The key fingerprint is:

d6:2a:df:0b:46:3d:22:da:5b:24:b2:da:78:01:f3:c4 root@centos6-64

The key's randomart image is:

+--[ RSA 2048]----+

| |

| |

| . |

| o E o |

| =. o S + |

| o= * o . |

| o.o = |

| +. * o |

| o.. . . o. |

+-----------------+

[root@centos6-64 .ssh]# ls -lrt

total 16

-rw-r--r-- 1 root root 394 Nov 18 16:18 known_hosts

-rw-r--r-- 1 root root 394 Nov 18 22:32 authorized_keys

-rw-r--r-- 1 root root 397 Nov 18 22:33 id_rsa.pub

-rw------- 1 root root 1675 Nov 18 22:33 id_rsa

[root@centos6-64 .ssh]# scp id_rsa.pub 192.168.2.16:~/.ssh/authorized_keys

root@192.168.2.16's password:

id_rsa.pub 100% 397 0.4KB/s 00:00

[root@centos6-64 .ssh]# ssh 192.168.2.16

Last login: Mon Nov 18 22:16:16 2013 from 192.168.2.221

[root@red6-64 ~]#

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

上海2023年9月21日 /美通社/ -- 由于在雇主品牌建设拥有优异表现,台达于9月15日在 “2023 HRoot 人力资本论坛·上海站”获颁“2023大中华区卓越雇...

关键字: ROOT MIDDOT EXPLORING

不一样的人力资源日818 HR Day 上海2023年8月18日 /美通社/ -- 每年的8月18日,是属于人力资源工作者的节日。多年以来,中智一直致力于提升人力资本在企业...

关键字: AI MIDDOT BSP ROOT

上海2023年2月3日 /美通社/ -- 一元复始,万象更新,2023年如约而至。回首2022,兄弟(中国)商业有限公司(以下简称"兄弟(中国)")在崭新...

关键字: SE BSP ROOT 可持续发展

以崭新商务及专业打印方案尽显创新本色 香港2022年11月18日 /美通社/ -- 热情是一门艺术,而热情的美学,正正从色彩的无限可能性中体现。色彩运用得宜不但能...

关键字: 佳能 IO IMAGE BSP

北京2022年6月15日 /美通社/ -- 随着夏季气温的上升,在饮料消费旺季即将来临之际,饮料品牌竞争愈发激烈,毕竟货架、冰柜的空间有限,谁占据的空间越大,谁“备战”越充分,谁就越占据有利形势。在消费者的囤货指南上,功...

关键字: PLAYER ASIA COM IMAGE

整理 |祝涛    出品|CSDN(ID:CSDNnews)如果你即将离职,你会做什么?抨击自己付出了五年心血的技术——这是Oracle公司前首席软件工程师、MySQL优化器团队成员SteinarGunderson的选择...

关键字: 工程师 MYSQL ORACLE POSTGRESQL

0x00背景周一早上刚到办公室,就听到同事说有一台服务器登陆不上了,我也没放在心上,继续边吃早点,边看币价是不是又跌了。不一会运维的同事也到了,气喘吁吁的说:我们有台服务器被阿里云冻结了,理由:对外恶意发包。我放下酸菜馅...

关键字: Linux EV 脚本 ROOT

爱奇艺基础数据平台主要是为了统一公司内部的基础数据交换规范,解决不同团队之间ID不统一问题(各团队都有自己独立的ID)、数据定义不统一、数据更新不及时等问题。随着公司业务发展,除了视频基础数据,还逐步对接了UGC视频、全...

关键字: HBASE ROCKETMQ 控制 MYSQL

小编为大家整理出了三个有关性能监控和优化命令详细讲解,别看只有三个,但不影响他噎啊,本篇文章很长,涉及top命令、free命令和vmstat命令,真的是很详细的讲解,希望能帮到大家,另外还有两条相关的命令详解,消化消化这...

关键字: CACHE ROOT BUFFER CPU

服务器安全是网站站长很关注的话题,因为网站安全关系到网站优化排名的波动、企业品牌形象以及传递错误信息,将错误网站浏览页面展现给了浏览用户。那么ileowu今天对WEB服务器安全设置,从而提升服务

关键字: 防护 WEB服务器 端口 ROOT
关闭
关闭