I need a specific kernel version to compile it with some additional modules.
When I typing:
uname -r
Run Code Online (Sandbox Code Playgroud)
I get
3.8.0-29-generic
Run Code Online (Sandbox Code Playgroud)
I need this one.
uname -a
Linux "..." 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
Run Code Online (Sandbox Code Playgroud)
Where can I find this version? Here https://www.kernel.org/ seems that there isn't..
对于一些测试,我从 USB 启动 Ubuntu Live。
我正在尝试使用tail命令来显示调试日志,但它不起作用。
我还使用以下代码测试打开两个终端 ( t1
, t2
):
t1
:
touch a
Run Code Online (Sandbox Code Playgroud)
t2
:
tail -f a
Run Code Online (Sandbox Code Playgroud)
t1
:
for i in `seq 1 10`; do echo $i >> a; sleep 1; done
Run Code Online (Sandbox Code Playgroud)
什么都没有t2
!可能是什么原因?