由买买提看人间百态

topics

全部话题 - 话题: kernel
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
b**a
发帖数: 1375
1
来自主题: Linux版 - vmware里升级kernel 3.2报错
vmware workstation 8, rhel 6.2. 欲升级3.2的kernel
过了make menuconfig,make bzImage, make modules, make modules_install
就是最后make install的时候报错, 说
missing vmsync, vmblock, vmhgfs。。。。
这些都是vmwtools的东东,现有的kernel下我都装了阿.
请前辈们指教阿
难道我得先升级再装vmtools? 另外, 不装X的系统有必要装vmtools么? 除了有个hgfs
的好处外?
S*A
发帖数: 7142
2
kernel already has kexec.
also GPL != in the kernel.
There are a lot of junk GPL code out there as well.
w*s
发帖数: 7227
3
run the kernel config to build the kernel,
there's a sth. like "1000 MB network" after "100 MB network" support,
what's the deal about that "1000 MB" support ?
what feature does it have ?
if i develop a 1GB network driver, do i need to enable that ?
l****r
发帖数: 175
4
【 以下文字转载自 JobHunting 讨论区 】
发信人: labber (labber), 信区: JobHunting
标 题: Linux kernel USB/network stack position
发信站: BBS 未名空间站 (Wed Feb 13 18:28:21 2013, 美东)
Qualcomm R&D
Familiar with Linux kernel programming, Linux USB driver,
Familiar with network stack;
x****s
发帖数: 921
5
来自主题: Linux版 - 问个kernel module的编译问题
insmod 是安装。你当前运行的kernel是patch的?

kernel
x****s
发帖数: 921
6
来自主题: Linux版 - 问个kernel module的编译问题
then if the kernel not stripped, you can double check your running kernel
indeed has the new method by grep name on the kernnel image
after this, i don,t have too much ideas, try google
c***d
发帖数: 996
7
☆─────────────────────────────────────☆
bugzilla (report a bug to me) 于 (Mon Sep 24 18:26:14 2007) 提到:
发信人: bugzilla (report a bug to me), 信区: JobHunting
标 题: question about the kernel scheduler
发信站: BBS 未名空间站 (Mon Sep 24 18:23:27 2007), 站内
发信人: bugzilla (report a bug to me), 信区: Linux
标 题: question about the kernel scheduler
发信站: BBS 未名空间站 (Mon Sep 24 18:21:58 2007)
This is a interview question from a company.
There are 2 functions , L() has a lower priority, H() has a higher priority,
r
c*********t
发帖数: 2921
8
标 题: 问问跟Linux Kernel 有关的问题
发信站: BBS 未名空间站 (Tue Apr 15 22:49:16 2008)
本人对Linux kernel是菜鸟,有问题请大家指正。
Q1. 关于system call fork()
当parent process用fork()去创建一个child process时,child process得到一个独立
于parent process的地址空间,child process 得到了和parent process完全一样的内
存内容(所有的变量都继承了过来)。从此,child process 和parent process可以独立
的操作自己的变量,互不影响,这对一般的变量来说,很容易理解,毕竟他们在不同的
地址。我的疑问是,如果在fork()前, parent process 有一个file descriptor(对应
于一个打开的文件),在child process被创建后,如果child process close那个file
descriptor,在parent process看来,它的那个file descripto
H*****e
发帖数: 160
9
谁来说说ZERO COPY和KERNEL Bypass networking.看了些资料,还是不很清楚.比如说
,你自己管理网络STACK,Bypass Kernel,别人要用你的服务,用TCP连接,是
不是一定要用你的LIB呢?否则,你就得实现TCP,对不对?
d***a
发帖数: 13752
10
我很久以前做过这个。正常的tcp/ip实现,发送数据时数据要先从user
space拷贝到kernel space,再由网卡发送出去。接受时反过来,也有一次
拷贝。zero-copy是为了消除这个拷贝。看网卡的支持,有的还会有额外的
一次拷贝。
实现上可以用user-level tcp/ip,当时的说法,大概就是你说的kernel
bypass networking。
l******o
发帖数: 144
11
还是不太明确啊,我才疏学浅,不太懂ping是在哪里处理的?在网卡就直接处理了,还
是在kernel处理的,还是在user space?如果ping在网卡处理,那就是说1us必须包含
packet在网卡和kernel的时间, 那对于wei非常不利;反之,如果ping在user space处
理,那么1us就只是在user space的时间,对wei有利。我觉得延迟这个需求不是特别明
确,有必要加以定义清楚。
当然1M的QPS这个需求还算明确。其实只要multi core同时处理N个request,那么延迟
只要达到N us就可以了,比1us这个就宽松多了。

