• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

The Geek Diary

CONCEPTS | BASICS | HOWTO

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • Linux Services
    • VCS
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
    • Data Guard
  • DevOps
    • Docker
    • Shell Scripting
  • Interview Questions
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

Zones

Solaris – Changing from iSCSI Static Discovery to SendTargets Discovery

By admin

This post is to provide steps from changing iSCSI Static Discovery to SendTargets Discovery. If zones are configured, zones need to be halted before changing the iSCSI discovery method then boot afterward. If zpool is configured, zpool needs to be exported before changing the iSCSI discovery method then import afterward. Below are high level steps: halt zones export -f zfs pools remove static disks disable static discovery service restart target discovery service import pools boot … [Read more...] about Solaris – Changing from iSCSI Static Discovery to SendTargets Discovery

Filed Under: Solaris, Solaris 11, ZFS, Zones

How to Set the TimeZone in Solaris 10,11

By admin

The Ask In Solaris Operating System (OS), where is the default timezone set, and how can it be changed? Solaris 11 OS and above 1. The default timezone is defined as a property of the "svc:/system/timezone:default" SMF service: # svcs timezone STATE STIME FMRI online Aug_22 svc:/system/timezone:default # svcprop timezone:default |grep localtime timezone/localtime astring US/Eastern 2. To change the default timezone, use the svccfg and then refresh the service … [Read more...] about How to Set the TimeZone in Solaris 10,11

Filed Under: Solaris, Solaris 11, Zones

Solaris Zone Install Fails With Cpio Error

By admin

The Problem Error when trying to install full root zone ERROR: cannot install zone: cannot access [/usr/bin/cpio] (exec failure) NOTE: Sparse root install was successful. The Solution 1. Check the permissions of the cpio executable on the problematic system first. # ls -al /usr/bin/cpio -rwxrwxrwx 1 root bin 85924 Sept 9 2018 /usr/bin/cpio Correct permissions should be: # ls -al /usr/bin/cpio -r-xr-xr-x 1 root bin 85856 Sept 9 2018 /usr/bin/cpio 2. Also many errors during … [Read more...] about Solaris Zone Install Fails With Cpio Error

Filed Under: Solaris, Zones

Oracle Solaris 11 Zones : New Features

By admin

With Solaris 11, Oracle has introduced many new features. This is true with the Solaris zones as well. This post tries to list out the new features introduced in Solaris 11 zones. Oracle Solaris Zones is an OS virtualization feature in Oracle Solaris with a long and distinguished pedigree. One of the most highly adopted, highly used, mature virtualization technologies, Oracle Solaris Zones was first introduced as a core part of Oracle Solaris 10. In Oracle Solaris 11, Oracle Solaris Zones … [Read more...] about Oracle Solaris 11 Zones : New Features

Filed Under: Solaris, Solaris 11, Zones

How to Create a Datalink in Non-Global Zone from the Global Zone in Solaris 11

By admin

Network virtualization is the process of combining hardware network resources and software network resources into a single administrative unit. The goal of network virtualization is to provide systems and users with efficient, controlled, and secure sharing of the networking resources. The end product of network virtualization is the virtual network. Starting from Oracle Solaris 11.2, you can create datalinks in nonglobal zones from the global zone. This feature enables administrators to … [Read more...] about How to Create a Datalink in Non-Global Zone from the Global Zone in Solaris 11

Filed Under: Solaris, Solaris 11, Zones

How to configure a vnic on top of a Vlan Tagged Interface and assign the vnic to a Solaris 11 Zone

By admin

This post discusses how to assign a vnic created on a vlan tagged interface and assign the vnic to an exclusive-ip zone in Solaris 11. If you want a vnic on a vlan, you need to set the vlan option when you create the vnic. Note that the physical does not have to be on the vlan, but the external cisco switch connected to the physical does need to be vlan aware. Once you do create the vnic on a vlan and assign it to the NGZ, that doesn't mean you will have communications to the GZ. The GZ will … [Read more...] about How to configure a vnic on top of a Vlan Tagged Interface and assign the vnic to a Solaris 11 Zone

Filed Under: Solaris, Solaris 11, Zones

Solaris 11 : How to verify whether I’m logged into a Kernel Zone?

By admin

What is a Solaris Kernel Zone The solaris-kz brand uses the branded zones framework to run zones with a separate kernel and OS installation from that used by the global zone. A solaris-kz installation is independent of that of the global zone; it is not a pkg linked image and can be modified regardless of the global zone content. A solaris-kz zone can be installed in the same manner as other brands directly from the global zone, or via a boot media. How to indentify if you are in a kernel … [Read more...] about Solaris 11 : How to verify whether I’m logged into a Kernel Zone?

Filed Under: Solaris, Solaris 11, Zones

Solaris 11 : How to Verify Kernel Zone Support on a Host

By admin

What is a Solaris Kernel Zone The solaris-kz brand uses the branded zones framework to run zones with a separate kernel and OS installation from that used by the global zone. A solaris-kz installation is independent of that of the global zone; it is not a pkg linked image and can be modified regardless of the global zone content. A solaris-kz zone can be installed in the same manner as other brands directly from the global zone, or via a boot media as described below. When specifying a … [Read more...] about Solaris 11 : How to Verify Kernel Zone Support on a Host

Filed Under: Solaris, Solaris 11, Zones

Solaris zones : How to set netmasks

By admin

Question : How to set certain netmask for a non global zone ? Answer : To define a certain netmask for a non global zone, use zonecfg command. The network address is one of: a valid IPv4 address, optionally followed by "/" and a prefix length. a valid IPv6 address, which must be followed by "/" and a prefix length. Steps to follow 1. On the global zone, enter the zone configuration mode : global_zone # zonecfg -z zone01 zonecfg:zone01> add net … [Read more...] about Solaris zones : How to set netmasks

Filed Under: Zones

Solaris 11.2 : Adding new resources to a running zone online

By admin

Solaris 11.2 provides a supported way to add new resources to a running zone online. Prior to this version, a reboot of the non-global zone was required to make the changes effective. The post describes an example of adding a raw disk device online to a non-global zone. Example: 1. Check the Solaris OS version. # uname -a SunOS test 5.11 11.2 sun4v sparc SUNW,T5240 2. List the zones available on the system. In our example we will be adding disk resource to the zone - zone01 # zoneadm … [Read more...] about Solaris 11.2 : Adding new resources to a running zone online

Filed Under: Solaris 11, Zones

Next Page »

Primary Sidebar

Recent Posts

  • How to Disable IPv6 on Ubuntu 18.04 Bionic Beaver Linux
  • How to Capture More Logs in /var/log/dmesg for CentOS/RHEL
  • Unable to Start RDMA Services on CentOS/RHEL 7
  • How to rename a KVM VM with virsh
  • Archives
  • Contact Us
  • Copyright

© 2021 · The Geek Diary