ChinaUnix.net
相关文章推荐:

ubuntu qt

ubuntu版本是7.04,我公司是代理服务器,我修改了/etc/apt/apt.conf下的配置文件,但是apt-get总还是报这些错,我不知道到底是什么原因: unable to fetch some achives,maybe run apt-get update or try with --fix-missing 然后我运行apt-get update 也出现同样的错误。。。 请问是什么原因,我怀疑是 source.list出问题了,但是怎么修改呢?

by chuengchuenghq - Linux系统管理 - 2008-05-23 07:22:18 阅读(1269) 回复(1)

相关讨论

作者: zhjbond 出自: http://www.linuxdiyf.com ubuntu下安装qt4可以通过新得立软件包管理器(或者命令行apt)很方便的实现。 1.所需要的包 libqt4-debug libqt4-gui libqt4-qt3support libqt4-sql qt4-designer qt4-dev-tools qt4-doc qt4-qtconfig 推荐安装前删除已安装的老版本 2.安装c++编译器 build-essential 3.ctags exuberant-ctags代码补全 4.QDevelop 免费的IDE http://qdevelop.free.fr 可以得到执行安装文件或者原代码...

by sdccf - Linux文档专区 - 2008-04-09 23:20:30 阅读(497) 回复(0)

apt-get install g++ qt4-dev-tools apt-get install libqt4-dev apt-get install libqt4-dev-kdecopy apt-get install qt3-dev-tools 安装qt3 apt-get install qt3-dev-tools qt3-examples python-qt3 qt3-designer qt3-assistant 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/25952/showart_364260.html

by redegao - Linux文档专区 - 2007-08-20 22:27:05 阅读(703) 回复(0)

配置tftp 配置tftp服务的步骤: 1、安装相关软件包:tftpd(服务端),tftp(客户端),xinetd sudo apt-get install tftpd tftp xinetd 2、建立配置文件 在/etc/xinetd.d/下建立一个配置文件tftp sudo vi tftp 在文件中输入以下内容: service tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /tftpboot disable = no per_source = 11 cps = 1...

by cr858923 - Linux文档专区 - 2010-01-17 19:43:12 阅读(1355) 回复(0)

虽然网络上很多人使用 Redhat 或者fedora 作为上位机操作系统,但是我觉得使用ubuntu最为方便,因为需要的软件包大部分都可以通 过 apt-get 方式来安装,而不必从源代码开始自己编译。要知道,自己编译源代码可不是一件轻松的事,因为在编译过程中经常会出现令人意外而且莫名 其妙的错误。 我们使用的操作系统是 ubuntu 8.04,使用目前最新版本的qt 4.4.0,安装起来即为简单,只要运行以下命令就行: sudo apt-get install qt4...

by jacky6668 - Linux文档专区 - 2009-12-01 14:54:44 阅读(855) 回复(0)

qt Creator生成的Makefile中,链接选项中链接了glib和gthread两个库,在/usr/lib下面明明有这两个库,为什么 不能链接,去掉这两个链接选项后,能编译通过,程序也能运行。这是怎么回事?

by shenyan008 - Linux环境编程 - 2009-08-11 10:15:05 阅读(1454) 回复(2)

apt-get install kdesdk kdesdk-doc-html #库,文档 apt-get install kdevelop kdevelop-doc #IDE以及文档 qt4 apt-get install libqt4-dev qt4-designer qt4-doc #库 apt-get install kde4-devel #IDE 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/93262/showart_1953177.html

by hsq863 - Linux文档专区 - 2009-06-03 10:58:33 阅读(747) 回复(0)

下载qt4 [color="#0000ff"]ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-4.3.2.tar.gz 安装过程: 1,首先qt-x11-opensource-src-4.3.2.tar.gz,解压到临时目录中。 2,其次,因ubuntu在默认安装下,并没安装编程环境,则必须安装编译环境:sudo apt-get install build-essential。安装后,则g,g++,make会被安装。----否则下一步执行时会出错终止! 3,在安装完编译环境后,进入安装程序所以目录,在终端下,运行“....

by sparkzh - Linux文档专区 - 2008-09-11 15:39:37 阅读(1150) 回复(0)

First make sure you remove all the qt3 dev tools so that your program isn’t compiled using qt3. It is safe and even recommended to leave the qt3 libraries installed since they may be required for other packages. $ sudo apt-get remove qt3-dev-tools Install the qt4 libraries and tools: $ sudo apt-get install libqt4-core libqt4-gui libqt4-sql $ sudo apt-get install libqt4-qt3support libqt4-dev qt4-...

by creatory - Linux文档专区 - 2008-04-15 10:54:18 阅读(463) 回复(0)