比如ping一个,有个网络延迟,1us处理的意思就是结果还是跟ping一样。如果有显著
延迟那显然不行。
当然我们说的是宏观上,不是每个包都确保1us.
j******a
发帖数: 100
12
这里的人应该不关心硬件发展的,这些年virtualization的需求出来以后,能想到的HW
优化基本都有了,上边说E7-88xx 找18core的,我不用HT,一台4 way就有72 core,现
在kernel的network stack优化使得一个interrupt进去效率很高,网卡上一堆一堆的
queue,封包加密安全隔离你能想到的都在网卡做掉了,连最基本的DMA都有crystal
beach做了,实测100G跑满,kernel time很低。你这个backlog 哪里跑得满。
做硬件真tmd的jian,这么台机器可能2w能配下来。考虑转行刷题中..
s********f
发帖数: 3924
13
刚开始学CNN,跑了一个keras的例子。里边convolution layer定义时,只需要定义数
量和大小,但是具体用什么样的kernel并没说。请问这些kernel都是固定的吗?谢谢
x**********i
发帖数: 658
14
肯定不是固定的,这些参数都要后面自己调,很麻烦的。很多时候train data
accuracy很高,一用到test data就不行,都是参数的锅。

:刚开始学CNN,跑了一个keras的例子。里边convolution layer定义时,只需要定义数
:量和大小,但是具体用什么样的kernel并没说。请问这些kernel都是固定的吗?谢谢
z*******w
发帖数: 79
15
来自主题: Security版 - Linux内核(kernel)的hacking介绍 -- LKM
Linux Loadable Kernel Module (LKM) Introduction

by: minnow

