Skip to main content

Posts

Showing posts from 2023

Add disk in virtual box vm

 Add disk in virtual box vm  In this post, we will check how to add disks in Virtual Box VM.  1. First add the disk from VM console as a new HDD as shown below: We have recently added oel76_db1.vdi disk. 2. Once the disk is added, it will be visible in fdisk -l command output.  3. create the partion using below command fdisk /dev/sdb  for new partion : type n,  to list partition : type p to write the partion : type w 4. Format the partition by below command: Now format the disk with  mkfs  command. # mkfs.ext4 /dev/sdb1 [root@oel76 etc]# mkfs.ext4 /dev/sdb1 mke2fs 1.42.9 (28-Dec-2013) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks 15032320 inodes, 60108800 blocks 3005440 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=2208301056 1835 block groups 32768 blocks per group, 32768 fragments per group 8192 inodes per group Superblock backu...

Exception in thread "main" java.lang.UnsatisfiedLinkError: /u01/soft/ebs/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory

Error while launching rapidwiz during EBS 12.2 Installation  Exception in thread "main" java.lang.UnsatisfiedLinkError: /u01/soft/ebs/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory [oracle@oel76 rapidwiz]$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /u01/soft/ebs/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory         at java.lang.ClassLoader$NativeLibrary.load(Native Method)         at java.lang.ClassLoader.loadLibrary0(Unknown Source)         at java.lang.ClassLoader.loadLibrary(Unknown Source)         at java.lang.Runtime.load0(Unknown Source)         at java.lang.System.load(Unknown Source)         at java.lang.ClassLoader$NativeLibrary.load(Native Method) ...

/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory - while building stage during 12.2

 /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory Cause The Linux box is on a 64-bit system, and does not have 32-bit library support installed. Resolution Make sure glibc.i686 and glibc.x86_64 is installed on the system. If glibc.i686 is not available on the Centos-6, try glibc.i386 To list all the package with prefix "glibc" Run: yum list glibc. To install the package: Run sudo yum install glibc.i686 or sudo yum install glibc.i386 If you do not have sudo setup in the environment, type "su" to accquire superuser authority first. Then run: yum install glibc.i686