上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 安装 sudo apt-get install MySQL-server mysql-client 查看安装端口情况 sudo netstat -tap | grep mysql 配置文件位置 sudo vim /etc/mysql/my.cnf 打开关闭服务 /etc/init.d/mysql s 阅读全文
posted @ 2017-06-17 09:08 siegel 阅读(817) 评论(0) 推荐(0) 编辑
摘要: 首先,安装MySQL 在安装phpmyadmin 建立/var/www/html 下的软连接 修改PHP配置文件 重启apache 访问端口localhost/phpmyadmin,输入账号密码即可 重点提要:因为默认安装phpmyadmin时会安装apahce和php等依赖包,由于是16.04系统 阅读全文
posted @ 2017-06-08 21:49 siegel 阅读(2328) 评论(0) 推荐(0) 编辑
摘要: 运行程序 图形界面程序(普通程序):直接使用 wine 命令行的DOS程序:wineconsole 代替 wine。这才是正常的运行方式。不使用wineconsole运行命令界面程序将只提供非常有限的控制台支持,你的程序可能无法正常工作。 winedbg 代替 wine,是用于调试的。具体见 man 阅读全文
posted @ 2017-06-08 21:14 siegel 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 1、安装源 sudo add-apt-repository ppa:wine/wine-builds sudo apt-get update 2、安装wine sudo apt-get install --install-recommends wine-staging sudo apt-get in 阅读全文
posted @ 2017-06-08 21:11 siegel 阅读(823) 评论(0) 推荐(0) 编辑
摘要: delphi+cnpack 用惯了,转移到 lazarus 有点难受是不是!其实, lazaurs 的编辑器也是蛮强 大的,支持代码补全,自动完成,模板编辑,多行缩进注释,选定代码后批量更改里面的单 词!目前,我知道的就这些。 好,先第一个,代码补全! 按下键盘的 Ctrl+W 键!输入变量后按下这 阅读全文
posted @ 2017-06-06 22:29 siegel 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 问题:ubuntu右上角红色三角感叹号警告,显示更新信息已过期The update information is outdated。 解决方案: 首先在“系统设置(system settings)”->“软件和更新(Software&Updates)”->“其它软件(Other Software)” 阅读全文
posted @ 2017-06-03 16:47 siegel 阅读(625) 评论(0) 推荐(0) 编辑
摘要: delphi TStringList 用法详解 //TStringList 常用方法与属性 : //读入字符串 //置换分隔符 //类似的哈希表操作法 //避免重复值 //排序与倒排序 阅读全文
posted @ 2017-06-03 07:56 siegel 阅读(1655) 评论(0) 推荐(0) 编辑
摘要: var FSetting : TFormatSettings; DateTime1: tDateTime; begin FSetting := TFormatSettings.Create(LOCALE_USER_DEFAULT); FSetting.ShortDateFormat:='yyyy-M 阅读全文
posted @ 2017-06-02 14:10 siegel 阅读(3970) 评论(0) 推荐(0) 编辑
摘要: 我们都知道ubuntu是一款linux系统,它不像WINDOWS系统,它是一个开源的系统,它随时都在更新它系统,所以人们都说Linux系统要比WINDOWS系统安全。为了我们电脑安全,我们如何利用ubuntu命令更新系统呢? 我们都知道ubuntu是一款linux系统,它不像WINDOWS系统,它是 阅读全文
posted @ 2017-06-01 21:06 siegel 阅读(647) 评论(0) 推荐(0) 编辑
摘要: Private timer:Ttimer;procedure MyTimerDo(Sender:Tobject);procedure create ; timer:=TtIMER.Create; Timer.Enabled:=True; timer.Ontimer:=MyTimerDo;end;pr 阅读全文
posted @ 2017-05-30 13:42 siegel 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页