Archive for March, 2018

The Best Revenge

March 9th, 2018, posted in Islamic Teachings, MESSAGEs, Saying Of Hazrat Ali ( A.S ), Scarface'S DIARY
Share

the best revenge,best revenge,saying of imam ali,saying of hazrat ali,hazrat ali,imam ali,saying of imam,islamic teaching,islamic teachings,the best revenge is to imporve yourself,imporve yourself,

Share

Kiss And Love Comic

March 8th, 2018, posted in Art, COMiCS, LoVE, Scarface'S DIARY
Share

love comic,kiss comic,love kiss comic,funny love,strange love,funny love,i love you comic

Share

She Always Survived

March 7th, 2018, posted in GiRLs, Ink On PAPER, Scarface'S DIARY
Share

R.H.Sin,Feel,She Survived,her cry,her smile,hide tears,She Always Survived

Share

The Fool

March 6th, 2018, posted in Art, BoYs, GiRLs, LoVE
Share

The Fool ,Fool,love,lover,be mine, constantine, john, john constantine, john_constantine, love, movie,

The past was close behind I seen a lot of women
But..
she never escaped my mind and I just grew Tangled up in blue 

Share

How to manually mount CD-DVD-ROM in Solaris

March 3rd, 2018, posted in Solaris
Share

Add A User From The Command Line In Solaris,Add A User From The Command Line In Solaris 10,Add A User From The Command Line, In Solaris10 ,Add A User ,The Command Line In Solaris10,The Command Line In Solaris,solaris 10,

Recently while trying to build a Solaris JumpStart server, I encountered an error in reading the home-burnt DVD-ROM disk of Solaris 10 10/08.  There are many threads out on the internet that talk about the same difficulty and issue.  To circumvent the issue, I needed to manually mount the DVD-ROM.  To do this, you first need to disable the volmgmt software in Solaris.  Since I am running Solaris 10, the command is simple:

 

# svcadm disable volfs
# svcs volfs
STATE          STIME    FMRI
disabled        7:29:01 svc:/system/filesystem/volfs:default
# ps -ef |grep vol
    root 10189   936   0 07:26:10 pts/1       0:00 grep vol

 

Once that is done, you should be able to mount the DVD-ROM using the following command:

 

# mount -F hsfs -o ro /dev/sr0 /cdrom
# cd /cdrom
# ls
Copyright                    License                      boot                         platform
JDS-THIRDPARTYLICENSEREADME  Solaris_10                   installer

Once done, don’t forget to re-enable volume management.  That is done by:

 

# svcadm enable volfs
# svcs volfs
STATE          STIME    FMRI
online          8:33:21 svc:/system/filesystem/volfs:default
Share