Displaying 10 results from an estimated 10 matches for "securecirt".
2002 Oct 30
3
Problem with ISOLinux 2.00
...6 root=/dev/cdroms/cdrom0 init=/linux_installer ro
SERIAL 0 9600
- -----8<------
My ISO building parameters
- -----8<------
cd cdrom_fs &&
mkisofs -o $BUILDROOT/cdrom.iso \
-b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size 4 -boot-info-table \
-P "SecureCiRT, info at securecirt.com" \
-p "Michael Boman, michael.boman at securecirt.com" \
-R .
- -----8<------
This is how the cdrom_fs structure looks like
- -----8<------
# ls -alR
.:
total 23251
drwxr-xr-x 4 root root 152 Oct 30 17:27 .
drwxr-xr-x 5 root ro...
2002 Dec 06
1
Making TIMEOUT work?
...ev/hdc ro devfs=nomount
LABEL ssetup
KERNEL /isolinux/kernel.lnx
APPEND console=tty0 console=ttyS0,38400n8 hda=dma,ata100 hdb=dma,ata100 hdc=nodma init=/setup root=/dev/hdc ro devfs=nomount
----8<------8<----
Best regards
Michael Boman
--
Michael Boman
Security Architect, SecureCiRT (A SBU of Z-Vance Pte Ltd)
http://www.securecirt.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 232 bytes
Desc: not available
URL: <http://www.zytor.com/pipermail/syslinux/attachments/20021206/0ac21698/a...
2006 Jun 13
2
four days on rails - nil object when you didnt expect it
Hi all,
Im trying to get my head around rails and to help along Im working
through "four days on rails" as this seems to give a good real world
example with multiple tables and relationships (the main thing I cant
work out!)
Ive got stuck. Some help would be really good here.
The controller has this code:
def list
@category_pages, @categories = paginate(:category, :per_page =>
2006 Jul 10
3
how to access a model from application.rb
Hi All
How do I access a model from within the application.rb?
What im tying to do is pull some data from a model (news in this case)
that must be displayed on each page within the entire application. I
know I could drop this into each controller, have each view pull it from
the controller, but thats repeating myself...
So whats the best way to do this (as I dont think models are visible
2006 Jul 09
2
using content from a model in application.rhtml
Hi all,
Not sure if Im doing this the right way (most likely not as I cant make
it work!)
I have an application that needs to put some content from two different
tables(db) on every page within the application.
What I thought I could do is write a small application helper that talks
to the model and asks for the data. But I cant for the life of me work
out how to actually talk to a model from
2006 Aug 03
3
Relationships between models.
Hi All,
I think Im having a mental block here. For some reason I just cant get
my head round relationships.
What I have is the following.
4 tables
1) Hosts
2) Software
3) OperatingSystem
4) Company
In my terms (which are most likely wrong) a company can have lots of
hosts, a host has lots of software, a host has one operating system.
So should my models have the following relations in them?
2006 Apr 25
7
Rails producing the / page.
Hi all
Very simple question, im sure, but I cant find docs anywhere that tell
me how to do this.
What I want is for the index page of the server to be generated from
rails, is www.wibble.com/ will result in a page that has been processed
by rails, has the templates etc.
>From what I can see, the index page comes from public/index.html How do
I get this to be a rails page?
Thanks
Jonathan
2006 Jul 20
11
3 columns
Hi all,
Not really sure what to put in the title so hope people still open this!
What I want to do is produce something like this
Col1 Col2 Col3
data1 data2 data3
data4 data5 data6
data7 data8 data9
data.. data.. data..
data.. data.. data..
data-n data-n+1 data-n+2
I can get the data back from my db
2006 Jul 27
1
Weird issue with editing data.
Hi all.
Ive got a small CRUD app that is giving me some weird isuses.
If I add/create an entry that works fine, the data goes into the db. I
can later show the data, but when I edit it, no data is displayed in the
form for me to edit.
Here is the bits from the controller.
def new
@kb=Knowledgebase.new
end
def create
@kb= Knowledgebase.new(params[:kb])
if @kb.save
2006 Jul 29
1
Problem starting push server in Jugganaut
Hi All,
Im playing around with Jugganaut but stuck at the first step.
Seems the jugganaut push server requires json (which I have installed)
but it cant find it.
Following the docs, I have installed json and then try to run the push
server.
jonathan $ ruby script/push_server
script/push_server:37:in `require'': no such file to load -- json
(LoadError)
from