摘要: 一、系统安装 1,freebsd.org下载stick.img 2,写u盘 3,u盘启动安装 (bsdinstall, sysinstall) 二、无线网络 1,rc.conf 增加 wlans_rtwn0="wlan0" ifconfig_wlan0="WPA DHCP" #defaultrout 阅读全文
posted @ 2023-02-03 11:03 sunrisecape 阅读(197) 评论(0) 推荐(0)
摘要: dwcontrol.update(false,true)前面的那个参数是指定数据窗口控件在更新数据库之前是否自动执行accepttext()的功能把编辑框中的内容放置到缓冲区中,true为执行accepttext(),false为不执行。后面的那个参数指明更新数据库后是否自动复位更新标志。true为 阅读全文
posted @ 2021-09-03 14:31 sunrisecape 阅读(826) 评论(0) 推荐(0)
摘要: DATAWINDOW的四个缓冲区 在PowerBuilder中,DataWindow是用户前端用来存储、操纵数据的对象。 在每一个DataWindow对象中有4个二维表作为数据缓冲区,用来存储查询到的数据。 用户在DataWindow中对数据处理系统内部的操作实际上都是将数据在这几个缓冲区中进行的修 阅读全文
posted @ 2021-09-03 14:25 sunrisecape 阅读(153) 评论(0) 推荐(0)
摘要: # cd /usr/src/sys/i386/conf # mkdir /root/kernels # cp GENERIC /root/kernels/MYKERNEL # ln -s /root/kernels/MYKERNEL# cd /usr/src# #make buildkernel K 阅读全文
posted @ 2021-08-28 07:33 sunrisecape 阅读(58) 评论(0) 推荐(0)
摘要: 1,无线网卡设置 # 创建并编辑wpa_supplicant.conf vim /etc/wpa_supplicant.conf network={ scan_ssid=1 # 如果是隐藏wifi加入这个,不是就不要加了 ssid="abc"# abc为wifi名字 psk="1234" # 密码 阅读全文
posted @ 2021-08-26 21:34 sunrisecape 阅读(309) 评论(0) 推荐(0)
摘要: 1)conf/tomcat_user.xm增加如下,l配置用户和角色 <role rolename="manager"/> <role rolename="manager-gui"/> <role rolename="admin"/> <role rolename="admin-gui"/> <us 阅读全文
posted @ 2021-06-24 10:21 sunrisecape 阅读(372) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-03-03 15:42 sunrisecape 阅读(45) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-03-03 15:36 sunrisecape 阅读(28) 评论(0) 推荐(0)
摘要: window平台clang编译成功的参数: b2 --build-dir=build --stagedir=lib-cc architecture=x86 address-model=64 link=static runtime-link=static runtime-link=static too 阅读全文
posted @ 2020-07-18 14:13 sunrisecape 阅读(307) 评论(0) 推荐(0)
摘要: 1.压缩命令: 命令格式:tar -zcvf 压缩文件名.tar.gz 被压缩文件名 可先切换到当前目录下。压缩文件名和被压缩文件名都可加入路径。 2.解压缩命令: 命令格式:tar -zxvf 压缩文件名.tar.gz 解压缩后的文件只能放在当前的目录。 阅读全文
posted @ 2020-07-18 14:08 sunrisecape 阅读(167) 评论(0) 推荐(0)