Linux編程的經(jīng)典書,OReilly系列。The new edition of Understanding the Linux Kernel takes you on a guided tour through the most significant data structures, many algorithms, and programming tricks used in the kernel.
上傳時間: 2016-02-05
上傳用戶:lanjisu111
A Linux port of the OpenBSD/FreeBSD Cryptographic Framework (OCF). This port aims to bring full asynchronous HW/SW crypto acceleration to the Linux kernel, OpenSwan, OpenSSL and applications using DES, 3DES, AES, MD5, SHA, PublicKey, RNGs and more.
標(biāo)簽: port Cryptographic Framework FreeBSD
上傳時間: 2016-03-29
上傳用戶:小寶愛考拉
Fast and transparent file system and swap encryption package for linux. No source code changes to linux kernel. Works with 2.6, 2.4, 2.2 and 2.0 kernels.
標(biāo)簽: transparent encryption and changes
上傳時間: 2013-12-27
上傳用戶:dongbaobao
The OpenGPSRec receiver software runs on the real time operating system RTAI-Linux. It compiles with gcc using a RTAI-patched linux kernel. linux下的GPS 開放源碼~!
標(biāo)簽: OpenGPSRec RTAI-Linux operating receiver
上傳時間: 2016-04-10
上傳用戶:xc216
關(guān)于Linux 內(nèi)核的解讀 出自一個學(xué)生之手,所以不是很正式的文章。但是會給讀者在通往Linux kernel解讀的過程中有個提綱策領(lǐng)的作用。
上傳時間: 2016-09-27
上傳用戶:nairui21
DYMOUM is an implementation of the DYMO (Dynamic Manet On-demand) routing protocol both for Linux kernel and ns2 network simulator, written in C and C++.
標(biāo)簽: implementation On-demand protocol Dynamic
上傳時間: 2016-11-07
上傳用戶:tianyi223
In this book, you will learn about what drives the Linux development process. You will discover the wide variety of tools commonly used by Linux developers – compilers, debuggers, Software Configuration Management – and how those tools are used to build application software, tools, utilities and even the Linux kernel itself. You will learn about the unique components of a Linux system that really set it apart from other UNIX-like systems, and you will delve into the inner workings of the system in order to better understand your role as one of a budding new generation of Linux developers.
標(biāo)簽: will development the discover
上傳時間: 2016-11-18
上傳用戶:rocketrevenge
The Linux GPIB Package is a support package for GPIB (IEEE 488) hardware. The package contains kernel driver modules, and a C user-space library with Guile, Perl, PHP, Python and TCL bindings. The API of the C library is intended to be compatible with National Instrument s GPIB library. The Linux GPIB Package is licensed under the GNU General Public License . Requirements: Linux kernel version 2.4.x (use Linux-GPIB version 3.1.x). Earlier kernel versions are not supported.
標(biāo)簽: package GPIB The contains
上傳時間: 2016-12-17
上傳用戶:cccole0605
linux的內(nèi)核源碼,linux kernel
上傳時間: 2014-01-09
上傳用戶:zhuyibin
第一節(jié)、samba是干什么的?它有什么用? Samba(SMB是其縮寫) 是一個網(wǎng)絡(luò)服務(wù)器,它是Linux作為本地服務(wù)器最重要的一個服務(wù),用于Linux和Windows共享文件之用;Samba可以用于Windows和 Linux之間的共享文件,也一樣用于Linux和Linux之間的共享文件;不過對于Linux和Linux之間共享文件有更好的網(wǎng)絡(luò)文件系統(tǒng) NFS,NFS也是需要架設(shè)服務(wù)器的; 2、安裝及服務(wù)操作命令 安裝samba程序非常簡單,使用rpm -q samba查看當(dāng)前系統(tǒng)是否已經(jīng)安裝了samba軟件。 如果沒有那就進(jìn)入光盤,rpm -ivh *samba*.rpm即可。 仔細(xì)說下安裝的包: samba-common-3.0.28-0.el5.8 //samba服務(wù)器和客戶端中的最基本文件 samba-3.0.28-0.el5.8 //samba服務(wù)器核心軟件包 system-config-samba-1.2.39-1.el5 //samba圖形配置界面 samba-client-3.0.28-0.el5.8 //samba客戶端軟件 啟動、暫停和停止服務(wù): /etc/init.d/smb start /etc/init.d/smb stop /etc/init.d/smb restart 或 service smb start service smb stop service smb restart 第二節(jié)、由最簡單的一個例子說起,匿名用戶可讀可寫的實(shí)現(xiàn) 第一步: 更改smb.conf 我們來實(shí)現(xiàn)一個最簡單的功能,讓所有用戶可以讀寫一個Samba 服務(wù)器共享的一個文件夾;我們要改動一下smb.conf ;首先您要備份一下smb.conf文件; [root@localhost ~]# cd /etc/samba [root@localhost samba]# cp smb.conf smb.conf.bak [root@localhost samba]# vi smb.conf 或geidt smb.conf & 然后我們把下面這段寫入smb.conf中: [global] workgroup = WORKGROUP netbios name = Liukai server string = Liukai's Samba Server security = share [test] path = /opt/test writeable = yes browseable = yes guest ok = yes 注解: [global]這段是全局配置,是必段寫的。其中有如下的幾行; workgroup 就是Windows中顯示的工作組;在這里我設(shè)置的是WORKGROUP (用大寫); netbios name 就是在Windows中顯示出來的計算機(jī)名; server string 就是Samba服務(wù)器說明,可以自己來定義;這個不是什么重要的; security 這是驗(yàn)證和登錄方式,這里我們用了share ;驗(yàn)證方式有好多種,這是其中一種;另外一種常用的是user的驗(yàn)證方式;如果用share呢,就是不用設(shè)置用戶和密碼了; [test] 這個在Windows中顯示出來是共享的目錄; path = 可以設(shè)置要共享的目錄放在哪里; writeable 是否可寫,這里我設(shè)置為可寫; browseable 是否可以瀏覽,可以;可以瀏覽意味著,我們在工作組下能看到共享文件夾。如果您不想顯示出來,那就設(shè)置為 browseable=no,guest ok 匿名用戶以guest身份是登錄; 第二步:建立相應(yīng)目錄并授權(quán) [root@localhost ~]# mkdir -p /opt/test [root@localhost ~]# id nobody uid=99(nobody) gid=99(nobody) groups=99(nobody) [root@localhost ~]# chown -R nobody:nobody /opt/test 注釋:關(guān)于授權(quán)nobody,我們先用id命令查看了nobody用戶的信息,發(fā)現(xiàn)他的用戶組也是nobody,我們要以這個為準(zhǔn)。有些系統(tǒng)nobody用戶組并非是nobody ; 第三步:啟動服務(wù)器 第四步:訪問Samba 服務(wù)器的共享; 1、在Linux 中您可以用下面的命令來訪問; [root@localhost ~]# smbclient -L //liukai或 smbclient //192.168.0.94/test Password: 注:直接按回車 2、在Windows中,您可以用下面的辦法來訪問; \\liukai 或 \\192.168.0.94 3、說明:如果用了netbiosname,就可以用“\\主機(jī)名”來訪問,如果沒用netbiosname,就不能用主機(jī)名訪問。 第三節(jié)、簡單的密碼驗(yàn)證服務(wù)器 修改smb.conf文件: security = user guest account = liukai encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd 然后,建立一個新用戶 useradd liukai passwd liukai 成功后,cat /etc/passwd | mksmbpasswd.sh > /etc/samba/smbpasswd smbpasswd -a liukai 這就成功地添加了一個smb用戶。 重啟服務(wù),使用這個用戶進(jìn)行登錄即可。
上傳時間: 2015-05-13
上傳用戶:yangkang1192
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1