Skip to main content

Solaris-10 md5 checksum verify

How to Verify md5 checksum on Solaris 10 ?

md5sum package is available in the Solaris 10 companion CD. But even if the SFWcoreu package not installed on your machine, you can still verify/calculate md5 sum using the following:

Solaris 9

## Full Format
[root@server:~]# cksum /dev/null
4294967295      0       /dev/null
 
## Only display the checksum
[root@server:~]# cksum /dev/null | cut -f1
4294967295

Solaris 10

cksum
## Full Format
[root@server:~]# cksum /dev/null
4294967295      0       /dev/null
 
## Only display the checksum
[root@server:~]# cksum /dev/null | cut -f1
4294967295
digest
## Full Format - MD5
[root@server:~]# digest -v -a md5 /dev/null 
md5 (/dev/null) = d41d8cd98f00b204e9800998ecf8427e
 
## Full Format - SHA1
[root@server:~]# digest -v -a sha1 /dev/null     
sha1 (/dev/null) = da39a3ee5e6b4b0d3255bfef95601890afd80709
 
## Full Format - SHA256
[root@server:~]# digest -v -a sha256 /dev/null   
sha256 (/dev/null) = e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 
## Full Format - SHA512
[root@server:~]# digest -v -a sha512 /dev/null 
sha512 (/dev/null) = cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
 
## Only display the checksum - MD5
[root@server:~]# digest -a md5 /dev/null          
d41d8cd98f00b204e9800998ecf8427e
 
## Only display the checksum - SHA1
[root@server:~]# digest -a sha1 /dev/null    
da39a3ee5e6b4b0d3255bfef95601890afd80709
 
## Only display the checksum - SHA256
[root@server:~]# digest -a sha256 /dev/null  
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 
## Only display the checksum - SHA512
[root@server:~]# digest -a sha512 /dev/null    
cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
The digest utility belongs to the SUNWcsu package.
Here below, the command to know what package a file belongs to:
root@sol10:~# /usr/sbin/pkgchk -l -p /usr/bin/digest 
Pathname: /usr/bin/digest
Type: regular file
Expected mode: 0555
Expected owner: root
Expected group: bin
Expected file size (bytes): 19028
Expected sum(1) of contents: 54133
Expected last modification: Aug 16 19:22:57 2007
Referenced by the following packages:
SUNWcsu 
Current status: installed

Comments

Santos said…
hii i am nisha


https://telegra.ph/10-Ways-to-Get-a-Free-Paypal-Account-with-Money-09-28

Popular posts from this blog

INSTALL CISCO VPN CLIENT ON WINDOWS 10 (32 & 64 BIT). FIX REASON 442

This article shows how correctly install Cisco VPN Client (32 & 64 bit) on Windows 10 (32 & 64 bit) using simple steps, overcome the ‘ This app can’t run on this PC ’ installation error , plus fix the Reason 442: Failed to enable Virtual Adapter error message . The article applies to New Windows 10 installations or Upgrades from earlier Windows versions and all versions before or after Windows 10 build 1511 .  To simplify the article, we’ve broken it into the following two sections: How to Install Cisco VPN client on Windows 10 (clean installation or upgrade from previous Windows), including Windows 10 build prior or after build 1511 . How to Fix Reason 442: Failed to enable Virtual Adapter on Windows 10 Figure 1. The Cisco VPN Client Reason 442: Failed to enable Virtual Adapter error on Windows 10 HOW TO INSTALL CISCO VPN CLIENT ON WINDOWS 10 (NEW INSTALLATIONS OR O/S UPGRADES) The instructions below are for new or clean Windows 10 inst...

Linux File and Directory Permissions

file & directory protection is a essential of any OS and Linux OS is no exception for it! These authorizations allow you to choose exactly who can access your files & directory, providing an overall improved system security. There was one of the major flaws in the older Windows operating-system where, by standard, all users can see each other people's information (Windows 95, 98, Me). For overcoming it, editions of the Windows based computer system such as NT, 2000, XP and 2003 lot more security features added. They fully support file & directory permissions, just as Linux system has since the beginning. Together, we'll now assess a directory listing from our Lab Linux system hosting server, to help us understand the information provided. a simple 'ls' command will give you the file and directory listing within a given directory, including the option  '-l' will display number of new areas that we are going to discuss here:

How to create a Hirens Boot CD 15.2 USB Disk

Hiren’s BootCD (HBCD) is a bootable CD that contains a set of tools that can help users to fix their computer if their system fails to boot. More specifically, HBCD contains hardware diagnostic programs, partition tools, data recovery utilities, antivirus tools and many other tools to fix your computer problems.  I write this article because I use Hiren’s BootCD frequently to troubleshoot computer problems, specially when a computer doesn’t boot anymore due to a virus attack or due to a corrupted file system. In this article you will find instructions on how to put Hiren’s BootCD on a USB flash drive (stick) in order to troubleshoot computer problems in the future.