Click Here
home features news forums classifieds faqs links search
6071 members 
Amiga Q&A /  Free for All /  Emulation /  Gaming / (Latest Posts)
Login

Nickname

Password

Lost Password?

Don't have an account yet?
Register now!

Support Amigaworld.net
Your support is needed and is appreciated as Amigaworld.net is primarily dependent upon the support of its users.
Donate

Menu
Main sections
» Home
» Features
» News
» Forums
» Classifieds
» Links
» Downloads
Extras
» OS4 Zone
» IRC Network
» AmigaWorld Radio
» Newsfeed
» Top Members
» Amiga Dealers
Information
» About Us
» FAQs
» Advertise
» Polls
» Terms of Service
» Search

IRC Channel
Server: irc.amigaworld.net
Ports: 1024,5555, 6665-6669
SSL port: 6697
Channel: #Amigaworld
Channel Policy and Guidelines

Who's Online
9 crawler(s) on-line.
 79 guest(s) on-line.
 1 member(s) on-line.


 Gunnar

You are an anonymous user.
Register Now!
 Gunnar:  4 mins ago
 Hammer:  5 mins ago
 zipper:  11 mins ago
 Makedonk:  20 mins ago
 amigakit:  22 mins ago
 bhabbott:  28 mins ago
 retrofaza:  28 mins ago
 VooDoo:  36 mins ago
 pavlor:  45 mins ago
 matthey:  1 hr 11 mins ago

/  Forum Index
   /  Amiga OS4.x \ Workbench 4.x
      /  How to improve OS4 Bootup time
Register To Post

Goto page ( Previous Page 1 | 2 | 3 | 4 | 5 | 6 Next Page )
PosterThread
PulsatingQuasar 
Re: How to improve OS4 Bootup time
Posted on 13-Feb-2006 20:05:28
#41 ]
Cult Member
Joined: 10-Mar-2003
Posts: 550
From: The Netherlands, Europe

What about using the fastest picture datatype to load your background?

I guess it will be one of the WarpDT datatypes and probably the PNG or BMP one.

_________________
AmigaOne-XE G3 OS 4.
A4000 PPC
A1200 PPC

 Status: Offline
Profile     Report this post  
drHirudo 
Re: How to improve OS4 Bootup time
Posted on 13-Feb-2006 20:58:20
#42 ]
Super Member
Joined: 26-Apr-2004
Posts: 1113
From: Sofia

There are still places for optimisations/speedup:

