Initial commit
|
@ -0,0 +1,160 @@
|
||||||
|
# This is a basic workflow to help you get started with Actions
|
||||||
|
|
||||||
|
name: slitaz-5.0
|
||||||
|
#on:
|
||||||
|
# push:
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
# schedule:
|
||||||
|
# - cron: 0 20 1 * *
|
||||||
|
# release:
|
||||||
|
# types: [published]
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
# Sequence of patterns matched against refs/tags
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
|
||||||
|
name: 自动汉化并封装每周官方映像
|
||||||
|
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
if: github.event.repository.owner.id == github.event.sender.id
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Space cleanup
|
||||||
|
env:
|
||||||
|
DEBIAN_FRONTEND: noninteractive
|
||||||
|
run: |
|
||||||
|
docker rmi `docker images -q`
|
||||||
|
sudo -E apt-get update
|
||||||
|
sudo -E apt-get -y install zip unzip genisoimage p7zip-full p7zip-rar
|
||||||
|
sudo -E apt-get -y autoremove --purge
|
||||||
|
sudo -E apt-get clean
|
||||||
|
|
||||||
|
- name: download iso and unzip iso
|
||||||
|
run: |
|
||||||
|
wget http://ftp.uni-stuttgart.de/slitaz/iso/rolling/slitaz-rolling-core64.iso
|
||||||
|
mkdir iso-old
|
||||||
|
7z x slitaz-rolling-core64.iso -y -r -o./iso-old
|
||||||
|
wget http://ecoo.top:8083/dl/slitaz/iso/rolling/slitaz5-core64-cn-with-docker.iso
|
||||||
|
wget -O ./packages/teasiu-5.0.tazpkg http://ecoo.top:8083/dl/slitaz/teasiu-5.0.tazpkg
|
||||||
|
wget -O ./packages/updatetime.txt http://ecoo.top:8083/dl/slitaz/iso/rolling/slitaz-rolling-core64-chinese-updatetime.txt
|
||||||
|
|
||||||
|
|
||||||
|
- name: download iso32 and unzip iso32
|
||||||
|
run: |
|
||||||
|
wget http://distro.ibiblio.org/slitaz/iso/rolling/slitaz-rolling-core.iso
|
||||||
|
mkdir iso-old32
|
||||||
|
7z x slitaz-rolling-core.iso -y -r -o./iso-old32
|
||||||
|
|
||||||
|
- name: docker build a new rootfs64
|
||||||
|
run: |
|
||||||
|
docker build -t newrootfs -f ./dockerfile-rootfs64 .
|
||||||
|
|
||||||
|
- name: copy rootfs.gz outside of docker
|
||||||
|
run: |
|
||||||
|
docker run --name myrootfs newrootfs
|
||||||
|
docker cp myrootfs:/tmp/rootfs-new.gz ./iso64/mkiso/rootfs.gz
|
||||||
|
cd ./iso64
|
||||||
|
sh iso.sh
|
||||||
|
cd ../
|
||||||
|
|
||||||
|
- name: docker build a new rootfs32
|
||||||
|
run: |
|
||||||
|
docker build -t newrootfs32 -f ./dockerfile-rootfs32 .
|
||||||
|
|
||||||
|
- name: copy rootfs32.gz outside of docker
|
||||||
|
run: |
|
||||||
|
docker run --name myrootfs32 newrootfs32
|
||||||
|
docker cp myrootfs32:/tmp/rootfs-new.gz ./iso32/mkiso/rootfs.gz
|
||||||
|
cd ./iso32
|
||||||
|
sh iso.sh
|
||||||
|
|
||||||
|
- name: Prepare artifact
|
||||||
|
run: |
|
||||||
|
mkdir -p slitaz-artifact
|
||||||
|
cp -a ./slitaz5.0-rolling-core64-cn.iso slitaz-artifact/
|
||||||
|
cp -a ./slitaz5.0-rolling-core32-cn.iso slitaz-artifact/
|
||||||
|
cp -a ./slitaz5-core64-cn-with-docker.iso slitaz-artifact/
|
||||||
|
|
||||||
|
- name: Deliver package
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: slitaz5-rolling-core64
|
||||||
|
path: slitaz-artifact/
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: Release ${{ github.ref }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
- name: Upload Release Asset2
|
||||||
|
id: upload-release-asset2
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./slitaz5.0-rolling-core32-cn.iso
|
||||||
|
asset_name: slitaz5.0-rolling-core32-cn.iso
|
||||||
|
asset_content_type: application/iso
|
||||||
|
|
||||||
|
- name: Upload Release Asset3
|
||||||
|
id: upload-release-asset3
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./slitaz5-core64-cn-with-docker.iso
|
||||||
|
asset_name: slitaz5-core64-cn-with-docker.iso
|
||||||
|
asset_content_type: application/iso
|
||||||
|
|
||||||
|
- name: Upload Release Asset
|
||||||
|
id: upload-release-asset
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./slitaz5.0-rolling-core64-cn.iso
|
||||||
|
asset_name: slitaz5.0-rolling-core64-cn.iso
|
||||||
|
asset_content_type: application/iso
|
||||||
|
|
||||||
|
slitaz:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
needs: [build]
|
||||||
|
steps:
|
||||||
|
- name: Download a single artifact
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: slitaz5-rolling-core64
|
||||||
|
path: slitaz-artifact/
|
||||||
|
- name: Upload to SourceForge
|
||||||
|
run: |
|
||||||
|
echo "$DEPLOY_KEY" > $HOME/deploy_key
|
||||||
|
cat $HOME/deploy_key
|
||||||
|
set -ex
|
||||||
|
chmod 600 $HOME/deploy_key
|
||||||
|
Localslitaz=`ls -d slitaz-artifact`
|
||||||
|
Remoteslitaz=teasiu@frs.sourceforge.net:/home/frs/project/slitaz/slitaz5-rolling-core64
|
||||||
|
rsync -e "ssh -i $HOME/deploy_key -oStrictHostKeyChecking=no -oBatchMode=yes" -va --delete $Localslitaz/*.iso $Remoteslitaz
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY: ${{ secrets.TEASIU }}
|
|
@ -0,0 +1,63 @@
|
||||||
|
# slitaz5cn
|
||||||
|
神雕定制slitaz中文版
|
||||||
|
<br>Slitaz 是一个免费小巧的GNU/Linux发行版。它可以从光盘或USB设备加载,完整地在内存中运行,也可以安装到硬盘中。
|
||||||
|
<br>Slitaz以LiveCD的形式 发布,您可以把它刻录到光盘,并从光盘启动。你也可以将它与其它例如win-pe🈴盘。
|
||||||
|
<br>LiveCD提供一个特色十足的、图形界面的发行 版,可以保存您的数据和个人设置到其他设备中。
|
||||||
|
<br>这个系统可以通过Tazpkg软件包管理器添加软件来增加各种各样的功能,也可以用它升级系统来保持系统最 安全、最新.
|
||||||
|
# 支持自主定制
|
||||||
|
<br>制作了新型定制办法,定制方法已经在源码中说明,请参照自主定制属于你的slitaz。
|
||||||
|
<br>
|
||||||
|
# 使用
|
||||||
|
<br>请仔细阅读下面这段定制说明。
|
||||||
|
<br>
|
||||||
|
<br>1. 根据官方每周固件进行中文定制。最新版本silitaz5.0-rolling-core64-chinese.iso
|
||||||
|
<br>如果你的电脑内存超过4G,请使用64位。低于4G,请使用32位(32位无法识别超过4G的内存)。
|
||||||
|
<br>2. 管理账号root密码root,用户账号tux密码为tux
|
||||||
|
<br>3. 启动和安装
|
||||||
|
<br>支持各种引导开机,grub4dos,grub2,syslinux,支持efi启动。
|
||||||
|
<br>可以安装到U盘随身启动,也可以和其他pe合盘。
|
||||||
|
<br>可以安装到硬盘也可以网络pxe启动。
|
||||||
|
<br>启动代码请自行在你的启动菜单添加使用:
|
||||||
|
<br>【 root=/dev/null video=-32 lang=zh_CN kmap=us tz=Asia/Shanghai autologin 】
|
||||||
|
<br>4. 内置中文输入法,支持拼音,五笔等,ctrl+空格切换开关,shift切换中英文输入。
|
||||||
|
<br>5. 内置神雕的国内软件源地址,自动从国内源下载和更新软件包。
|
||||||
|
<br>6. 国内源镜像http://ecoo.top:8083/dl/slitaz/iso/rolling
|
||||||
|
<br>7. 增加sudo加权功能,在命令前sudo即可使用管理权限。
|
||||||
|
<br>8. 增加著名的诺顿精灵GHOST。可用于系统备份维护。
|
||||||
|
<br>9. 内置gpartd磁盘分区格式程序,可用于电脑硬件维护。
|
||||||
|
<br>10. 内置tazpanel,可查看系统硬件环境,软件环境,启动参数等。
|
||||||
|
<br>11. 内置5000多个软件安装包的在线安装程序,可以自由安装。
|
||||||
|
<br>12. 已添加虚拟机桌面驱动,可以在虚拟机中显示桌面。
|
||||||
|
<br>13. 已添加ssh启动,可远程ssh登陆。(dropbear)
|
||||||
|
<br>远程登录账号tux密码tux,登陆后sudo可提权。
|
||||||
|
<br>14. 已添加gftp软件。另外,自带的busybox的ftpput和ftpget命令也集成。
|
||||||
|
<br>15. 集成了transmission BT远程下载并安装最新web-ctrl,远程登陆账号tux密码tux。
|
||||||
|
<br>16. 集成vlmcsd最新版的KMS服务器,远程激活windows。
|
||||||
|
<br>17. 集成一键开启samba3.6版网络文件共享服务
|
||||||
|
<br>支持在文件管理器输入smb://192.168.1.1访问网络共享
|
||||||
|
<br>支持挂载openwrt和synology群晖网络存储空间,
|
||||||
|
<br>sudo mount.cifs //192.168.1.1/usb /mnt/ -o vers=2.0
|
||||||
|
<br>sudo mount.cifs -o username=admin,password=passwd,
|
||||||
|
<br>rw,forceuid=nobody,forcegid=nogroup,dir_mode=0777,file_mode=0777,vers=2.0
|
||||||
|
<br>//192.168.111.2/volume1/files /mnt
|
||||||
|
<br>18. 内置fbinst软件,可使用命令行各种骚操作。
|
||||||
|
<br>19. 编译定制了专用火狐浏览器中文版,支持online自动安装。
|
||||||
|
<br>修复输入法在火狐浏览器下的使用。
|
||||||
|
<br>20. 修复了解压缩软件并添加了中文。修复 rar && unrar
|
||||||
|
<br>21. 内置git-server服务器,让你随时随地白嫖免费的高速上传下载空间。
|
||||||
|
<br>作为一个系统玩家,这个特别实用哦。
|
||||||
|
<br>详见内置文档<a href="#git">白嫖5GB仓库指南使用教程</a>。
|
||||||
|
<br>22. 添加了安装到硬盘的脚本,支持一键安装slitaz系统到本地硬盘。
|
||||||
|
<br>安装到硬盘后,请将/etc/init.d/system.sh最后某行
|
||||||
|
<br>echo "tux:tux" | chpasswd删除。便以你修改登录密码生效。
|
||||||
|
<br>23. 添加了axel多线程下载软件,直接在终端 (axel n 10 下载地址)就是10线程下载。
|
||||||
|
<br>24. 添加rsync备份神器。
|
||||||
|
<br>25. 添加了很多的小工具,在我的文档文件夹内。
|
||||||
|
<br>项目下载地址更新为(三处同步更新):
|
||||||
|
<br>https://github.com/teasiu/slitaz5cn
|
||||||
|
<br>https://sourceforge.net/projects/slitaz/
|
||||||
|
<br>http://ecoo.top:8083 (推荐)
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
# We're using a multistage Docker build here in order to allow us to release a self-verifying
|
||||||
|
|
||||||
|
FROM slitazcn/slitaz-5.0-base
|
||||||
|
COPY ./iso-old32/boot/rootfs.gz ./packages/* ./
|
||||||
|
RUN mkdir -p /tmp/rootfs && \
|
||||||
|
ls -l && \
|
||||||
|
mv rootfs.gz /tmp/rootfs && \
|
||||||
|
cd /tmp/rootfs && \
|
||||||
|
(zcat rootfs.gz 2>/dev/null || lzma d rootfs.gz -so) | cpio -id && \
|
||||||
|
rm rootfs.gz && \
|
||||||
|
cd / && \
|
||||||
|
ls -l && \
|
||||||
|
sh /gen-slitaz32.sh && \
|
||||||
|
cd /tmp/rootfs && \
|
||||||
|
ls -l && \
|
||||||
|
find . -print | cpio -o -H newc | lzma e -si -so > ../rootfs-new.gz
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
# We're using a multistage Docker build here in order to allow us to release a self-verifying
|
||||||
|
# Docker image when built on the official Docker infrastructure.
|
||||||
|
# They require us to verify the source integrity in some way while making sure that this is a
|
||||||
|
# reproducible build.
|
||||||
|
# See https://github.com/docker-library/official-images#image-build
|
||||||
|
# In order to achieve this, we externally host the rootfs archives and their checksums and then
|
||||||
|
# just download and verify it in the first stage of this Dockerfile.
|
||||||
|
# The second stage is for actually configuring the system a little bit.
|
||||||
|
# Some templating is done in order to allow us to easily build different configurations and to
|
||||||
|
# allow us to automate the releaes process.tazpkg install ghost-5.0.1.tazpkg --root=$ISO_PATH/rootfs --nodeps --local
|
||||||
|
|
||||||
|
FROM slitazcn/slitaz-5.0-base
|
||||||
|
COPY ./iso-old/boot/rootfs.gz ./packages/* ./
|
||||||
|
RUN mkdir -p /tmp/rootfs && \
|
||||||
|
ls -l && \
|
||||||
|
mv rootfs.gz /tmp/rootfs && \
|
||||||
|
cd /tmp/rootfs && \
|
||||||
|
(zcat rootfs.gz 2>/dev/null || lzma d rootfs.gz -so) | cpio -id && \
|
||||||
|
rm rootfs.gz && \
|
||||||
|
cd / && \
|
||||||
|
sh /gen-slitaz64.sh && \
|
||||||
|
cd /tmp/rootfs && \
|
||||||
|
ls -l && \
|
||||||
|
find . -print | cpio -o -H newc | lzma e -si -so > ../rootfs-new.gz
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
genisoimage -r -T -J -V "Slitaz_ISO" -b winly.bin -c boot.cat -no-emul-boot -boot-load-size 4 \
|
||||||
|
-boot-info-table -eltorito-alt-boot -e efiboot.img -no-emul-boot -v -o ../slitaz5.0-rolling-core32-cn.iso ./mkiso
|
||||||
|
|
After Width: | Height: | Size: 23 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
F BOOT_000.PNG;1 boot_menu_c.png
|
||||||
|
F BOOT_001.PNG;1 boot_menu_nw.png
|
||||||
|
F BOOT_002.PNG;1 boot_menu_w.png
|
||||||
|
F BOOT_003.PNG;1 boot_menu_ne.png
|
||||||
|
F BOOT_004.PNG;1 boot_menu_sw.png
|
||||||
|
F BOOT_005.PNG;1 boot_menu_n.png
|
||||||
|
F BOOT_006.PNG;1 boot_menu_e.png
|
||||||
|
F BOOT_007.PNG;1 boot_menu_s.png
|
||||||
|
F BOOT_MEN.PNG;1 boot_menu_se.png
|
||||||
|
F DEJAV000.PF2;1 dejavu-sans-bold-14.pf2
|
||||||
|
F DEJAV001.PF2;1 dejavu-sans-12.pf2
|
||||||
|
F DEJAVU_S.PF2;1 dejavu-sans-10.pf2
|
||||||
|
D ICONS icons
|
||||||
|
F PROGR000.PNG;1 progress_c.png
|
||||||
|
F PROGR001.PNG;1 progress_highlight_c.png
|
||||||
|
F PROGR002.PNG;1 progress_highlight_w.png
|
||||||
|
F PROGRESS.PNG;1 progress_highlight_e.png
|
||||||
|
F SELECT_C.PNG;1 select_c.png
|
||||||
|
F SELECT_E.PNG;1 select_e.png
|
||||||
|
F SELECT_W.PNG;1 select_w.png
|
||||||
|
F SLIDER_C.PNG;1 slider_c.png
|
||||||
|
F SLITAZ4C.PNG;1 slitaz4cn.png
|
||||||
|
F TERMI000.PNG;1 terminal_c.png
|
||||||
|
F TERMI001.PNG;1 terminal_w.png
|
||||||
|
F TERMI002.PNG;1 terminal_sw.png
|
||||||
|
F TERMI003.PNG;1 terminal_se.png
|
||||||
|
F TERMI004.PNG;1 terminal_ne.png
|
||||||
|
F TERMI005.PNG;1 terminal_s.png
|
||||||
|
F TERMI006.PNG;1 terminal_n.png
|
||||||
|
F TERMI007.PNG;1 terminal_e.png
|
||||||
|
F TERMINAL.PNG;1 terminal_nw.png
|
||||||
|
F THEME.TXT;1 theme.txt
|
||||||
|
F WALLPAPE.PNG;1 wallpaper.png
|
After Width: | Height: | Size: 165 B |
After Width: | Height: | Size: 183 B |
After Width: | Height: | Size: 177 B |
After Width: | Height: | Size: 655 B |
After Width: | Height: | Size: 272 B |
After Width: | Height: | Size: 181 B |
After Width: | Height: | Size: 514 B |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 148 B |
|
@ -0,0 +1,4 @@
|
||||||
|
[Dolphin]
|
||||||
|
PreviewsShown=true
|
||||||
|
Timestamp=2012,10,28,1,37,37
|
||||||
|
Version=3
|
|
@ -0,0 +1,20 @@
|
||||||
|
F ARCH.PNG;1 arch.png
|
||||||
|
F DEBIAN.PNG;1 debian.png
|
||||||
|
F FEDORA.PNG;1 fedora.png
|
||||||
|
F GENTOO.PNG;1 gentoo.png
|
||||||
|
F GNU_LINU.PNG;1 gnu-linux.png
|
||||||
|
F KUBUNTU.PNG;1 kubuntu.png
|
||||||
|
F LINUXMIN.PNG;1 linuxmint.png
|
||||||
|
F LUBUNTU.PNG;1 lubuntu.png
|
||||||
|
F MANDRIVA.PNG;1 mandrivalinux.png
|
||||||
|
F OPENSUSE.PNG;1 opensuse.png
|
||||||
|
F OSX.PNG;1 osx.png
|
||||||
|
F RECOVERY.PNG;1 recovery.png
|
||||||
|
F SABAYON.PNG;1 sabayon.png
|
||||||
|
F SLACKWAR.PNG;1 slackware.png
|
||||||
|
F SLITAZ.PNG;1 slitaz.png
|
||||||
|
F SUBMENU.PNG;1 submenu.png
|
||||||
|
F UBUNTU.PNG;1 ubuntu.png
|
||||||
|
F WINDOWS.PNG;1 windows.png
|
||||||
|
F XUBUNTU.PNG;1 xubuntu.png
|
||||||
|
F _DIRECTO.;1 .directory
|
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 386 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 139 KiB |
After Width: | Height: | Size: 7.6 KiB |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 446 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 233 B |
After Width: | Height: | Size: 268 B |
After Width: | Height: | Size: 172 B |
After Width: | Height: | Size: 490 B |
After Width: | Height: | Size: 438 B |
After Width: | Height: | Size: 130 B |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 165 B |
After Width: | Height: | Size: 135 B |
After Width: | Height: | Size: 164 B |
After Width: | Height: | Size: 271 B |
After Width: | Height: | Size: 248 B |
After Width: | Height: | Size: 133 B |
After Width: | Height: | Size: 145 B |
After Width: | Height: | Size: 124 B |
After Width: | Height: | Size: 134 B |
|
@ -0,0 +1,59 @@
|
||||||
|
# Ubuntu 13.04 GRUB2 theme
|
||||||
|
|
||||||
|
desktop-image: "wallpaper.png"
|
||||||
|
title-text: ""
|
||||||
|
terminal-box: "terminal_*.png"
|
||||||
|
#terminal-font: "Gnu Unifont Mono Regular 16"
|
||||||
|
|
||||||
|
+ boot_menu {
|
||||||
|
left = 24%-5
|
||||||
|
width = 55%+11
|
||||||
|
top = 22%-5
|
||||||
|
height = 55%+21
|
||||||
|
menu_pixmap_style = "boot_menu_*.png"
|
||||||
|
item_font = "DejaVu Sans Bold 14"
|
||||||
|
item_color = "#000000"
|
||||||
|
item_height = 48
|
||||||
|
item_icon_space = 8
|
||||||
|
item_spacing = 2
|
||||||
|
selected_item_font = "DejaVu Sans Bold 14"
|
||||||
|
selected_item_color= "#FFFFFF"
|
||||||
|
selected_item_pixmap_style = "select_*.png"
|
||||||
|
icon_height = 48
|
||||||
|
icon_width = 48
|
||||||
|
icon_spacing = 25
|
||||||
|
scrollbar = true
|
||||||
|
scrollbar_width = 3
|
||||||
|
scrollbar_thumb = "slider_*.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
+ progress_bar {
|
||||||
|
id = "__timeout__"
|
||||||
|
left = 20%
|
||||||
|
top = 80%+15
|
||||||
|
height = 20
|
||||||
|
width = 65%
|
||||||
|
font = "DejaVu Sans Regular 12"
|
||||||
|
text_color = "#333333"
|
||||||
|
text = "默认选项系统将在 %d 秒后启动,按任意键可终止..."
|
||||||
|
bar_style = "progress_*.png"
|
||||||
|
highlight_style = "progress_highlight_*.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
# The Ubuntu 13.04/Raring Ringtail logo image.
|
||||||
|
+ image {
|
||||||
|
top = 100%-140
|
||||||
|
left = 100%-350
|
||||||
|
width = 350
|
||||||
|
hight = 140
|
||||||
|
file = "slitaz4cn.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
# The navigation instructions
|
||||||
|
+ vbox {
|
||||||
|
left = 5%
|
||||||
|
top = 90%
|
||||||
|
+ label { text = "- 按上下键选择高亮菜单,按回车键启动" color = "#ADA9A5" font = "DejaVu Sans Regular 12" }
|
||||||
|
+ label { text = "- 按 'e' 键编辑所选菜单的命令行" color = "#ADA9A5" font = "DejaVu Sans Regular 12" }
|
||||||
|
+ label { text = "- 按 'c' 进入程序命令行" color = "#ADA9A5" font = "DejaVu Sans Regular 12" }
|
||||||
|
}
|
After Width: | Height: | Size: 260 KiB |
|
@ -0,0 +1,36 @@
|
||||||
|
set timeout=10
|
||||||
|
|
||||||
|
insmod gfxmenu
|
||||||
|
insmod jpeg
|
||||||
|
if background_image /winly/slitaz.jpg; then
|
||||||
|
true
|
||||||
|
else
|
||||||
|
set menu_color_normal=white/black
|
||||||
|
set menu_color_highlight=black/light-gray
|
||||||
|
if background_color 44,0,30; then
|
||||||
|
clear
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
insmod gfxmenu
|
||||||
|
insmod png
|
||||||
|
set theme=/winly/themes/winly/theme.txt
|
||||||
|
export theme
|
||||||
|
##########
|
||||||
|
##########
|
||||||
|
menuentry "slitaz5微型linux中文定制版" --class slitaz --class os {
|
||||||
|
linux /bzImage rw root=/dev/null vga=normal lang=zh_CN kmap=us tz=Asia/Shanghai autologin
|
||||||
|
initrd /rootfs.gz
|
||||||
|
}
|
||||||
|
if [ -e $prefix/i386-pc/ntldr.mod ]; then
|
||||||
|
menuentry "BIOS网络启动slitaz5微型linux中文定制版" --class slitaz --class os {
|
||||||
|
linux16 /ipxe.lkrn
|
||||||
|
}
|
||||||
|
else
|
||||||
|
|
||||||
|
fi
|
||||||
|
menuentry "【reboot】重启" --class windows --class os{
|
||||||
|
reboot
|
||||||
|
}
|
||||||
|
menuentry "【halt】关闭计算机" --class windows --class os{
|
||||||
|
halt
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
genisoimage -r -T -J -V "Slitaz_ISO" -b winly.bin -c boot.cat -no-emul-boot -boot-load-size 4 \
|
||||||
|
-boot-info-table -eltorito-alt-boot -e efiboot.img -no-emul-boot -v -o ../slitaz5.0-rolling-core64-cn.iso ./mkiso
|
||||||
|
|
After Width: | Height: | Size: 23 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
F BOOT_000.PNG;1 boot_menu_c.png
|
||||||
|
F BOOT_001.PNG;1 boot_menu_nw.png
|
||||||
|
F BOOT_002.PNG;1 boot_menu_w.png
|
||||||
|
F BOOT_003.PNG;1 boot_menu_ne.png
|
||||||
|
F BOOT_004.PNG;1 boot_menu_sw.png
|
||||||
|
F BOOT_005.PNG;1 boot_menu_n.png
|
||||||
|
F BOOT_006.PNG;1 boot_menu_e.png
|
||||||
|
F BOOT_007.PNG;1 boot_menu_s.png
|
||||||
|
F BOOT_MEN.PNG;1 boot_menu_se.png
|
||||||
|
F DEJAV000.PF2;1 dejavu-sans-bold-14.pf2
|
||||||
|
F DEJAV001.PF2;1 dejavu-sans-12.pf2
|
||||||
|
F DEJAVU_S.PF2;1 dejavu-sans-10.pf2
|
||||||
|
D ICONS icons
|
||||||
|
F PROGR000.PNG;1 progress_c.png
|
||||||
|
F PROGR001.PNG;1 progress_highlight_c.png
|
||||||
|
F PROGR002.PNG;1 progress_highlight_w.png
|
||||||
|
F PROGRESS.PNG;1 progress_highlight_e.png
|
||||||
|
F SELECT_C.PNG;1 select_c.png
|
||||||
|
F SELECT_E.PNG;1 select_e.png
|
||||||
|
F SELECT_W.PNG;1 select_w.png
|
||||||
|
F SLIDER_C.PNG;1 slider_c.png
|
||||||
|
F SLITAZ4C.PNG;1 slitaz4cn.png
|
||||||
|
F TERMI000.PNG;1 terminal_c.png
|
||||||
|
F TERMI001.PNG;1 terminal_w.png
|
||||||
|
F TERMI002.PNG;1 terminal_sw.png
|
||||||
|
F TERMI003.PNG;1 terminal_se.png
|
||||||
|
F TERMI004.PNG;1 terminal_ne.png
|
||||||
|
F TERMI005.PNG;1 terminal_s.png
|
||||||
|
F TERMI006.PNG;1 terminal_n.png
|
||||||
|
F TERMI007.PNG;1 terminal_e.png
|
||||||
|
F TERMINAL.PNG;1 terminal_nw.png
|
||||||
|
F THEME.TXT;1 theme.txt
|
||||||
|
F WALLPAPE.PNG;1 wallpaper.png
|
After Width: | Height: | Size: 165 B |
After Width: | Height: | Size: 183 B |
After Width: | Height: | Size: 177 B |
After Width: | Height: | Size: 655 B |
After Width: | Height: | Size: 272 B |
After Width: | Height: | Size: 181 B |
After Width: | Height: | Size: 514 B |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 148 B |
|
@ -0,0 +1,4 @@
|
||||||
|
[Dolphin]
|
||||||
|
PreviewsShown=true
|
||||||
|
Timestamp=2012,10,28,1,37,37
|
||||||
|
Version=3
|
|
@ -0,0 +1,20 @@
|
||||||
|
F ARCH.PNG;1 arch.png
|
||||||
|
F DEBIAN.PNG;1 debian.png
|
||||||
|
F FEDORA.PNG;1 fedora.png
|
||||||
|
F GENTOO.PNG;1 gentoo.png
|
||||||
|
F GNU_LINU.PNG;1 gnu-linux.png
|
||||||
|
F KUBUNTU.PNG;1 kubuntu.png
|
||||||
|
F LINUXMIN.PNG;1 linuxmint.png
|
||||||
|
F LUBUNTU.PNG;1 lubuntu.png
|
||||||
|
F MANDRIVA.PNG;1 mandrivalinux.png
|
||||||
|
F OPENSUSE.PNG;1 opensuse.png
|
||||||
|
F OSX.PNG;1 osx.png
|
||||||
|
F RECOVERY.PNG;1 recovery.png
|
||||||
|
F SABAYON.PNG;1 sabayon.png
|
||||||
|
F SLACKWAR.PNG;1 slackware.png
|
||||||
|
F SLITAZ.PNG;1 slitaz.png
|
||||||
|
F SUBMENU.PNG;1 submenu.png
|
||||||
|
F UBUNTU.PNG;1 ubuntu.png
|
||||||
|
F WINDOWS.PNG;1 windows.png
|
||||||
|
F XUBUNTU.PNG;1 xubuntu.png
|
||||||
|
F _DIRECTO.;1 .directory
|
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 386 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 139 KiB |