アフィリエイト広告を利用しています
ファン
検索
<< 2023年12月 >>
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31            
最新記事
(12/20)KI cad インストールしてみよう
(04/11)【JAVA】チョロメを外部から動作させます。 幽霊が操作してるような
(07/29)spartan3 を cy7c68013 のバルクライトで シリアルコンフィグしてみた
(07/28)ブログ村に参加してみた。いまとのころブログ村からはだれもこない^^;
(07/28)PIC16F1503 を使ってみようかな?? MPLAB 内部クロック
(07/01)からっぽのつぎ のページ きっとはげ に なんか作用するかも
(05/06)GCEでワードプレス 第2 困ったのでやり直し手順
(05/05)https://certbot.eff.org/lets-encrypt/centosrhel7-apache をみてハマったこと
(04/28)フェドラ をつかって switchbot をアクセス する。  ? 未解決
(04/02)【オープンVPN】setsebool -P openvpn_enable_homedirs 1 でうごいた
(04/01)【QT5】わからないのでタイムアウトで自動でキャンセルボタン押すメッセージボックスつくってみた
(03/31)qt5よくわからんのだが メッセージボックスの OKスイッチをタイマーで押してみた。
(03/09)【boost】message queue 使い方 目も目も
(03/08)【バカの一つ覚え】ユニークID作成とそのちょっとした応用
(03/04)【パソコン】【GPIO】いったいこれは?
(02/26)【VHDL入門】ABZ信号から Hsync Vsyncを作り出してみよう その2
(02/26)【VHDL入門】ABZ信号から Hsync Vsyncを作り出してみよう その1
(02/26)【VHDL入門】速度比較 エンコーダーABZ相 ソースファイル付き
(02/25)【VHDL入門】ロータリーエンコーダABZ 出力のサンプル 200Mhz動作?
(02/23)【VHDL入門】UART 送受信繰り返しのテストベンチ作成してみたい
最新コメント
カテゴリーアーカイブ
プロフィール
有象無象さんの画像
有象無象
はげはじめました 禿増されます。励ましのコメントお待ちしてます。  
プロフィール

広告

posted by fanblog

2021年02月17日

LiveCDCustomization Linux Xfce マジこの手順で自分専用のライブCDつくれます。

# first Get Fedora-Xfce-Live-x86_64-32-1.6.iso 

wget https://dl.fedoraproject.org/pub/fedora/linux/releases/32/Spins/x86_64/iso/Fedora-Xfce-Live-x86_64-32-1.6.iso

mkdir tmp3 tmp2 tmp1

mount Fedora-Xfce-Live-x86_64-32-1.6.iso tmp3
mount tmp3/LiveOS/squashfs.img tmp2
tmp2/LiveOS/rootfs.img tmp1

cp -a tmp3 LIVECDIMG
mkdir -p squashfs/LiveOS
truncate -s $((2**33)) squashfs/LiveOS/rootfs.img
mkfs.ext4 -L Fedoralivecd squashfs/LiveOS/rootfs.img
mkdir -p rootfs
mount squashfs/LiveOS/rootfs.img rootfs