这篇文章主要是一些下面这篇文章的翻译:
http://packetstorm.securify.com/groups/thc/LKM_HACKING.html
目的: 简单的对Linux内核(kernel)的hacking介绍, 与大家分享我的
一些
经验, 和多一篇中文 Linux 相关文章.
Loadable内核模块能做些什么事情: 最简单的说, 是任何你想干的事
. 比如隐藏
文件, 隐藏进程, 隐藏网络连接, 隐藏开着的TCP/UDP端口, 隐藏自
身这个
内核模块, 修改系统TCP/IP堆栈从而留下后门(backdoor). 可以说,
一旦在
Linux系统中加入一个强大的内核模块后, 无人能单从机器本身发现
你(除非
启动另一个操作系统, 彻底检查文件系统; 或运行tcpdump之类的
s
t********k
发帖数: 808
16
来自主题: Unix版 - 升级kernel失败
原装了Redhat 5.1,内核好象是linux-2.2.12 or 10
现从http://www.us.kernel.org/pub/linux/kernel/v2.3/
下载了linux-2.3.14.tar.gz进行升级.
到 make zImage时出错,出错信息如下:
make -C net
make[2]: Entering directory `/usr/src/linux/drivers/net'
make all_targets
make[3]: Entering directory `/usr/src/linux/drivers/net'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2
-fomit-frame-pointer -pipe -fno-strength-reduce -DCPU=586
-c -o ppp_generic.o ppp_generic.c
gcc -D__KERNEL__ -I/usr/src/lin
s*******n
发帖数: 11
17
来自主题: Unix版 - Looking for Linux kernel developer
Dear friend
These is a JOB OPENING in Shanghai.
If you are interested in these jobs, please send your resume with job title to
j**[email protected].
如果你的朋友中有适合以下职位的,请推荐给他们,谢谢!
Job Description:
Successful candidate will lead multiple Linux kernel projects requiring

OS kernel development experience. Wide range of projects including,

system performance and performance enhancements under RDBMS loads, fine

grain locking enhancements, algorithm changes for performance and

scalability, I/O stack
s********k
发帖数: 6180
18
【 以下文字转载自 CS 讨论区 】
发信人: silverhawk (silverhawk), 信区: CS
标 题: 求助Kernel PCA的matlab code
发信站: BBS 未名空间站 (Wed Apr 14 16:50:14 2010, 美东)
Google了好几个都不是很好用,觉得这种广泛应用的方法应该有很多可用code吧,版上
有没有大侠能贡献一下知道的code或者链接,只需要基本的RBF或者poly的kernel就可
以了,谢谢
l****r
发帖数: 175
19
【 以下文字转载自 JobHunting 讨论区 】
发信人: labber (labber), 信区: JobHunting
标 题: Linux kernel USB/network stack position
发信站: BBS 未名空间站 (Wed Feb 13 18:28:21 2013, 美东)
Qualcomm R&D
Familiar with Linux kernel programming, Linux USB driver,
Familiar with network stack;
s***1
发帖数: 49
20
来自主题: Mathematics版 - A Question About Kernel
K(x,y) = transpose(phi(x))*phi(y)
If I have a kernel: K(x,y) = (transpose(x)*y + 1)^3, and x and y are both 2-
d vectors.
What is the explicit mapping phi that mimics the kernel value above?
d******e
发帖数: 7844
21
统计里有各种各样Kernel的应用。
比如Kernal Density Estimation, Kernel Regression等等,都是利用这个RKHS
b***k
发帖数: 2673
22
☆─────────────────────────────────────☆
aaliwei91 (aaliwei91) 于 (Wed May 20 10:28:53 2009) 提到:
听说stat arb和algo trading用machine learning,kernel methods算很正宗的ml吧,
请问谁能介绍一下它有什么应用吗?
☆─────────────────────────────────────☆
xmly (xmly) 于 (Wed May 20 13:58:22 2009) 提到:
你都已经说了。。。
algo,arb 不就是应用么。。。

☆─────────────────────────────────────☆
pipinu (pipinu) 于 (Wed May 20 16:27:19 2009) 提到:
No, not much ML Is used in stat arb /algorithm trading..Non-linear kernel
methods are even more useless.
L*******t
发帖数: 2385
23
来自主题: Quant版 - Heat Kernel Expansion
大牛,多谢你推荐的书,我看了一下内容很有趣,有一章专门说heat kernel
asymptotics, 唯一美中不足的是,所有的asymptptic method,都不是真正意义上收敛
的,这是和我的方法最大的不同。。

:你读过
https://www.amazon.com/Heat-Kernel-Method-its-Applications/dp/3319262653
s********k
发帖数: 6180
24
来自主题: Statistics版 - 求助Kernel PCA的matlab code (转载)
【 以下文字转载自 CS 讨论区 】
发信人: silverhawk (silverhawk), 信区: CS
标 题: 求助Kernel PCA的matlab code
发信站: BBS 未名空间站 (Wed Apr 14 16:50:14 2010, 美东)
Google了好几个都不是很好用,觉得这种广泛应用的方法应该有很多可用code吧,版上
有没有大侠能贡献一下知道的code或者链接,只需要基本的RBF或者poly的kernel就可
以了,谢谢
o******e
发帖数: 1001
25
来自主题: Statistics版 - Kernel Density Estimation
最近工作要用kernel density estimation.查了一下网上,发现好多都是讲如何
estmiate the density for points. 但是我目前的问题是,我在一个平面上有好多直
线,需要estimate这些线的density,网上好像有一个说法叫Kernel Density
Estimation for linear feature, 但是很难发现它的一些理论推导,有谁对这个有印
象吗?谢谢!
b********r
发帖数: 37
26
来自主题: DataSciences版 - 怎么表达kernel density estimation
以前在学校做的是kernel density estimation, 现在找工作的时候,好像很多面试官
不懂。我以前总是用kernel density estimation for point feature 为例子来说,但
是即使这样,也有人听不懂,该怎么描述?
谢谢!
H****s
发帖数: 1130
27
来自主题: _AromaTherapy版 - Apricot Kernel Oil

Shelf life- 12-14 months
Notes- Stores well under any condition but extreme heat will lessen the shelf
life.
Apricot Kernel Oil (Prunus Armeniaca) is a smooth and lightweight oil, high in
Vitamin A and minerals. An excellent texture that is great for all skin types,
but preferred by many practitioners for prematurely aged skin and skin that is
dry and irritated. Apricot Kernel Oil may be used as a cosmetic oil or as a
cosmetic ingredient for softening and moisturizing.
u'r always welcome~
l*****y
发帖数: 337
28
来自主题: HiFi版 - 名词解释:Kernel Streaming
Kernel Streaming is essentially the same thing as ASIO, giving you th
e same end result. Instead of being originally designed for profession
al use, it was designed by Microsoft as a bit-perfect playback format.
It has the same negatives and same positives as ASIO.
S**Y
发帖数: 136
29
I am reading threads, and don't understand the thread-mapping model
why do we need to map user level threads to kernel threads anyway?
who can say say? thanks!
D***h
发帖数: 183
30
看别人通宵达旦,日日夜夜地调kernel,觉得不容易忽悠。

为啥彻底不可能?边准备边实践不行吗?
a*d
发帖数: 47
31
看不明白倒不至于吧。
不过要真能调bug,写好code的水平,是要积累的。细节太多了.
"linux kernel development" 我看了大半了,收获很大的。
还有没有其他的书推荐一下,还是直接看source code?
K******g
发帖数: 1870
32
这本书倒是没有看过,我以前都是看“understanding linux kernel",那本书真烂。
是意大利人写的,虽然内容很全但是英语很烂,而且把所有的细节揉和到一起,看得我
很崩溃。
b********e
发帖数: 693
33
来自主题: JobHunting版 - recommand one linux kernel book
want to learn linux kernel, please recommand one good book, thanks
b*m
发帖数: 34
34
请问大家做storage 的kernel development 都有哪些算法要注意,
其他还有那些方面的知识要复习?
debug 的话要注意什么和复习什么呢?
非常感谢
n******t
发帖数: 4406
35
搞linux kernel 的人去看C++ primier 干什么??
l****r
发帖数: 175
36
来自主题: JobHunting版 - Linux kernel USB/network stack position
Qualcomm R&D
Familiar with Linux kernel programming, Linux USB driver,
Familiar with network stack;
c********t
发帖数: 5706
37
来自主题: JobHunting版 - 求解修改月球上100个服务器Kernel
同不懂。
但肯定是要地球到月球通信越少越好。我初步想,如果设计一个机制能够 auto sync
up between servers on the moon first. 那么只需要从地球upload a copy of
kernel to one of machines on the moon.
cj
发帖数: 54
38
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: cj (cj), 信区: SanFrancisco
标 题: Violin Memory is hiring for SCSI/FC/Kernel and System/Platform/Networking management position!
发信站: BBS 未名空间站 (Wed Jul 31 02:09:30 2013, 美东)
We are hiring Sr. engineer for the above position and if interested, please
drop a line to j****[email protected]. Thanks!
Jin
q********c
发帖数: 1774
39
读一读linux kernel源码,呵呵。
m*****s
发帖数: 2449
40
来自主题: JobHunting版 - VMware kernel team is looking for Senior MTS
09年我在国内他们就要我干这个,我想做纯研发没去,纯研发的面试我数论没要我。应
该是个很不错的职位,和国内交流也多。
面试的问题不难,人很nice,建议大家努力投投简历,尤其有kernel还有storage经验
的人,很match。
托之

with
ship
x*******i
发帖数: 79
41
要求两年以上工作经验,要求OS, Kernel knowledge, C, Python
如果感兴趣,可以发简历到 l******[email protected], 谢谢
***
Posting Title MTS - Virtual Machine Monitor Test Engineer
Job Description This position is for System Software Engineer in Testing,
working on testing the stability & functionality of the Virtual Machine
Monitor and its interaction with other product (ESX and Workstation)
components and features. The candidate will be working closely with the
world-class Virtual Machine Monitor R&D Group working on CPU vir... 阅读全帖
i**********1
发帖数: 23
42
1. Kernel networking 急招阿!with VERY competitive salary!!!
Key words:
2. Python/Java/Django/Ruby/Scala/AngularJS developer
3. Sr. IT system engineer
Key words:
Linux Shell scripting,
LSF and License Scheduler
站短!
o****n
发帖数: 937
43
现在这些没底蕴的公司。需要什么kernel。。。
i**d
发帖数: 357
44
不需要。
都直接在aws上开搞,还需要你研究什么kernel. 除非你家是有像google, facebook,
amazon那样的datacenter.
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)