run >NIL: C:AddNetInterface >NIL: DEVS:NetInterfaces/~(#?.(info|off))

can be replaced with the faster:

run >NIL: C:AddNetInterface >NIL: DEVS:NetInterfaces/{your interface name}
The above saves the scan of the DEVS:Netinterfaces/ drawer. Only some microseconds, but still.

edit your Startup-Sequence. The next lines can be deleted:

IF EXISTS S:User-Startup
Execute S:User-Startup
EndIF


and on their place include your whole User-Startup file. Saves the load of second file and still some microseconds.

Remove assigns for programs you don't use much. For example a program you run only once in a month - you can always add the assign later, when needed, but if it's done every time it boots, every time it checks the drawer - wastes microseconds and spindles the hard drive.

Weirder technics:

Compile your Startup-Sequence into AmigaOS 4 native binary and save it to Startup-Sequence.exe for example and your real Startup-Sequence will consist of only one line:

run >NIL: Startup-Sequence.exe

_________________
Games, programs, reviews

 Status: Offline
Profile     Report this post  
Giovanni 
Re: How to improve OS4 Bootup time
Posted on 13-Feb-2006 21:18:25
#43 ]
Regular Member
Joined: 19-May-2003
Posts: 322
From: Munich, Germany

@drHirudo

Quote:
Weirder technics:

Compile your Startup-Sequence into AmigaOS 4 native binary and save it to Startup-Sequence.exe for example and your real Startup-Sequence will consist of only one line:

run >NIL: Startup-Sequence.exe


hehe, I like that one!

_________________
www.amiga4ever.de

 Status: Offline
Profile     Report this post  
Samwel 
Re: How to improve OS4 Bootup time
Posted on 14-Feb-2006 9:34:22
#44 ]
Elite Member
Joined: 7-Apr-2004
Posts: 3404
From: Sweden

Here's a optimized startup-sequence for those that want to edit theirs.


; $VER: Startup-Sequence 51.2 (28.05.2005)

kdebug "console memory" >NIL:

C:SetPatch QUIET

FailAt 21

C:Version >NIL:
SetEnv Workbench $Workbench
SetEnv Kickstart $Kickstart
UnSet Workbench
UnSet Kickstart

Resident >NIL: C:Assign PURE
Resident >NIL: C:Mount PURE
Resident >NIL: C:MakeDir PURE

MakeDir RAM:T RAM:Clipboards

Assign >NIL: T: RAM:T
Assign >NIL: CLIPS: RAM:Clipboards
Assign >NIL: REXX: S:Arexx
Assign >NIL: LOCALE: SYS:Locale DEFER
Assign >NIL: CLASSES: SYS:classes DEFER
Assign >NIL: PRINTERS: DEVS:Printers
Assign >NIL: KEYMAPS: DEVS:Keymaps
Assign >NIL: LIBS: SYS:Classes add
Assign >NIL: HELP: LOCALE:Help DEFER

Run >NIL: Mount >NIL: DEVS:DOSDrivers/~(#?.(info|off))
Run >NIL: C:AddNetInterface >NIL: DEVS:NetInterfaces/~(#?.(info|off))
Run >NIL: C:LoadMonDrvs
Run >NIL: C:AddDataTypes REFRESH QUIET
C:IPrefs
C:ConClip

Path RAM: S:Shell S:Arexx SYS:Utilities SYS:Tools SYS:Tools/Commodities SYS:System SYS:Prefs SYS:WBStartup

SYS:System/REXXMast >NIL:
C:USBCtrl >NIL: start

IF EXISTS S:User-Startup
Execute S:User-Startup
EndIF

Run ""NIL: C:PowerIcons >NIL: SELR=150 SELG=150 SELB=20

C:LoadWB
EndCLI >NIL:



Damn it. The PowerIcons line gets wrong. It should have Run then two NIL:
the first with a lesser than char and the second with a bigger than char.

Last edited by Samwel on 14-Feb-2006 at 09:40 AM.
Last edited by Samwel on 14-Feb-2006 at 09:38 AM.
Last edited by Samwel on 14-Feb-2006 at 09:36 AM.
Last edited by Samwel on 14-Feb-2006 at 09:35 AM.

_________________
/Harry

[SOLD] µA1-C - 750GX 800MHz - 512MB - Antec Aria case

Avatar by HNL_DK!

 Status: Offline
Profile     Report this post  
salass00 
Re: How to improve OS4 Bootup time
Posted on 14-Feb-2006 10:18:14
#45 ]
Elite Member
Joined: 31-Oct-2003
Posts: 2707
From: Finland

@Samwel

Quote:

Damn it. The PowerIcons line gets wrong. It should have Run then two NIL:
the first with a lesser than char and the second with a bigger than char.


If you want to redirect both input and output to NIL: you can save some typing by just using:
<>NIL:

BTW if you use html entities, i.e. &lt; and &gt;, the brackets don't disappear when you submit. Make sure you copy what you wrote though if you want to preview first so you can paste it back in as the preview converts the html entities back into brackets...

 Status: Offline
Profile     Report this post  
Zorro 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 9:23:28
#46 ]
Super Member
Joined: 30-Apr-2003
Posts: 1081
From: Italy

@Metalheart

Quote:
...a warm one takes 10 ! secs....


Yes this was my time also but try the Samwel's startup sequence (adapt to your system configuration, if needed)... I have gained a fairly good 1,5-2 seconds cut...

@Samwel

Thanks...

Last edited by Zorro on 17-Feb-2006 at 09:29 AM.

_________________
-------------------------------
AmigaOS, the last hope...

 Status: Offline
Profile     Report this post  
Rogue 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 10:39:35
#47 ]
OS4 Core Developer
Joined: 14-Jul-2003
Posts: 3999
From: Unknown

@drHirudo

Quote:
edit your Startup-Sequence. The next lines can be deleted:

IF EXISTS S:User-Startup
Execute S:User-Startup
EndIF

and on their place include your whole User-Startup file. Saves the load of second file and still some microseconds.


And break every installer in existence... Good idea

_________________
Seriously, if you want to contact me do not bother sending me a PM here. Write me a mail

 Status: Offline
Profile     Report this post  
AmiGame 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 10:45:38
#48 ]
Elite Member
Joined: 23-Mar-2004
Posts: 3599
From: Peterborough, UK, Planet Earth (I think...)

@Rogue

Quote:
And break every installer in existence... Good idea

But if the A1 is booting faster then the goal is achieved !

Jerry

_________________
- AOS has been ported to ex-86 ! It's called AROS and WinUAE... Or E-UAE on Linux !

- A1XE-G4 up and runing with:
512MB Ram / 200GB and 80GB HardDisks on Sii0680.
AOS4 Final Update / AmiZilla 0.1 Alpha

 Status: Offline
Profile     Report this post  
Frags 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 12:37:46
#49 ]
Cult Member
Joined: 23-Nov-2004
Posts: 971
From: East-Midlands (Nottingham) UK

@Rogue

I suspect that people knowledgable enough to do this kind of thing would also be aware of that, so it`s probably alright :o) Besides, it`s precisely this sort of customisation that makes AmigaOS fun in my opinion.

_________________
Fraggle

- insert profound text here -

 Status: Offline
Profile     Report this post  
Anonymous 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 14:48:46
# ]

0
0

@All

I might have read this slow, but i'm confused to how to make OS4 bootup a
little faster. It's very fast from UBoot and when loading the kickstart
modules, but takes a couple of seconds until the OS4 screen shows up..

How do i edit this in a clever way so that the bootup becomes faster
without causing any problems?

 
     Report this post  
pixie 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 14:49:51
#51 ]
Elite Member
Joined: 10-Mar-2003
Posts: 3134
From: Figueira da Foz - Portugal

@All

BTW, has anyone yet managed to get *negative* times booting?

_________________
Indigo 3D Lounge, my second home.
The Illusion of Choice | Am*ga

 Status: Offline
Profile     Report this post  
AmiGame 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 15:05:37
#52 ]
Elite Member
Joined: 23-Mar-2004
Posts: 3599
From: Peterborough, UK, Planet Earth (I think...)

@Helgis

Quote:
How do i edit this in a clever way so that the bootup becomes faster ?


Overclocking ?

//Me run !!

Jerry

_________________
- AOS has been ported to ex-86 ! It's called AROS and WinUAE... Or E-UAE on Linux !

- A1XE-G4 up and runing with:
512MB Ram / 200GB and 80GB HardDisks on Sii0680.
AOS4 Final Update / AmiZilla 0.1 Alpha

 Status: Offline
Profile     Report this post  
Anonymous 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 15:13:48
# ]

0
0

@Jerryuk007

Hehe...pretty funny
No, i'm serious

How making the bootup in OS4 faster?

 
     Report this post  
Mangaclub 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 15:15:39
#54 ]
Regular Member
Joined: 11-Feb-2004
Posts: 163
From: Germany

@Helgis
take a look here http://amigaworld.net/modules/newbb/viewtopic.php?forum=14&topic_id=17610

_________________
www.brevis-design.de

 Status: Offline
Profile     Report this post  
Anonymous 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 15:35:24
# ]

0
0

@Mangaclub

My my my, do you know

It actually worked! I just edited the ones you said, and not affecting
the others, and i gave it a try. UBoot uses 1 second. That was never
the issuse. OS4 was the issuse. Putting Run before these important
files changed a lot! Thank you so much!

Runs much faster now!

Woho!

And even Run >NIL: C:IPrefs fully works, because Update 4 uses the
new, latest version of it It makes it even faster. Immerdiate
boot Can't get better than this

Send these tips of the Startup-sequence to Rogue, and i'm sure they will
"correct" this as standard, making the OS4 boot progress even faster ,
unless they might have some brand new ideas for this, so

Last edited by Helgis on 17-Feb-2006 at 03:46 PM.
Last edited by Helgis on 17-Feb-2006 at 03:44 PM.

 
     Report this post  
painter 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 15:58:46
#56 ]
Cult Member
Joined: 5-Oct-2003
Posts: 681
From: Manitoba, Canada

@Jerryuk007

Make sure you don't have c:run >NIL: in front of C:IPrefs
That will bugger your boot.

@Mangaclub

I noticed a lot more free memory with update 4. With just workbench
no progs running update 3 left me 2ith 300,xxx.xxx fee other memory
update4 gives me 385,xxx,xxx will running aweb with 2 open windows!
(the x's are because i couldn't remember all the numbers). I have
the same items running in wbstartup and in user-startup.


painter

 Status: Offline
Profile     Report this post  
Zorro 
Re: How to improve OS4 Bootup time
Posted on 17-Feb-2006 19:02:14
#57 ]
Super Member
Joined: 30-Apr-2003
Posts: 1081
From: Italy

@sg2

Quote:
set write cache strategy to delayed flush

Please, can you give some more details on how to do this (FFS2) ?


Quote:
Here, loading all sii* modules + a1ide + scsi driver, cold boot takes way less than 20 secs, and warmboot takes less than 4 s.




I think I can't absolutely reach these times... maybe with some sort of... macumba ?

Last edited by Zorro on 17-Feb-2006 at 07:03 PM.

_________________
-------------------------------
AmigaOS, the last hope...

 Status: Offline
Profile     Report this post  
Anonymous 
Re: How to improve OS4 Bootup time
Posted on 18-Feb-2006 10:26:18
# ]

0
0

@All

The only thing i had to leave unchanged was the C:IPrefs in Startup-sequence,
in order to avoid the request saying to close windows right after bootup..

But otherwise, the bootup is very fast now

 
     Report this post  
Samwel 
Re: How to improve OS4 Bootup time
Posted on 18-Feb-2006 11:37:11
#59 ]
Elite Member
Joined: 7-Apr-2004
Posts: 3404
From: Sweden

@Helgis

Check out my post Helgis. There's a copy of a complete Startup-Sequence.

Also note that internet might not be avalable straight away when having RUN in front of
the AddNetInterface command, due to booting being faster than net connection.

Last edited by Samwel on 18-Feb-2006 at 11:37 AM.

_________________
/Harry

[SOLD] µA1-C - 750GX 800MHz - 512MB - Antec Aria case

Avatar by HNL_DK!

 Status: Offline
Profile     Report this post  
acefnq 
Re: How to improve OS4 Bootup time
Posted on 18-Feb-2006 14:04:34
#60 ]
Cult Member
Joined: 11-Jan-2006
Posts: 617
From: Adelaide, South Australia

@Samwel

Thanks I have a big improvement.

ace

 Status: Offline
Profile     Report this post  
Goto page ( Previous Page 1 | 2 | 3 | 4 | 5 | 6 Next Page )

[ home ][ about us ][ privacy ] [ forums ][ classifieds ] [ links ][ news archive ] [ link to us ][ user account ]
Copyright (C) 2000 - 2019 Amigaworld.net.
Amigaworld.net was originally founded by David Doyle