当前位置:首页 > 嵌入式 > 嵌入式软件
[导读]这两天单位要部一个环境.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 ~]#

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

LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: 驱动电源

在工业自动化蓬勃发展的当下,工业电机作为核心动力设备,其驱动电源的性能直接关系到整个系统的稳定性和可靠性。其中,反电动势抑制与过流保护是驱动电源设计中至关重要的两个环节,集成化方案的设计成为提升电机驱动性能的关键。

关键字: 工业电机 驱动电源

LED 驱动电源作为 LED 照明系统的 “心脏”,其稳定性直接决定了整个照明设备的使用寿命。然而,在实际应用中,LED 驱动电源易损坏的问题却十分常见,不仅增加了维护成本,还影响了用户体验。要解决这一问题,需从设计、生...

关键字: 驱动电源 照明系统 散热

根据LED驱动电源的公式,电感内电流波动大小和电感值成反比,输出纹波和输出电容值成反比。所以加大电感值和输出电容值可以减小纹波。

关键字: LED 设计 驱动电源

电动汽车(EV)作为新能源汽车的重要代表,正逐渐成为全球汽车产业的重要发展方向。电动汽车的核心技术之一是电机驱动控制系统,而绝缘栅双极型晶体管(IGBT)作为电机驱动系统中的关键元件,其性能直接影响到电动汽车的动力性能和...

关键字: 电动汽车 新能源 驱动电源

在现代城市建设中,街道及停车场照明作为基础设施的重要组成部分,其质量和效率直接关系到城市的公共安全、居民生活质量和能源利用效率。随着科技的进步,高亮度白光发光二极管(LED)因其独特的优势逐渐取代传统光源,成为大功率区域...

关键字: 发光二极管 驱动电源 LED

LED通用照明设计工程师会遇到许多挑战,如功率密度、功率因数校正(PFC)、空间受限和可靠性等。

关键字: LED 驱动电源 功率因数校正

在LED照明技术日益普及的今天,LED驱动电源的电磁干扰(EMI)问题成为了一个不可忽视的挑战。电磁干扰不仅会影响LED灯具的正常工作,还可能对周围电子设备造成不利影响,甚至引发系统故障。因此,采取有效的硬件措施来解决L...

关键字: LED照明技术 电磁干扰 驱动电源

开关电源具有效率高的特性,而且开关电源的变压器体积比串联稳压型电源的要小得多,电源电路比较整洁,整机重量也有所下降,所以,现在的LED驱动电源

关键字: LED 驱动电源 开关电源

LED驱动电源是把电源供应转换为特定的电压电流以驱动LED发光的电压转换器,通常情况下:LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: LED 隧道灯 驱动电源
关闭