Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ismt(4) [freebsd man page]

ISMT(4) 						   BSD Kernel Interfaces Manual 						   ISMT(4)

NAME
ismt -- Intel SMBus Message Transport (SMBus 2.0) driver SYNOPSIS
device pci device smbus device smb device ismt DESCRIPTION
This driver provides access to the SMBus 2.0 controller device contained in the Intel Atom S1200 and C2000 CPUs. SEE ALSO
smb(4), smbus(4) HISTORY
The ismt driver first appeared in FreeBSD 11.0. AUTHORS
Jim Harris <jimharris@FreeBSD.org> BSD
May 9, 2014 BSD

Check Out this Related Man Page

AMDPM(4)						   BSD Kernel Interfaces Manual 						  AMDPM(4)

NAME
amdpm -- AMD 756/766/768/8111 Power Management controller driver SYNOPSIS
device smbus device smb device amdpm DESCRIPTION
This driver provides access to AMD 756/766/768/8111 Power management controllers. Currently, only the SMBus 1.0 controller function is implemented. The SMBus 2.0 functionality of the AMD 8111 controller is supported via the amdsmb(4) driver. The embedded SMBus controller of the AMD 756 chipset may give you access to the monitoring facilities of your mainboard. See smb(4) for writing user code to fetch voltages, temperature and so on from the monitoring chip of your mainboard. SEE ALSO
amdsmb(4), smb(4), smbus(4) HISTORY
The amdpm driver first appeared in FreeBSD 4.5. AUTHORS
This driver was written by Matthew C. Forman. Based heavily on the alpm driver by Nicolas Souchu. This manual page was written by Murray Stokely <murray@FreeBSD.org>. BUGS
Only polling mode is supported. BSD
December 31, 2005 BSD
Man Page

12 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need a helping hand --stuck in starting of this problm.

Hi all it is a real challenge for me to do it in 2 days any help or suggestion will be a great ! Problem : I have 17 - CSV files (Coma separated value) each file conating around 26 column the first line of each of the file conatin the field name and from second line the file contain data for... (13 Replies)
Discussion started by: jambesh
13 Replies

2. Shell Programming and Scripting

List files created before Noon 2 days prior

Our nightly updates run in the evening and finish around 8am. My boss wants the current log files kept on the server for 2 days, but wants anything created before noon, 2 days prior archived. I was thinking of using touch to set a temporary file with a date of today-2 and a time of noon, then... (3 Replies)
Discussion started by: prismtx
3 Replies

3. Shell Programming and Scripting

How to find last delimiter in line?

I am working in a ksh script. I am reading a login, password, and database name from a pre-existing config file. Login and password are simple, I take the value after the first "=" sign, but the dbname has multiple equal signs in it. I have it working by temporarily reading the 23rd field, but... (4 Replies)
Discussion started by: prismtx
4 Replies

4. Shell Programming and Scripting

Find cmd not working correctly in script

I am trying to copy 2 types of files so I can archive them. I tested with a set of commands: touch -t $(date -d "-60 day" +%Y%m%d) WORKDIR/REF find TARGETDIR/ -type f -maxdepth 1 -iname \*.out\* -or -iname \*.log\* ! -newer WORKDIR/REF -exec ls -l {} \; This correctly lists any files in the... (2 Replies)
Discussion started by: prismtx
2 Replies

5. Shell Programming and Scripting

Double search and replace?

I need to search for a line containing only 'XYY' or '//'. Then if the next line is either 'COD' or 'FAL' I need to replace positions 3-5 of the line 2 lines after that depending on its value. So my incoming file is like this: ABC XYZ COD AS/12/1436/02MAR09 K 99X C4347 N6450SDQ... (9 Replies)
Discussion started by: prismtx
9 Replies

6. Shell Programming and Scripting

Cronjob not started??!!

Hi Guys,, I have cron entry at yesterday at 3 am. That particular script did not ran. (am saying this as i checked the log files for the script). The script after this at 4 30 pm and 6 00 pm ran successfully. When i scheduled the same script for today it ran successfully ( i did not made any... (6 Replies)
Discussion started by: mac4rfree
6 Replies

7. Shell Programming and Scripting

Way to extract detail and its content above specific value problem asking

Input file: >position_10 sample:68711 coords:5453-8666 number:3 type:complete len:344 MSINQYSSDFHYHSLMWQQQQQQQQHQNDVVEEKEALFEKPLTPSDVGKLNRLVIPKQHA ERYFPLAAAAADAVEKGLLLCFEDEEGKPWRFRYSYWNSSQSYVLTKGWSRYVKEKHLDA NRTS* >position_4 sample:68711 coords:553-866 number:4 type:partial len:483... (7 Replies)
Discussion started by: patrick87
7 Replies

8. Web Development

Random - Any help decoding obfuscated code?

I have this following file and I would quite like to get it decoded - any help / advice is appreciated. I would like to know how to decrypt it, however if someone is able to do it for me I would be equally grateful. <?php //Obfuscation provided by FOPO - Free Online PHP Obfuscator v1.2:... (6 Replies)
Discussion started by: mcclunyboy
6 Replies

9. Shell Programming and Scripting

File not creating

File is not creating which i marked red colour in below code.Not sure what the issue is even i replaced echo with touch then alos no luck.please anyone help me. while read file; do data_file=$file ctl_file=`echo $file|cut -f1 -d.`.ctl if ; then echo "Control file exists. Looking up... (3 Replies)
Discussion started by: katakamvivek
3 Replies

10. Solaris

DBCA Issues

I am wondering if someone can help a brother out. I am trying to create a DB using a GUI and when I am about to finish, it gets stuck. I hit finish but nothing happens. Any help from the community will be highly appreciated. ... (0 Replies)
Discussion started by: newborndba
0 Replies

11. UNIX for Beginners Questions & Answers

How to fetch the value from a xml using sed, GREP?

I have a simple xml file,need the output with the <value> tag and <result> tag text.xml <test-method status="FAIL" duration="45"> <value> Id=C18 </value> <result> wrong paramter </result> </test-method> <test-method status="FAIL" duration="45"> <value> Id=C19 </value> <result> Data... (5 Replies)
Discussion started by: DevAakash
5 Replies

12. Shell Programming and Scripting

Controlling user input

I'm trying to use a bash script for a psych experiment that involves listening to sound files and responding. If I have something like the code below, how can I make sure that a key press is assigned to RESPONSE only after the second echo statement? for i in 1 2 3; do echo "Ready?" sleep 2 ... (10 Replies)
Discussion started by: darwin_886
10 Replies