2021/11/28

DualBoot with freedos

最近又用到 freedos, 想把 mx-linux + freedos 放在一顆 8GB 的隨身碟,
懶得說太多,有問題的朋友請回覆
先說 grub.cfg 怎麼下:
menuentry "FreeDOS testing" {
    insmod part_msdos
    freedos (hd0,msdos1)/KERNEL.sys
}
沒錯,上面跟在 google 找到的都不太一樣,自行揣摩一下囉,這個是真的能動的

我用的是 freedos 1.3 rc4(版本不重要) 的 LiveCD 解壓縮 zip 檔之後是 iso 檔, 將之整個 cp 到 (hd0,msdos1)/ 也就是 DOS/ 清單如下:
-r-xr-xr-x  1 root root  4016 11月 28 11:18 fdauto.bat*
drwxr-xr-x 12 root root  4096 11月 28 11:13 freedos/
drwxr-xr-x  4 root root  4096  4月 30  2021 FDOS-x86/
drwxr-xr-x  2 root root  4096  4月 30  2021 isolinux/
drwxr-xr-x 15 root root  4096  4月 30  2021 packages/
drwxr-xr-x  3 root root  4096  4月 30  2021 devel/
drwxr-xr-x  3 root root  4096  4月 30  2021 games/
drwxr-xr-x  3 root root  4096  4月 30  2021 util/
-r-xr-xr-x  1 root root   182  4月 30  2021 fdconfig.sys*
-r-xr-xr-x  1 root root 85048  4月 30  2021 COMMAND.COM*
-r-xr-xr-x  1 root root 46685  4月 30  2021 KERNEL.SYS*
-r-xr-xr-x  1 root root  6744  4月 30  2021 setup.bat*
有沒有注意到上面要修改 fdauto.bat?
貼上整個內容
.....到 :FinishCDMode 之前都不變..... :FinishCDMode mkdir \TEMP set TEMP=\TEMP set TMP=%TEMP% SET DOSDIR=\FREEDOS SET BIN=%DOSDIR%\BIN set DOSDRV=C:\ set BIN=C:\FREEDOS\BIN set PATH=\;%BIN%;\UTIL\P7ZIP\ SET NLSPATH=%DOSDIR%\NLS C: CD \ .....到下面兩行前面有變而已..... CALL %DOSDIR%\BIN\FDLIVE.BAT RAMSKIP if "%FDRAMDRV%" == "" goto WarnReadOnly .....以下同....

2021/03/16

[git] add remote origin with ssh

 我先講一下我的實驗:

我有個 repository 它的源是國外的,這個我們不管,位置在
~/q8vista/q8server

然後我在別台機器的 /tmp/xx 下做實驗:
cd /tmp/xx/ &&
git clone wade@192.168.20.110:/home/wade/q8vista/q8server
因為不想破壞源庫,所以...
cd /tmp/xx/ && mkdir q8vista && cd q8vista
此時 /tmp/xx/q8server 它的源是192.168.20.110:/home/wade/q8vista/q8server , 
然後再做一次
git clone ssh://wade@192.168.20.110:/tmp/xx/q8server
上面的命令方式跟底下一樣的意思:
git clone wade@192.168.20.110:/tmp/xx/q8server
接下來 cd /tmp/xx/q8vista/q8server, 它的源是 192.168.20.110:/tmp/xx/q8server
cd /tmp/xx/q8vista/q8server 並做點變動之後
git commit -a -m 'test for ssh push' && git push
此時會發生錯誤:

remote: error: refusing to update checked out branch: refs/heads/master                                                              
remote: error: By default, updating the current branch in a non-bare repository                                                      
remote: is denied, because it will make the index and work tree inconsistent
remote: with what you pushed, and will require 'git reset --hard' to match
remote: the work tree to HEAD.
remote:
remote: You can set the 'receive.denyCurrentBranch' configuration variable
remote: to 'ignore' or 'warn' in the remote repository to allow pushing into
remote: its current branch; however, this is not recommended unless you
remote: arranged to update its work tree to match what you pushed in some
remote: other way.
remote:
remote: To squelch this message and still keep the default behaviour, set
remote: 'receive.denyCurrentBranch' configuration variable to 'refuse'.

git 的好處是,它的訊息通常會告訴你接下來該怎麼做
我就下底下的命令:
git config --global receive.denyCurrentBranch ignore
或在 ~/.gitconfig 可以找到底下這2行:
[receive]
        denyCurrentBranch = ignore

再進行一次 git push 就通過了
要注意的是,遠端的 git tree 被更新了沒錯,
但是如果在遠端執行 git status 會發現遠端該目錄下的 local files 與 git repository 並不一致,一般的做法是 git reset --hard HEAD

2021/03/15

Mysql JOIN

 工作上需要,我有兩個表格,其中一個叫 logger, 一個叫 terminals

logger 很單純,會記錄各種 log, 其中一個欄位會記錄來自哪個 terminal mac, 如果它是 terminal 造成的錯誤。

問題在於,terminals 表格是直式的,就是它的欄位像 attribute, value 這樣的型式,譬如

id    attribute          value

1     mac                123456789012

1     name               t1

2     mac                234567890123

2     name               t2

如果想在列出 logger 時,對這類 log 印出這條 log 來自哪個 terminal 該怎麼辦?

對mariadb 而言,因為要的是 logger, 所以要用 LEFT JOIN

LEFT JOIN 的意思是,我要表格左邊的結果,但是在某些條件下合併表格資料

所以就像 SELECT l.id,l.date,l.info,IF(l.mac<>'',t2.name,'') as termname FROM logger AS l
 LEFT JOIN Terminals AS t1 on
   t1.attribute='mac' AND l.mac<>'' AND l.mac=t1.value
     LEFT JOIN Terminals AS t2 on
       t1.id=t2.id AND t2.attribute='name'

翻譯成中文大概就像:
我要全部的 logger 資料,其中
   如果 mac 欄位有值,那就從 Terminals 表格查,其 attribute='mac' 其值為 mac
   但是傳回 Terminals 中相同 id 的 terminal 名稱


有點複雜,我也是想很久才清楚,可以這麼說,LEFT JOIN 是以左邊的(LEFT) 語法為結果,加上條件來自(JOIN) 後面的限制

2021/02/23

[dd] 利用 dd split & merge

 對超大檔案的分割與合併,我一般是使用 split 與 cat

結果經過實驗發現,使用 dd 的效率會非常高,

請參考 https://www.linuxquestions.org/linux/answers/applications_gui_multimedia/splitting_and_merging_files_using_dd


底下以 shell 搭配來操作的話,類似 :

D=0; for i in `seq 1 1 52`; do dd if=W-2016_TM-11.2-disk1.vmdk.`printf "%03d" $i` of=W-2016_TM-11.2-disk1.vmdk bs=1M count=200 seek=$D; D=$(( D+200 )); done

0)最前面的 D=0 每次重設變數,要養成好習慣 

1) seq 用來自動產生序列數字

2)printf 用來將檔名的數字固定成補0的3個數位

3)dd 用 seek 來將下一個檔案附加到前一個的後面

4)最後利用 現代 shell 的 $(( ... )) 來做運算