SCIENTIFIC-LINUX-USERS Archives

June 2010

SCIENTIFIC-LINUX-USERS@LISTSERV.FNAL.GOV

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Urs Beyerle <[log in to unmask]>
Reply To:
Urs Beyerle <[log in to unmask]>
Date:
Thu, 24 Jun 2010 18:19:10 +0200
Content-Type:
text/plain
Parts/Attachments:
text/plain (53 lines)
Hi,

Przemysław Pawełczyk wrote:
> Dnia 19-06-2010 o 19:22:46 Urs Beyerle <[log in to unmask]>
> napisał(a):
> 
>> Scientific Linux Live CD/DVD 5.5 has been released for i386 and x86_64.
>> (...)
>>  - livecd:       CD-ROM for 32bit
>>  - livecd64:     CD-ROM for 64bit
>>  - livedvd:      DVD-ROM for 32bit
>>  - livedvd64:    DVD-ROM for 64bit
>>  - mini_livecd:  Mini CD-ROM for 32bit
> 
> Hi,
> 
> What was the reason not to release the mini_livecd 64bit?
> 


A mini_livecd 64bit was never requested so far. An other reason was to limit the amount of LiveCDs.

What I would do:

Install SL55 64bit from installation CD. Install only a minimal set of packages. Boot the freshly installed
system. Take the rpm list of min_livecd 32bit and remove/add rpms on your system to fit the rpms installed on
min_livecd 32bit. For example

wget ftp://ftp.scientificlinux.org/linux/scientific/livecd/55/i386/mini_livecd_SL55_2010-06-17_rpmlist.txt

rpm -qa --qf "%{name}\n" | sort > my_list
sort mini_livecd_SL55_2010-06-17_rpmlist.txt > new_list

cp /etc/yum.conf /tmp/yum.conf
echo multilib_policy=best >> /tmp/yum.conf

rpms_add=$( diff my_list new_list | grep ">" | cut -d" " -f2 )
yum -c /tmp/yum.conf install $rpms_add

rpms_remove=$( diff my_list new_list | grep "<" | cut -d" " -f2 )
yum remove $rpms_remove


Nevertheless, I've just built a mini_livecd 64bit. Download mini_livecd64_SL55_2010-06-24.iso from

http://www.livecd.ethz.ch/download/testing/55/x86_64/

It's not tested, but you may want to give it a try.

Cheers,

	Urs

ATOM RSS1 RSS2