cp -a tmp1/* rootfs/

echo hostonly="no" > zzrootfs/etc/dracut.conf.d/01-liveos.conf
echo add_dracutmodules+="dmsquash-live" >> zzrootfs/etc/dracut.conf.d/01-liveos.conf
echo compress="xz" >> zzrootfs/etc/dracut.conf.d/01-liveos.conf

ln -s rootfs zzrootfs

#----------------preparation
mount -o bind /dev/ zzrootfs/dev/
mount -o bind /proc/ zzrootfs/proc/
mount -o bind /tmp/ zzrootfs/tmp/
mount -o bind /run/ zzrootfs/run/
cp /etc/resolv.conf zzrootfs/etc

#------- your -LiveCDCustomization start
chroot zzrootfs

#^^^^^^^^^^^^^^^^^^^ Customaizton braburabura some work
# for rexample
dnf update -y #brabrabra do something

#-------- your -LiveCDCustomization END

#--- Customaizton closing
exit
umount zzrootfs/dev/
umount zzrootfs/proc/
umount zzrootfs/tmp/
umount zzrootfs/run/


umount rootfs
rm -rf squashfs.img.new
mksquashfs squashfs squashfs.img.new -comp gzip
\cp -f squashfs.img.new LIVECDIMG/LiveOS/squashfs.img


###### check the Label Name
cat LIVECDIMG/isolinux/isolinux.cfg |grep CDLABEL
# you will see
#append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image quiet
# append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image rd.live.check quiet
# append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image nomodeset quiet
# or something your CDLABEL is Fedora-Xfce-Live-32-1-6

LANG=C
mkisofs -v -r -J -l -input-charset utf-8 \
-V 'Fedora-Xfce-Live-32-1-6' \
-cache-inodes \
-b isolinux/isolinux.bin \
-c isolinux/boot.cat \
-no-emul-boot \
-boot-load-size 4 \
-boot-info-table \
-o Fedora-Xfce-Live.iso \
./LIVECDIMG

##### you will see Fedora-Xfce-Live.iso file by "ls" command
## check it using "oracle VM VirtualBox"Screenshot_2021-02-17_16-02-40.png


That is ALL ???????
This time you can Not log in by SeLinux (preventing your log in)
SELINUXが オートログインをブロックしています。 

Screenshot_2021-02-17_16-13-10.png

とりあえずっとっとっと
provisionaly using enforcing=0 kernel option
so so
Screenshot_2021-02-17_16-29-53.png

LIVECDIMG/isolinux/isolinux.cfg

default vesamenu.c32
timeout 25

display boot.msg

# Clear the screen when exiting the menu, instead of leaving the menu displayed.
# For vesamenu, this means the graphical background is still displayed without
# the menu itself for as long as the screen remains in graphics mode.
menu clear
menu background splash.png
menu title Fedora-Xfce-Live 32
menu vshift 8
menu rows 18
menu margin 8
#menu hidden
menu helpmsgrow 15
menu tabmsgrow 13

# Border Area
menu color border * #00000000 #00000000 none

# Selected item
menu color sel 0 #ffffffff #00000000 none

# Title bar
menu color title 0 #ff7ba3d0 #00000000 none

# Press [Tab] message
menu color tabmsg 0 #ff3a6496 #00000000 none

# Unselected menu item
menu color unsel 0 #84b8ffff #00000000 none

# Selected hotkey
menu color hotsel 0 #84b8ffff #00000000 none

# Unselected hotkey
menu color hotkey 0 #ffffffff #00000000 none

# Help text
menu color help 0 #ffffffff #00000000 none

# A scrollbar of some type? Not sure.
menu color scrollbar 0 #ffffffff #ff355594 none

# Timeout msg
menu color timeout 0 #ffffffff #00000000 none
menu color timeout_msg 0 #ffffffff #00000000 none

# Command prompt text
menu color cmdmark 0 #84b8ffff #00000000 none
menu color cmdline 0 #ffffffff #00000000 none

# Do not display the actual menu unless the user presses a key. All that is displayed is a timeout message.

menu tabmsg Press Tab for full configuration options on menu items.

menu separator # insert an empty line
menu separator # insert an empty line

label linux
menu label ^Start Fedora-Xfce-Live 32
menu default
kernel vmlinuz
append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image enforcing=0

label check
menu label Test this ^media & start Fedora-Xfce-Live 32
kernel vmlinuz
append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image rd.live.check enforcing=0

menu separator # insert an empty line

# utilities submenu
menu begin ^Troubleshooting
menu title Troubleshooting

label vesa
menu indent count 5
menu label Start Fedora-Xfce-Live 32 in ^basic graphics mode
text help
Try this option out if you're having trouble starting
Fedora-Xfce-Live 32.
endtext
kernel vmlinuz
append initrd=initrd.img root=live:CDLABEL=Fedora-Xfce-Live-32-1-6 rd.live.image nomodeset quiet

label memtest
menu label Run a ^memory test
text help
If your system is having issues, a problem with your
system's memory may be the cause. Use this utility to
see if the memory is working correctly.
endtext
kernel memtest

menu separator # insert an empty line

label local
menu label Boot from ^local drive
localboot 0xffff

menu separator # insert an empty line
menu separator # insert an empty line

label returntomain
menu label Return to ^main menu
menu exit

menu end





ちなみに この アップデートやってますが カーネルが入れ替わったことになっています
しかし 本当のカーネルは vmlinuz ですので カーネル固定です。




















l
この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/10544821
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック
×

この広告は30日以上新しい記事の更新がないブログに表示されております。