分页: 7/86 第一页 上页 2 3 4 5 6 7 8 9 10 11 下页 最后页 [ 显示模式: 摘要 | 列表 ]
无100MB隐藏分区Win7

一、一个已经安装完毕的WIN7系统

二、下载Grub4dos 0.4.4解压将grldr、grldr.mbr、grub.exe、menu.lst 五个文件放置在C盘根目录

三、用记事本打开menu.lst将下面内容复制进去保存
引用

title Install Ubuntu 9.10
find --set-root /vmlinuz
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu910.iso ro quiet splash locale=zh_CN.UTF-8
initrd /initrd.lz


四、新建一个记事本保存为boot.ini配置文件。注意文件扩展名是ini,不是txt.Win7不再采用boot.ini,所以要新建,但是它会自动加载boot.ini配置文件
引用

[boot loader]
timeout=30
[operating systems]
c:\grldr.mbr="grub"


五、将下载好的Ubuntu910.iso镜像文件打开,提取casper目录下的initrd.lz和vmlinuz到C盘根目录。同时Ubuntu910.iso镜像文件也要放在C盘根目录

六、重启电脑,系统将会自动进入live cd(相当于PE系统),Accessories-Terminal终端,并输入下面代码
sudo umount -l /isodevice


七、点击桌面上的install进行安装
Tags: ,
tMan 0.9.11汉化文件


下载文件 (已下载 78 次)
Tags: , ,
1.首先非常非常非常不推荐使用Delphi 2010 update1。对于使用者来说完完全全没有意义的升级补丁。

此日志针对安装后无法使用:摘录(尚未确认是否有效)

delphi2010出了update1,但安装了update1后,licensing方法改变,导致delphi2010不能正常进入,即便重新安装delphi2010也不行,解决办法是,卸载后重新安装,运行Delphi Distiller v1.77去掉licensing,移走C:\Program Files\Embarcadero\RAD Studio\7.0\Welcomepage文件夹,使其启动后不打开default.htm默认首页,则可正常进入delphi2010,进入后,修改delphi桌面为 default Layout,保存桌面,以后可以正常使用了。


下载文件 (已下载 836 次)
这个文件只能在登入之后下载。请先 注册登入
Tags: ,
*************************************************
TMS Component pack v5.3.0.1 : update Oct 7, 2009
*************************************************

Update : TTreeList v1.0.1.3
---------------------------
- Fixed : issue with header painting during horizontal scroll

Update : TAdvToolBar v3.5.0.1
-----------------------------
- Fixed : Display on 120DPI screens
- Fixed : Issue with styler initialization

Update : TAdvOfficeCheckBox v1.2.4.0
------------------------------------
- Improved : handling of actions

Update : THTMLTreeList v1.1.0.1
-------------------------------
- Fixed : issue with header painting during horizontal scroll

Update : TAdvMenus v2.5.2.12
----------------------------
- Fixed : issue with menu item height for imagelists with large images

Update : TDBAdvGrid v2.1.10.4
-----------------------------
- Fixed : issue with design-time scroll handling

Update : TMS Advanced DropDown controls v1.0.0.1
------------------------------------------------
- Fixed : issue with Time separators in TAdvTimePickerDropDown
- Fixed : issue with TAdvMemoDropDown and 'A' key handling

Update : TAdvSmoothMegaMenu v1.0.2.1
------------------------------------
- Fixed : Issue with Saving changes in editor
- Fixed : Issue with floating menus and mousemove

Update : TAdvSmoothDock v1.0.4.1
--------------------------------
- Fixed : Issue with Background fill not drawing when active
- Fixed : Issue with control size in combination with other controls
- Improved : Items jumping out of bounds (images not visible when jumping)

Update : TAdvSmoothJogWheel v1.1.2.1
------------------------------------
- Fixed : Issue with scroll direction of jogwheel

Update : TAdvSmoothImageListBox v1.1.6.1
----------------------------------------
- Fixed : Issue with HTML drawing

Update : TAdvSpinEdit v1.4.4.8
------------------------------
- Fixed : issue with MaxLength & sptHex type
Tags: , ,

INNO 实现下载

不指定 月漩涡 , Oct 25 19:06 , INNO , 评论(0) , 引用(0) , 阅读(401) , 本站原创
点击在新窗口中浏览此图片


#define MyAppName "My Program"
#define MyAppVerName "My Program 1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.mycompany.com"

[Setup]
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=example4
Compression=lzma
SolidCompression=true
CreateAppDir=true
ShowLanguageDialog=yes

[Languages]
Name: en; MessagesFile: compiler:Default.isl
Name: fr; MessagesFile: compiler:Languages\French.isl
Name: nl; MessagesFile: compiler:Languages\Dutch.isl
Name: ptbr; MessagesFile: compiler:Languages\BrazilianPortuguese.isl

#define ITDRoot ReadReg(HKEY_LOCAL_MACHINE,'Software\Sherlock Software\InnoTools\Downloader','InstallPath','')

#include ITDRoot+'\it_download.iss'

[Files]
Source: {#ITDRoot}\languages\*.ini; Flags: dontcopy

[Code]
{ EXAMPLE 4

  In this example, a translation for the UI is read from a file. If the
  language name from the [Languages] section matches the one in the filename
  of an ITD language file, it is used. Otherwise, English is used.
}

{Load the ITD language file that corresponds to Inno's selected
 language}
procedure LoadITDLang;
var lang:string;
begin
 lang:=ExpandConstant('
{language}');

 try
   ExtractTemporaryFile('
itd_'+lang+'.ini');

   ITD_LoadStrings(expandconstant('
{tmp}\itd_'+lang+'.ini'));
 except
   {We get here if the selected language wasn'
t included in the
    set of ITD translation files. In this case, just use ITD's
    built in translation file (English), by not loading anything.

    Note that the exception will still appear while debugging -
    you can turn this off in Inno Setup Compiler options
    ("Pause on exceptions"), or just ignore it. It doesn'
t appear
    at runtime.}
 end;
end;

procedure InitializeWizard();
begin
 itd_init;

 LoadITDLang;

 //Let's download two zipfiles from my website..
 itd_addfile('http://www.sherlocksoftware.org/petz/files/dogz5.zip',expandconstant('{tmp}\dogz5.zip'));
 itd_addfile('http://www.sherlocksoftware.org/petz/files/petz4.zip',expandconstant('{tmp}\petz4.zip'));

 //Start the download after the "Ready to install" screen is shown
 itd_downloadafter(wpReady);
end;

procedure CurStepChanged(CurStep: TSetupStep);
begin
 if CurStep=ssInstall then begin //Lets install those files that were downloaded for us
  filecopy(expandconstant('{tmp}\dogz5.zip'),expandconstant('{app}\dogz5.zip'),false);
  filecopy(expandconstant('{tmp}\petz4.zip'),expandconstant('{app}\petz4.zip'),false);
 end;
end;
 
Tags: ,
分页: 7/86 第一页 上页 2 3 4 5 6 7 8 9 10 11 下页 最后页 [ 显示模式: 摘要 | 列表 ]