|
My Name
Subscribe
|
Fri, 08 Apr 2005Tauryna
'nobody knows what it does'
Vita Plus sth - 0.50mg * 20 = 6.35
Gellwe 4/5g ( 400/5mg kofeina) = 2zl
Freeway Energy Drink(lidl) 0.38% (30mg/100ml kofeina), = 2zl
Ice Bull 1l, 100ml = (400mg tauryna, 32mg kofeina) =~ 5zl
[/Misc] permanent link Wed, 30 Mar 2005Crypt::MatrixSSL Matrix::SSLapt-cache show libmatrixssl1.2 Package: libmatrixssl1.2 Priority: optional Section: libs Installed-Size: 96 Maintainer: Gerrit Pape [/Misc] permanent link Mon, 14 Feb 2005It's not easy being omnipotent.Best practices for Admins/Gods:
[/Misc] permanent link Thu, 27 Jan 2005Comment from mmartha
Date: 09/27/2004 01:00PM PDT
Comment
Hi nerak99,
First you add winbind in your nsswitch.conf
passwd: files winbind
group: files winbind
hosts: files dns winbind
Add your realm to kerberos in krb.conf
Authenticate
#kinit user@REALM
Join the domain in Active directory
#net ads join -S DOMAIN -U user%passwd
Join the domain in NT Direcotry
#net rpc join -S DOMAIN -U user%passwd
In smb.conf ¨
Active Directory
[global]
security = ADS
password encrypt = yes
realm = REALM.COM
idmap uid = 10000-20000
idmap gid = 10000-20000
template shell = /bin/bash
template home = /home/win2k/%D/%U
winbind separator = +
NT directory
[global]
security = DOMAIN
idmap uid = 10000-20000
idmap gid = 10000-20000
template shell = /bin/bash
template home = /home/win2k/%D/%U
winbind separator = +
Create the home directories
run smb, nmb and winbind
you can probe winbind with
#wbinfo -u
#wbinfo -g
#getent passwd
#getent group
To a local login you need to edit your PAM settings, depend of your system.
In red hat, you need to edit the file system-auth.
In SuSe, login and xdm.
[/Misc] permanent link Fri, 07 Jan 2005Tracing OOPs with Bertl:
Kernel panic:
SMP CPU: 3 EIP: 0060:[<80146f4b>] Not tainted VLI EFLAGS: 00010086 (2.6.10-ih3) EIP is at kmem_cache_alloc+0x1b/0x50 eax: 00000003 ebx: 00000286 ecx: b7cda280 edx: 00000078 esi: 00000020 edi: ce7ba01c ebp: 00000000 esp: ce7b9ff0 ds: 007b es: 007b ss: 0068 Process (pid: -367138816, threadinfo=ce7b9000 task=d1ec3000) Stack: 083e2490 083e2490 b7ece380 80140fb3 Call Trace: [<80140fb3>] mempool_alloc+0x73/0x140 Code: a4 01 2b eb 96 8d 74 26 00 8d bc 27 00 00 00 00 83 ec 0c 8b 4c 24 10 89 5c 24 08 9c 5b fa b8 00 f0 ff ff 21 e0 8b 40 10 8b 14 81 <8b> 02 85 c0 74 18 c7 42 0c 01 00 00 00 48 89 02 8b 44 82 10 5308:38 < Bertl >hmm, try 'addr2line -e vmlinux 083e2490 083e2490 80140fb3' hmm, I think you need an uncompressed kernel though :( printing eip: c01c7dc9 *pde = 093cd067 *pte = 00000000 Oops: 0000 CPU: 0 EIP: 0010:[ /home/eyck# addr2line -e /boot/vmlinuz-2.4.23-bsd15a c5823490 c5823490 c333a4b0 addr2line: /boot/vmlinuz-2.4.23-bsd15a: File format not recognized [/Misc] permanent link Thu, 06 Jan 2005ARM,
ARM was originally designed by a group of mathematicians for use in a relatively obscure proprietary personal computer system. This core presently dominates the low end of the 32-bit market (in terms of shipment volumes) due in part to low power requirements, wide availability in many forms, and a clever instruction set architecture. For example, the so-called "Thumb" instruction set extension allows the microcontroller, though 32-bit in nature, to run quite efficiently out of 16-bit memories with about a 25% improvement in code density. (Narrower data buses generally imply a lower pin count on the microcontroller, and hence a lower cost). Thumb code can also be used in pure 32-bit hardware designs to reduce code volume significantly without unacceptably influencing execution speed. In the last two years or thereabouts, we have begun to see very cut-down ARM-based parts with a small amount of on-chip flash and RAM making their way into control applications formerly occupied by 8-bit devices. ARM is also the most common core used in PDA and smartphone applications.
from: http://www-106.ibm.com/developerworks/library/pa-migrate/?ca=dgr-lnxw06X86ToPower#Resources
[/Misc] permanent link Biking in SnowBiking in snow is a very intensive experience, everyone is affraid of weather, so noone tries this, but AFAIK everyone who tried snowbiking immediately falls in love with it. Well, first of all, remember that your brakes don't work that well when
the temperature gets low ( that's why I'm hunting for disc brakes, they're much better then v-brakes ),
biking on ice at low speeds and curvy roads is quite an excercise for your balance.
http://www.enteract.com/~icebike/
http://www.bikewinter.org/
http://www.fieldses.org/~bfields/umba/winter.html
Timestamp:2004-10-08 Firewall rule for FTP
A. Firewall rule summary
As long Application Layer Gateways (or proxys) are not used, a
packet filtering firewall should be able to pass secured FTP. The
following guidelines should help trying to configure one.
Control Connection
- Allow any port on the client to connect to port 21 on the
server
- Disable any rules that parse and/or impose any rules on the
commands and/or responses on the control stream. (Note - there
is one major firewall vendor who claim this is a security issue
and make it very hard for you to do this)
- Ensure the idle timeout of the control connection is longer
than it will take to transfer the largest file on the data
connection
Data Connection
Normal (active or PORT) FTP
- Allow port 20 on the server to connect to any port on the
client
Firewall-Friendly (passive or PASV) FTP
- Allow any port on the client to connect to any high port(*)
on the server.
(*) This may be able to be configured on the server to be a
range of ports and not 'any high port'.
Note: A firewall may allow both Normal and Firewall-Friendly FTP,
the choice is not exclusive.
NAT firewalls should be able to allow Firewall friendly FTP through,
as long as these rules can be followed.
Source: http://www.isaserver.org/articles/FTPTLS_Friendly_Firewalls.html[/Misc] permanent link Mon, 03 May 2004GPRSTue, 20 Apr 2004
http://aleron.dl.sourceforge.net/sourceforge/statifier/statifier-1.2.0.tar.gz
packs dynamically-linked binary+libraries into single file,
[/Misc] permanent link Wed, 07 Apr 2004Moje bledy w ITP>Package: wnpp >Version: N/A; reported 2004-04-03 >Severity: wishlist > >* Package name : daemontools > Version : 0.76 > Upstream Author : Daniel J. Bernstein [/Misc] permanent link Thu, 19 Feb 2004Nice HT cpu...
23:55:41 up 51 min, 6 users, load average: 1,89, 1,03, 0,41
64 processes: 63 sleeping, 1 running, 0 zombie, 0 stopped
CPU states: cpu user nice system irq softirq iowait idle
total 0,9% 0,0% 0,9% 0,0% 0,0% 97,5% 0,4%
cpu00 0,0% 0,0% 0,0% 0,0% 0,0% 99,0% 0,9%
cpu01 1,9% 0,0% 1,9% 0,0% 0,0% 96,0% 0,0%
Mem: 4898936k av, 2008884k used, 2890052k free, 0k shrd, 56324k buff
210656k active, 1694256k inactive
Swap: 2097096k av, 0k used, 2097096k free 1773252k cached
PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME CPU COMMAND
1303 root 22 0 74724 72M 6344 D 1,4 1,5 0:42 1 yum
160 root 15 0 0 0 0 DW 0,4 0,0 0:00 1 kjournald
1 root 15 0 460 460 412 S 0,0 0,0 0:04 0 init
2 root RT 0 0 0 0 SW 0,0 0,0 0:00 0 migration/0
3 root RT 0 0 0 0 SW 0,0 0,0 0:00 1 migration/1
4 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 keventd
5 root 34 19 0 0 0 SWN 0,0 0,0 0:00 0 ksoftirqd/0
6 root 34 19 0 0 0 SWN 0,0 0,0 0:00 1 ksoftirqd/1
9 root 25 0 0 0 0 SW 0,0 0,0 0:00 1 bdflush
7 root 15 0 0 0 0 SW 0,0 0,0 0:00 0 kswapd
8 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 kscand
10 root 15 0 0 0 0 SW 0,0 0,0 0:00 0 kupdated
11 root 25 0 0 0 0 SW 0,0 0,0 0:00 0 mdrecoveryd
17 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 ahc_dv_0
18 root 15 0 0 0 0 SW 0,0 0,0 0:00 0 ahc_dv_1
19 root 25 0 0 0 0 SW 0,0 0,0 0:00 0 scsi_eh_0
20 root 25 0 0 0 0 SW 0,0 0,0 0:00 0 scsi_eh_1
24 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 kjournald
79 root 25 0 0 0 0 SW 0,0 0,0 0:00 1 khubd
156 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 kjournald
157 root 15 0 0 0 0 SW 0,0 0,0 0:00 1 kjournald
158 root 15 0 0 0 0 SW 0,0 0,0 0:00 0 kjournald
159 root 15 0 0 0 0 SW 0,0 0,0 0:00 0 kjournald
834 root 15 0 612 612 532 S 0,0 0,0 0:00 1 syslogd
838 root 15 0 460 460 404 S 0,0 0,0 0:00 1 klogd
848 root 15 0 444 444 388 S 0,0 0,0 0:00 0 irqbalance
865 rpc 17 0 584 584 508 S 0,0 0,0 0:00 1 portmap
884 rpcuser 25 0 740 740 660 S 0,0 0,0 0:00 1 rpc.statd
1048 root 23 0 896 896 780 S 0,0 0,0 0:00 0 xinetd
1112 root 15 0 616 616 548 S 0,0 0,0 0:00 0 crond
1155 daemon 15 0 560 560 500 S 0,0 0,0 0:00 1 atd
1169 root 15 0 1004 1004 808 S 0,0 0,0 0:00 0 login
1170 root 15 0 1012 1012 808 S 0,0 0,0 0:00 0 login
1172 root 23 0 428 428 380 S 0,0 0,0 0:00 1 mingetty
1173 root 20 0 428 428 380 S 0,0 0,0 0:00 1 mingetty
1174 root 20 0 432 432 380 S 0,0 0,0 0:00 0 mingetty
1175 root 15 0 1360 1360 1152 S 0,0 0,0 0:00 1 bash
1244 root 17 0 1368 1368 1160 S 0,0 0,0 0:00 0 bash
1313 root 18 0 2016 2016 1668 S 0,0 0,0 0:00 0 sshd
1315 eyck 15 0 2500 2500 2112 S 0,0 0,0 0:00 0 sshd
1316 eyck 15 0 1344 1344 1140 S 0,0 0,0 0:00 1 bash
1419 root 19 0 964 964 792 S 0,0 0,0 0:00 1 su
1420 root 15 0 1364 1364 1156 S 0,0 0,0 0:00 0 bash
1730 root 16 0 428 428 380 S 0,0 0,0 0:00 1 mingetty
1732 root 15 0 976 976 800 S 0,0 0,0 0:00 1 su
1733 root 15 0 1368 1368 1160 S 0,0 0,0 0:00 1 bash
1967 root 15 0 2012 2012 1668 S 0,0 0,0 0:00 1 sshd
1969 sinica 15 0 2232 2232 1852 S 0,0 0,0 0:00 0 sshd
1970 sinica 24 0 1340 1340 1140 S 0,0 0,0 0:00 1 bash
2012 root 22 0 976 976 800 S 0,0 0,0 0:00 0 su
2013 root 15 0 1368 1368 1156 S 0,0 0,0 0:00 0 bash
2075 root 15 0 972 972 800 S 0,0 0,0 0:00 0 su
2076 root 15 0 1368 1368 1160 S 0,0 0,0 0:00 1 bash
2145 root 17 0 2016 2016 1668 S 0,0 0,0 0:00 0 sshd
2147 eyck 15 0 2476 2476 2084 S 0,0 0,0 0:00 1 sshd
2148 eyck 15 0 1340 1340 1140 S 0,0 0,0 0:00 1 bash
2216 root 15 0 1508 1508 1276 S 0,0 0,0 0:00 0 sshd
2256 root 18 0 2008 2008 1660 S 0,0 0,0 0:00 0 sshd
2263 sinica 15 0 2244 2244 1844 S 0,0 0,0 0:00 1 sshd
2264 sinica 24 0 1336 1336 1140 S 0,0 0,0 0:00 0 bash
2318 root 22 0 988 988 808 S 0,0 0,0 0:00 1 su
2364 root 24 0 1348 1348 1140 S 0,0 0,0 0:00 1 bash
2741 root 15 0 1120 1120 896 S 0,0 0,0 0:00 0 top
3336 eyck 20 0 1096 1096 888 R 0,0 0,0 0:00 0 top
[eyck@ora10 eyck]$
[eyck@ora10 eyck]$ ls
debootstrap-0.2.23-1.i386.rpm
[eyck@ora10 eyck]$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 15
model : 2
model name : Intel(R) Xeon(TM) CPU 3.06GHz
stepping : 5
cpu MHz : 3056.609
cache size : 512 KB
physical id : 3
siblings : 2
runqueue : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm
bogomips : 6094.84
processor : 1
vendor_id : GenuineIntel
cpu family : 15
model : 2
model name : Intel(R) Xeon(TM) CPU 3.06GHz
stepping : 5
cpu MHz : 3056.609
cache size : 512 KB
physical id : 3
siblings : 2
runqueue : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm
bogomips : 6107.95
[eyck@ora10 eyck]$
ording to the ACPI table
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: COMPAQ Product ID: PROLIANT APIC at: 0xFEE00000
I/O APIC #2 Version 17 at 0xFEC00000.
I/O APIC #3 Version 17 at 0xFEC01000.
I/O APIC #4 Version 17 at 0xFEC02000.
I/O APIC #5 Version 17 at 0xFEC03000.
Processors: 2
xAPIC support is present
Enabling APIC mode: Flat. Using 4 I/O APICs
Kernel command line: ro root=LABEL=/
Initializing CPU#0
Detected 3056.609 MHz processor.
Console: colour VGA+ 80x25
Calibrating delay loop... 6094.84 BogoMIPS
Memory: 4894152k/5242876k available (1683k kernel code, 81944k reserved, 1318k data, 224k init, 4063204k highmem)
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Inode cache hash table entries: 524288 (order: 10, 4194304 bytes)
Mount cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer cache hash table entries: 524288 (order: 9, 2097152 bytes)
Page-cache hash table entries: 1048576 (order: 10, 4194304 bytes)
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: L3 cache: 1024K
CPU: Physical Processor ID: 3
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: After generic, caps: bfebfbff 00000000 00000000 00000000
CPU: Common caps: bfebfbff 00000000 00000000 00000000
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
mtrr: detected mtrr type: Intel
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: L3 cache: 1024K
CPU: Physical Processor ID: 3
Intel machine check reporting enabled on CPU#0.
CPU: After generic, caps: bfebfbff 00000000 00000000 00000000
CPU: Common caps: bfebfbff 00000000 00000000 00000000
CPU0: Intel(R) Xeon(TM) CPU 3.06GHz stepping 05
per-CPU timeslice cutoff: 1462.67 usecs.
task migration cache decay timeout: 10 msecs.
enabled ExtINT on CPU#0
ESR value before enabling vector: 00000000
ESR value after enabling vector: 00000000
Booting processor 1/7 eip 2000
Initializing CPU#1
masked ExtINT on CPU#1
ESR value before enabling vector: 00000000
ESR value after enabling vector: 00000000
Calibrating delay loop... 6107.95 BogoMIPS
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: L3 cache: 1024K
CPU: Physical Processor ID: 3
Intel machine check reporting enabled on CPU#1.
CPU: After generic, caps: bfebfbff 00000000 00000000 00000000
CPU: Common caps: bfebfbff 00000000 00000000 00000000
CPU1: Intel(R) Xeon(TM) CPU 3.06GHz stepping 05
Total of 2 processors activated (12202.80 BogoMIPS).
ENABLING IO-APIC IRQs
Setting 2 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 2 ... ok.
Setting 3 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 3 ... ok.
Setting 4 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 4 ... ok.
Setting 5 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 5 ... ok.
init IO_APIC IRQs
IO-APIC (apicid-pin) 2-0, 3-0, 3-1, 3-2, 3-3, 3-4, 3-5, 3-6, 3-7, 3-8, 3-9, 3-10, 3-11, 3-12, 3-13, 3-14, 3-15, 4-0, 4-1, 4-2, 4-3, 4-4, 4-5, 4-6, 4-7, 4-8, 4-9, 4-10, 4-11, 4-12, 4-13, 4-14, 4-15, 5-0, 5-1, 5-2, 5-3, 5-4, 5-5, 5-6, 5-7, 5-8, 5-9, 5-10, 5-11, 5-12,
5-13, 5-14, 5-15 not connected.
..TIMER: vector=0x31 pin1=2 pin2=0
number of MP IRQ sources: 16.
number of IO-APIC #2 registers: 16.
number of IO-APIC #3 registers: 16.
number of IO-APIC #4 registers: 16.
number of IO-APIC #5 registers: 16.
testing the IO APIC.......................
IO APIC #2......
.... register #00: 02000000
....... : physical APIC id: 02
....... : Delivery Type: 0
....... : LTS : 0
.... register #01: 000F0011
.... register #01: 000F0011
....... : max redirection entries: 000F
....... : PRQ implemented: 0
....... : IO APIC version: 0011
.... register #02: 02000000
....... : arbitration: 02
.... IRQ redirection table:
NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
00 000 00 1 0 0 0 0 0 0 00
01 003 03 0 0 0 0 0 1 1 39
02 003 03 0 0 0 0 0 1 1 31
03 003 03 0 0 0 0 0 1 1 41
04 003 03 0 0 0 0 0 1 1 49
05 003 03 1 1 0 1 0 1 1 51
06 003 03 0 0 0 0 0 1 1 59
07 003 03 0 0 0 0 0 1 1 61
08 003 03 0 0 0 0 0 1 1 69
09 003 03 1 1 0 1 0 1 1 71
0a 003 03 1 1 0 1 0 1 1 79
0b 003 03 1 1 0 1 0 1 1 81
0c 003 03 0 0 0 0 0 1 1 89
0d 003 03 0 0 0 0 0 1 1 91
0e 003 03 0 0 0 0 0 1 1 99
0f 003 03 1 1 0 1 0 1 1 A1
IO APIC #3......
.... register #00: 03000000
....... : physical APIC id: 03
....... : Delivery Type: 0
....... : LTS : 0
.... register #01: 000F0011
....... : max redirection entries: 000F
....... : PRQ implemented: 0
....... : IO APIC version: 0011
.... register #02: 03000000
....... : arbitration: 03
.... IRQ redirection table:
NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
00 000 00 1 0 0 0 0 0 0 00
01 000 00 1 0 0 0 0 0 0 00
02 000 00 1 0 0 0 0 0 0 00
03 000 00 1 0 0 0 0 0 0 00
04 000 00 1 0 0 0 0 0 0 00
05 000 00 1 0 0 0 0 0 0 00
06 000 00 1 0 0 0 0 0 0 00
07 000 00 1 0 0 0 0 0 0 00
08 000 00 1 0 0 0 0 0 0 00
09 000 00 1 0 0 0 0 0 0 00
0a 000 00 1 0 0 0 0 0 0 00
0b 000 00 1 0 0 0 0 0 0 00
0c 000 00 1 0 0 0 0 0 0 00
0d 000 00 1 0 0 0 0 0 0 00
0e 000 00 1 0 0 0 0 0 0 00
0f 000 00 1 0 0 0 0 0 0 00
IO APIC #4......
.... register #00: 04000000
....... : physical APIC id: 04
....... : Delivery Type: 0
....... : LTS : 0
.... register #01: 000F0011
....... : max redirection entries: 000F
....... : PRQ implemented: 0
....... : IO APIC version: 0011
.... register #02: 04000000
....... : arbitration: 04
.... IRQ redirection table:
NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
00 000 00 1 0 0 0 0 0 0 00
01 000 00 1 0 0 0 0 0 0 00
02 000 00 1 0 0 0 0 0 0 00
03 000 00 1 0 0 0 0 0 0 00
04 000 00 1 0 0 0 0 0 0 00
05 000 00 1 0 0 0 0 0 0 00
06 000 00 1 0 0 0 0 0 0 00
07 000 00 1 0 0 0 0 0 0 00
08 000 00 1 0 0 0 0 0 0 00
09 000 00 1 0 0 0 0 0 0 00
0a 000 00 1 0 0 0 0 0 0 00
0b 000 00 1 0 0 0 0 0 0 00
0c 000 00 1 0 0 0 0 0 0 00
0d 000 00 1 0 0 0 0 0 0 00
0e 000 00 1 0 0 0 0 0 0 00
0f 000 00 1 0 0 0 0 0 0 00
IO APIC #5......
.... register #00: 05000000
....... : physical APIC id: 05
....... : Delivery Type: 0
....... : LTS : 0
.... register #01: 000F0011
....... : max redirection entries: 000F
....... : PRQ implemented: 0
....... : IO APIC version: 0011
.... register #02: 05000000
....... : arbitration: 05
.... IRQ redirection table:
NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
00 000 00 1 0 0 0 0 0 0 00
01 000 00 1 0 0 0 0 0 0 00
02 000 00 1 0 0 0 0 0 0 00
03 000 00 1 0 0 0 0 0 0 00
04 000 00 1 0 0 0 0 0 0 00
05 000 00 1 0 0 0 0 0 0 00
06 000 00 1 0 0 0 0 0 0 00
07 000 00 1 0 0 0 0 0 0 00
08 000 00 1 0 0 0 0 0 0 00
09 000 00 1 0 0 0 0 0 0 00
0a 000 00 1 0 0 0 0 0 0 00
0b 000 00 1 0 0 0 0 0 0 00
0c 000 00 1 0 0 0 0 0 0 00
0d 000 00 1 0 0 0 0 0 0 00
0e 000 00 1 0 0 0 0 0 0 00
0f 000 00 1 0 0 0 0 0 0 00
IRQ to pin mappings:
IRQ0 -> 0:2
IRQ1 -> 0:1
IRQ3 -> 0:3
IRQ4 -> 0:4
IRQ5 -> 0:5
IRQ6 -> 0:6
IRQ7 -> 0:7
IRQ8 -> 0:8
IRQ9 -> 0:9
IRQ10 -> 0:10
IRQ11 -> 0:11
IRQ12 -> 0:12
IRQ13 -> 0:13
IRQ14 -> 0:14
IRQ15 -> 0:15
.................................... done.
Using local APIC timer interrupts.
calibrating APIC timer ...
..... CPU clock speed is 3056.5464 MHz.
..... host bus clock speed is 132.8931 MHz.
cpu: 0, clocks: 1328931, slice: 442977
CPU0[/Misc] permanent link Mon, 17 Mar 2003Lubelskie Cenniki KomputeroweSun, 09 Mar 2003Basen MOSIR
Portiernia: 532-30-03 w 125
Bilety:
[/Misc] permanent link |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||