首页 \ 问答 \ mysql4.1中文版安装后,又下了NAVICAT,然后怎么用啊

mysql4.1中文版安装后,又下了NAVICAT,然后怎么用啊

我下了mysql4.1中文版,安装了,下了个NAVICAT,再该干什么啊,哪位仁兄知道的
更新时间:2023-04-26 11:04

最新回答

打不开?你确认你使用了root权限?否则是不能修改的。
sudo gedit /usr/src/linux-2.6.20/arch/i386/Makefile
另外,你确认要有那个文件,如果没有需要安装内核文件,还要是linux-2.6.20的
makefile里面有个all。这个是在make后面缺省的时候会调用all。而make后面加上wang.exe是需要在makefile里面规定一个wang.exe的标签的,一边make wang.exe的时候能够找到入口。看不到你完全的makefile无法做出更详细的回答
用vi打开阿,然后按i键后编辑,编辑完了按esc退出编辑模式,然后按 冒号键再输入 x就保存退出了  即 :x

相关问答

更多
  • 22端口是ssh服务用的,一般没人会改它的,如果你一定要改, 可以修改系统 ssh_config 文件 (在 /etc/ssh_config,或者 /etc/ssh/ssh_config, 你可以 man ssh_config 来看你的系统上ssh_config在哪里 然后加入 Port 1000 然后再重启ssh服务,就把ssh服务端口改成1000了。
  • Make工具最主要也是最基本的功能就是通过makefile文件来描述源程序之间的相互关系并自动维护编译工作。makefile是自己写的,不是安装的。 安装make整个过程可以分为以下几步: 1) 取得应用软件:通过下载、购买光盘的方法获得; 2) 解压缩文件:一般tar包,都会再做一次压缩,如gzip、bz2等,所以你需要先解压。如果是最常见的gz格式,则可以执行:“tar –xvzf 软件包名”,就可以一步完成解压与解包工作。如果不是,则先用解压软件,再执行“tar –xvf 解压后的tar包”进行解包; ...
  • 你的文件obj都生成了吗?连接出来的时候都对吗?单个执行makefile里的每一条命令没错,是不是指的是你直接写命令然后执行是没有问题的?怎么看错误好像是Main没有呢?你的main函数定义了吗?实在不行你把其他obj都编译好,然后有main的那个文件就改成 #include "yourCpp.h" int main() { return 0; } 然后运行试试看呗。 可以就说明你的有main的那个文件有问题,不行就把#include "yourCpp.h"去掉,试试,如果那样可以就说明你的连接的库哪个有问 ...
  • 老板,makefile首字母要大写。人家要的是Makefile哦~
  • 应该这么编 all:client.o server.o gcc -o all client.o server.o server.o:server.c gcc -c server.c client.o:client.c gcc -c client.c claen: rm -rf client.o server.o all 按你说的话,就这么 OBJ=:client.o server.o CC=:gcc NAME=:all ${NAME}:${OBJ} CC -o ${NAME} ${OBJ} CC -c se ...
  • 是写好,再用下面的命令生成合适你自己环境的。 make config 或者 make menu config(menuconfig)中间有没有空格记得不是很清楚。
  • 如果你坚持使用一个makefile文件,这与你已经做的没什么不同,你只需要正确设置include标志。 由于make的内置规则,您的makefile也可以大大简化,并且GCC的依赖关系生成标志不需要手动添加标头。 Nb将main.cc更改为myExec.cc ,它更直观的IMO,并允许您跳过链接配方。 srcs := $(wildcard dirA/*.cc dirB/*.cc) objs := $(srcs:.cc=.o) myExec.o deps := $(objs:.o=.d) CPPFLAGS ...
  • 你不能使用ifeq等,因为这些是预处理器语句:它们是在读入makefile时执行的。 在传统的make中,除了通过脚本和文件之外,没有办法做你想做的事情。 如果你愿意成为GNU make特定的,并且需要一个足够新的GNU版本来支持$(eval ...)函数,那么你就可以做到; 就像是: SHOW := true goal: a b $(if $(SHOW),@echo goal $(eval SHOW :=)) @echo done > goal a: $(i ...
  • 简单的选择是使用-f : $ make -f Makefile 从man 1 make (GNU make,我推测): 如果不存在-f选项,make将按照该顺序查找makefile GNUmakefile , makefile和Makefile 。 所以你把你的Makefile连接到名字GNUmakefile。 但我的建议,如果你真的想这样做,就是使用别名: $ alias make='make -f Makefile' The easy option is to use -f: $ make -f M ...
  • 有关Linux上make的深入处理,请参阅GNU make 。 有一些差异。 二进制文件没有扩展名 EXE = NumberGuessingGame 编译器是gcc ,但不需要命名,因为CC是内置的, LD 。 但由于您的文件名为.cpp ,因此适当的编译器是g++ ,它是make中的CXX 。 对象文件的扩展名为.o OBJ = game.o userInterface.o STD_HEADERS = header.h 编译器标志 CXXFLAGS = -c /Fe的等价物只是-o ,未指定为LDF ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)