... of Red Hat Enterprise Linux 5. ã Red Hat Enterprise Linux Deployment Guide Provides information regarding the deployment, configuration and administration of Red Hat Enterprise Linux 5. For ... real servers remotely, so the sshd daemon should also be installed and running. Web Server Port 21 Linux Virtual Server Administration: Linux Virtual Server...
Ngày tải lên: 10/12/2013, 06:15
... Linux hay GNU /Linux và cấu trúc nhân Linux I.Tóm tắt lịch sử Linux Linux hay GNU /Linux? Khi thì người ta gọi “hệ điều hành Linux , lúc lại gọi là “hệ điều hành GNU /Linux . Lí do là vì Linux ... nhân Linux Hình 3 dưới đây mô tả các hệ thống con chính của nhân Linux. Hình 3: Các hệ thống con chính của nhân Linux III. 1Nhân là gì? Như hình 3, nh...
Ngày tải lên: 13/12/2013, 00:15
Tài liệu linux-basic doc
... Qun tr H thng Linux - C bn 1 TÀI LIU ÀO TO QUN TR H THNG LINUX Tài liu này đc biên son theo tài liu ging dy ca Vin Linux (LPI) HÀ NI ... /etc/fstab cng đc dùng đ tr giúp cho các kt gán tài nguyên thi gian thc. Ví d: Chng trình mount s đc /etc/fstab và quyt đnh tài nguyên (hoc đim kt ni) nào s đc...
Ngày tải lên: 13/12/2013, 22:15
Tài liệu Linux IO Port Programming pptx
... reserved. Pinout (a 25pin female D−shell connector on the port) (i=input, o=output): 1io −STROBE, 2io D0, 3io D1, 4io D2, 5io D3, 6io D4, 7io D5, 8io D6, 9io D7, 10i ACK, 11i −BUSY, 12i PE, 13i SLCT, 14o ... <unistd.h> #include <asm /io. h> #define BASEPORT 0x378 /* lp1 */ int main() { /* Get access to the ports */ if (ioperm(BASEPORT, 3, 1)) {perror("ioperm&quo...
Ngày tải lên: 22/12/2013, 10:15
Tài liệu Linux Shell Basic pptx
... lệnh sau: $ echo $SHELL Làm thế nào để sử dụng Shell: đơn giản gõ các lệnh. Shell script là gì: Bình thường thì shell là trình giao tiếp. Có nghĩa là shell chấp nhận các lệnh từ bạn (keyboard) và ... file và bảo shell thực thi text file này thay vì nhập vào các lệnh. Điều này gọi là shell script. Định nghĩa: Shell script là một chuỗi các lệnh được viết trong plain text file. S...
Ngày tải lên: 22/12/2013, 13:17
Tài liệu Linux Device Drivers-Chapter 1 :An Introduction to Device Drivers ppt
... strange to say Chapter 1 :An Introduction to Device Drivers As the popularity of the Linux system continues to grow, the interest in writing Linux device drivers steadily increases. Most of Linux ... independent of the devices attached to the SCSI cable. Other classes of device drivers have been added to the kernel in recent times, including USB dri...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 2 : Building and Running Modules pptx
... 0 022 c558-0 024 455f : Kernel data 20 000000-2fffffff : Intel Corporation 440BX/ZX - 824 43BX/ZX Host bridge 68000000-68000fff : Texas Instruments PCI 122 5 68001000-68001fff : Texas Instruments PCI 122 5 ... 0009fc00-0009ffff : reserved 000a0000-000bffff : Video RAM area 000c0000-000c7fff : Video ROM 000f0000-000fffff : System ROM 00100000-03...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 3: Char Drivers docx
... of setting up the devices. for (i=0; i < scull_nr_devs; i++) { scull_devices[i].quantum = scull_quantum; scull_devices[i].qset = scull_qset; sema_init(&scull_devices[i].sem, 1); ... Allocation of Major Numbers Some major device numbers are statically assigned to the most common devices. A list of those devices can be found in Documentation/devices.txt within the kernel s...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 4 : Debugging Techniques pptx
... c48370c0 edx: c2c55b00 esi: 0804d038 edi: 0804d038 ebp: c2337f8c esp: c2337f8c ds: 0018 es: 0018 ss: 0018 Process cat (pid: 2 341 3, stackpage=c2337000) Stack: 00000001 c01356e6 c2c55ae0 0804d038 ... 0000000001000128 TNPC: 000000000 045 7fbc \ Y: 00800000 g 0: 000000007002ea88 g 1: 00000000000000 04 g 2: 0000000070029fb0 \ g 3: 0000000000000018 g 4: fffff8000000000...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 5 : Enhanced Char Driver Operations pptx
... copy_from_user must be used. Capabilities and Restricted Operations Access to a device is controlled by the permissions on the device file(s), and the driver is not normally involved in permissions checking. ... for historical reasons: when Unix developers faced the problem of controlling I/O operations, they decided that files and devices were different. At the time, the only d...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 6 : Flow of Time pptx
... like gettime: 8 461 57215.939950 xtime: 8 461 57215.931188 jiffies: 1308094 gettime: 8 461 57215.942 465 xtime: 8 461 57215.941188 jiffies: 1308095 Delaying Execution Device drivers often need ... interrupt time. 60 168 7 0 0 2 1 keventd 60 168 7 0 0 2 1 keventd 60 168 7 0 0 2 1 keventd 60 168 7 0 0 2 1 keventd 60 168 7 0 0 2 1 keventd 60 168 7 0 0 2 1 keventd 60 168 7 0...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 7 : Getting Hold of Memory doc
... scullc_quantum); } Chapter 7 : Getting Hold of Memory Thus far, we have used kmalloc and kfree for the allocation and freeing of memory. The Linux kernel offers a richer set of memory allocation primitives, ... multiples of the page size, though the number of pages doesn't have to be a power of two. The bigphysarea Patch Device 0: qset 500, ord...
Ngày tải lên: 24/12/2013, 01:17
Tài liệu Linux Device Drivers-Chapter 8 :Hardware Management docx
... definition: Chapter 8 :Hardware Management Although playing with scull and similar toys is a good introduction to the software interface of a Linux device driver, implementing a real device requires ... addresses are either burned in device logic circuits, statically assigned in local device memory, or set by means of physical jumpers. The latter is true of PCI devic...
Ngày tải lên: 24/12/2013, 01:17
tài liệu linux servers
... Linux Servers Inetd và các dịch vụ mạng Inetd Unix có hai cách để tổ chức các dịch vụ mạng: hoặc ... vụ ít nhất một daemon và tài nguyên của hệ thống bị sử dụng ngay cả khi không có yêu cầu kết nối. Còn trong trường hợp sau ta cần một daemon cho tất cả các dịch vụ. Tài nguyên hệ thống chỉ thực ... một họ các hàm exec (exec family). Linux có thêm clone để tạo các threads (tiểu ti...
Ngày tải lên: 14/11/2014, 09:30