echo "Something"
: <<MyComments
akldsj
aklsdfj kald'fa
kaldjsf adsf
MyComments
Because 'apt autoremove' will remove the pkgs installed from 'apt install', some old pkgs, eg. some old kernels are for vmware modules updated. can be not removed.
Vmware modules cannot be compiled in the new kernel 6.8.0-40.
cf: https://help.ubuntu.com/community/RemoveOldKernels#GUI_Way
The packages to remove are determined based in part on whether the package is marked as manually or automatically installed. You can check if a kernel providing package is marked as automatically installed using this command in a terminal:
apt-mark showauto 'linux-image-.*'
or to see if it is marked as manually installed:
apt-mark showmanual 'linux-image-.*'
In the event some kernel providing packages are marked as manual (possibly because they were installed via 'apt-get') and you want them autoremoved, you can change the status of the package using apt-mark auto and the package name. For example, to mark kernel 4.12.0-12-generic as autoremovable:
sudo apt-mark auto '^linux-.*-4\.12\.0-12(-generic)?$'
On the contrary, I want some kernels not to be autoremoved. So do this,
Check /etc/fstab. Some line might cause this problem. For example, if some partition is deleted, but it is still in fstab, then ubuntu is keeping checking such non-exist partition.
I set my primary group as root in /etc/passwd, and I always do this when install a new system. I also add myself to other groups,eg. sudo, lp, dialout ... However, the id only shows I am in root group and no other groups shown.
So I change my primary group from root to chiao voila the problem is solved! The id and id chiao show the same groups. Futhermore, I can use thonny directly.
The custom module, say my.py, must be saved in pico w rather than computer. Otherwisr, micropython will complain not find import module.
I think this is due to the runtime module must be imported from pico w device.
An output pin that is set high can push out (source) current, or when set low it can pull in (sink) current. An input does neither, it ideally needs no current to flow to sense if the input is high or low.
cf: https://www.makeuseof.com/windows-11-set-up-without-internet-connection/
OOBE\BYPASSNRO adh 伴隨矩陣
ahp 層級分析法
alt 方案
au 真理大學
aug 增廣矩陣
chia 喬國平
cofa 餘因子
cri 準則
deci 決策分析
det 行列式
eig 特徵值
eiv 特徵向量
elem 元素
elm 基本矩陣
elro 基本列運算
ext 擴充原理
fahp 模糊層級分析法
flow 流程圖
fuzz 模糊集合
gau 高斯消去法
gau 高斯喬丹消去法
goo 如圖
goo 如此
ifs 區間二型直覺模糊集合
imei 工業管理與經營資訊學系
lcom 線性組合
ldep 線性相關
lina 線性代數
lind 線性獨立
lp 線性規劃
lsys 線性系統
mem 隸屬度函數
mous 滑鼠
pcm 成對比較矩陣
pivo 軸元素
pj 平面
rect 矩形
ref 列梯形矩陣
rref 列簡梯形矩陣
rz 微積分
uqll 電腦繪圖
user 使用者
vdm 矩陣
zya 等角
zya 等角圖
Put into:
c:\Users\chiao\AppData\Roaming\LyX2.3\layouts\
cf: https://support.wolfram.com/12473
Remove the subdirectories:
ffmpeg -i a.mp4 -ss 00:10:57 -to 00:23:00 -c:v copy -c:a copy output2.mp4
Use kdnlive:
sudo shred -vfz /dev/sdX
#!/bin/bash
TeXfile=$1
LyXfile="${1%.*}.lyx"
sed -i -e '0,/\\maketitle$/d' -e '/^\\end{document}/d' -e '/hypertarget/d' -e 's/\\label.*$//' -e 's/\\section/\\chapter/g' -e 's/\\subsection/\\section/g' -e 's/\\subsubsection/\\subsection/g' -e 's/\\textgreater/>/' $TeXfile
sed -i '1 i\\\\def\\mylabel#1{\\label{#1}}' $TeXfile
#sed -i 's/\/\\/g' $TeXfile
In jupyter lab, use \mylabel instead of \label e.g
<img src="if.png" alt="if example flowchart" style="width: 400px;"/>
\begin{figure}
\centering
\includegraphics{if.png}
\caption{if 流程圖}
\mylabel{fig:if 流程圖}
\end{figure}
After export to LaTeX, run
/home/chiao/scripts/mkLectNote_clean_tex.sh chapterXX.tex
pip install jupyterlab-language-pack-zh-TW
#!/bin/bash
if [ "$#" -lt 2 ]; then
echo "Usage: $0 <delay sec.> <subdirerory>"
exit
fi
feh -r -d -Z -D ${1} #{2}
Save the following codes to add_traditional_Chinese.py:
systemctl --user stop onedrive
systemctl --user disable onedrive
delete the symbolic linksudo rm /etc/systemd/user/default.target.wants/onedrive.service which is linked from /usr/lib/systemd/user/onedrive.service