LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-08-2003, 03:34 AM   #61
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15

On we go...
Code:
[root@localhost lib]# ldconfig
ldconfig: /usr/aw/maya4.5/lib/libXm.so.2 is not a symbolic link

[root@localhost lib]# dir
commandList           libImageUI.so        libNurbsUISlice.so    libSubdiv.so
dependNodeList        libImf.so            libOpenMayaAnim.so    libSubdivUI.so
lib3dGraphics.so      libJasperSlice.so    libOpenMayaFX.so      libTranslators.so
libAnimEngine.so      libKinSlice.so       libOpenMayalib.a      libUil.a
libAnimSlice.so       libKinUISlice.so     libOpenMayaRender.so  libUil_d.a
libAnimUISlice.so     libLinux.so          libOpenMaya.so        libUil.so
libCommandEngine.so   libManips.so         libOpenMayaUI.so      libUil.so.2
libDataModel.so       libMaya.so           libPolyEngine.so      libUil.so.2.1
libDebug.so           libmocap.a           libPolySlice.so       libUrchinSlice.so
libDeformSlice.so     libModelSlice.so     libPoly.so            libUrchinUISlice.so
libDeformUISlice.so   libModelUISlice.so   libPolyUISlice.so     libversion.so
libDependEngine.so    libMotionCapture.so  libProjectSlice.so    libXm.a
libDevices.so         libMrm.a             libRenderModel.so     libXm_d.a
libDynSlice.so        libMrm_d.a           libRenderSlice.so     libXm.so
libDynUISlice.so      libMrm.so            libRenderUISlice.so   libXm.so.2
libExplorerSlice.so   libMrm.so.2          libShared.so          libXm.so.2.1
libExtensionLayer.so  libMrm.so.2.1        libSharedUI.so        maya.commandList
libFoundation.so      libNurbsEngine.so    libStringCatalog.so   maya.dependNodeList
libGeometryEngine.so  libNurbsSlice.so     libSubdivEngine.so    X11
libImage.so           libNurbs.so          libSubdivGeom.so
[root@localhost lib]# dir /usr/aw/open_motif/X11R6/lib/
libMrm.a    libMrm.so      libUil.a    libUil.so      libXm.a    libXm.so      X11
libMrm_d.a  libMrm.so.2.1  libUil_d.a  libUil.so.2.1  libXm_d.a  libXm.so.2.1
[root@localhost lib]# file /usr/aw/maya4.5/lib/libXm.so.2
/usr/aw/maya4.5/lib/libXm.so.2: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), stripped
[root@localhost lib]#
[root@localhost lib]# locate libXm.so.2
/usr/X11R6/lib/libXm.so.2.1
/usr/X11R6/lib/libXm.so.2
/usr/aw/COM/lib/libXm.so.2
/usr/aw/COM/lib/libXm.so.2.1
/usr/aw/maya4.5/lib/libXm.so.2
Seems there's no libXm.so.2 in the original open_motif directory, so...
it's no copy error, any suggestions?
 
Old 01-08-2003, 04:19 AM   #62
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
I'm a little confused. What is the version of the openmotif package
on the Maya disk? Is it the same version that we're working with?
The libraries you have in /usr/X11R6/lib say to me that the version
we've been messing with is the same as what you already have
installed. What we want to install is the version that came with
Maya.
 
Old 01-08-2003, 04:44 AM   #63
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
We're trying to install openmotif-2.1.30-2_ICS.i386.rpm.
On the maya CD is just a openmotif_2.2.rpm package.

I'm trusting the A|W employee who said:
"Make sure that all of the rpms from the Maya 4.5 cd have been installed. particularly openmotif-2.1.30-2_ICS.i686.rpm"

No again the problem:
No matter what package I try to install (openmotif2.2 (maya4.5 cd) / openmotif-2.1.30-2_ICS.i686.rpm (downloaded) ) I get this message:
Code:
[root@localhost too-install]# rpm -ihv openmotif-2.1.30-2_ICS.i386.rpm
error: failed dependencies:
        openmotif < 2.2.2 conflicts with openmotif21-2.1.30-1
It seems that I've installed a 2.2.2 version (of course it would be of no use then to install the om2.2 from mayacd) and I would rather like to use the one of
which the employee spoke as something of which I only can tell that its some version 2 *G*

Hope this clears things up a bit

PS: Thx for the hint with hdparm!
My IBM hd was REALLY slow and laggy under 7.3, because DMA was off.
First I've got 4MB/s at the test (hdparms -t), after turning on DMA i get 44.14MB/s
 
Old 01-08-2003, 04:55 AM   #64
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
A bit clearer. rpm supposedly provides the option to "relocate" a
package upon installation. I'm thinking that we should try that,
since the package that came with the CD should be the package
that allows maya to work. . .

try:
Code:
rpm -i --force --badreloc --relocate /usr=/usr/aw/maya4.5 openmotif_from_CD
 
Old 01-08-2003, 05:03 AM   #65
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Code:
[root@localhost too-install]# rpm -ihv --force --badreloc --relocate /usr=/usr/aw/maya4.5 /root/Desktop/too-install/openmotif_2.2
error: failed dependencies:
        openmotif < 2.2.2 conflicts with openmotif21-2.1.30-1
[root@localhost too-install]#
Does that mean that the package openmotif_2.2 helds somekind of
openmotif 2.1.30-1 (we've tried to install 2.1.30-2)... but after all -
linux's not willing to let it install itself *G*
 
Old 01-08-2003, 05:19 AM   #66
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
It is so far past my bedtime that I'm going to rant a little (not at you).
Linux isn't the problem here, it's Redhat. Redhat seems to think
that the MicroSoft philosophy of, "We know what you want better
than you do" is a good one. They built the monster that is RPM,
and now we have to deal with its inability to handle simple
commands that are, according to the documentation, a part of this
thing. The solution for me has always been to convert from the
Redhat Package Mangling format to a tarball, then decide where
to install the software myself. This, I think, is the solution here
as well, but I think we need that package that comes with Maya.

Try sending me another email with the info on where to get that
package, and I'll look at converting it (I'm going to bed now, I'll
talk to you in a few hours).
 
Old 01-08-2003, 11:11 PM   #67
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Ok, I think the problem is that the libraries that come with RH 8.0
are not backward compatible with the libraries that Maya4.5
requires. What is needed is to download these files, and put
them into your maya library directory, well away from the rest of
the system so that they don't mess up anything else. I have a
tarball of the libstdc++-2.96-98.i386.rpm and the
openmotif_2.2.tgz that belong with the maya package. I've taken
just the necessary libraries, and tarred (and feathered) them into
a file called maya_libs.tgz. This file is available for download
by pointing your browser to:
http://pirlwww.lpl.arizona.edu/~mmilazzo/lq
Download this file, copy it to your /path/to/maya/ directory
(usr/aw/maya4.5), and:
Code:
tar zxvf maya_libs.tgz
then try, try again.
 
Old 01-09-2003, 01:43 AM   #68
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Code:
[root@localhost maya4.5]# maya
Mayaź, Version 4.5, Fri Aug 16 01:26:23 EDT 2002
Copyright 1997-2002 Alias|Wavefront, a division of Silicon Graphics Limited.
All rights reserved.

Graph Layout Toolkit
Copyright 1992-1997 Tom Sawyer Software, Berkeley, California
All rights reserved.

/usr/aw/maya4.5/bin/maya.bin encountered a fatal error

Signal: 6 (Unknown Signal)
Attempting to save in
        /usr/tmp/root.030109.0829.ma
*sigh*

Ok...maybe it's because I have Rh7.3... maybe its because some symlinks
or whatever are not there where they should be....
 
Old 01-09-2003, 01:55 AM   #69
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Post, again, the output from
Code:
ldd /path/to/maya.bin
Also, post the contents of /etc/ld.so.conf, and the directory listing
of the maya libs, and a
Code:
ls -l /usr/tmp/
 
Old 01-09-2003, 07:27 AM   #70
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Here's the output of ldd /usr/aw/maya4.5/bin/maya.bin

Code:
ldd /usr/aw/maya4.5/bin/maya.bin
        libMaya.so => /usr/aw/maya4.5/lib/libMaya.so (0x40033000)
        libKinSlice.so => /usr/aw/maya4.5/lib/libKinSlice.so (0x40064000)
        libAnimSlice.so => /usr/aw/maya4.5/lib/libAnimSlice.so (0x4016e000)
        libTranslators.so => /usr/aw/maya4.5/lib/libTranslators.so (0x40353000)
        libProjectSlice.so => /usr/aw/maya4.5/lib/libProjectSlice.so (0x403f9000
)
        libSharedUI.so => /usr/aw/maya4.5/lib/libSharedUI.so (0x4041a000)
        libShared.so => /usr/aw/maya4.5/lib/libShared.so (0x40804000)
        libPoly.so => /usr/aw/maya4.5/lib/libPoly.so (0x40cda000)
        libPolyEngine.so => /usr/aw/maya4.5/lib/libPolyEngine.so (0x40dab000)
        libRenderModel.so => /usr/aw/maya4.5/lib/libRenderModel.so (0x40fec000)
        libNurbs.so => /usr/aw/maya4.5/lib/libNurbs.so (0x41627000)
        libDataModel.so => /usr/aw/maya4.5/lib/libDataModel.so (0x4176b000)
        lib3dGraphics.so => /usr/aw/maya4.5/lib/lib3dGraphics.so (0x41cb0000)
        libImage.so => /usr/aw/maya4.5/lib/libImage.so (0x41d42000)
        libAnimEngine.so => /usr/aw/maya4.5/lib/libAnimEngine.so (0x41d8c000)
        libNurbsEngine.so => /usr/aw/maya4.5/lib/libNurbsEngine.so (0x41e09000)
        libGeometryEngine.so => /usr/aw/maya4.5/lib/libGeometryEngine.so (0x4200
2000)
        libExtensionLayer.so => /usr/aw/maya4.5/lib/libExtensionLayer.so (0x4235
6000)
        libDependEngine.so => /usr/aw/maya4.5/lib/libDependEngine.so (0x42744000
)
        libCommandEngine.so => /usr/aw/maya4.5/lib/libCommandEngine.so (0x4293c0
00)
        libFoundation.so => /usr/aw/maya4.5/lib/libFoundation.so (0x42a16000)
        libLinux.so => /usr/aw/maya4.5/lib/libLinux.so (0x43094000)
        libStringCatalog.so => /usr/aw/maya4.5/lib/libStringCatalog.so (0x430a60
00)
        libversion.so => /usr/aw/maya4.5/lib/libversion.so (0x430a8000)
        libGL.so.1 => /usr/lib/libGL.so.1 (0x430aa000)
        libGLU.so.1 => /usr/lib/libGLU.so.1 (0x430f3000)
        libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x4316e000)
        libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3 (0x4324300                                            0)
        libm.so.6 => /lib/i686/libm.so.6 (0x43286000)
        libc.so.6 => /lib/i686/libc.so.6 (0x432a8000)
        libXm.so.2 => /usr/X11R6/lib/libXm.so.2 (0x433dd000)
        libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x43579000)
        libXp.so.6 => /usr/X11R6/lib/libXp.so.6 (0x435c5000)
        libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x435cc000)
        libpthread.so.0 => /lib/i686/libpthread.so.0 (0x435e1000)
        libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x435f5000)
        libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x43605000)
        libImf.so => /usr/aw/maya4.5/lib/libImf.so (0x4360d000)
        libdl.so.2 => /lib/libdl.so.2 (0x436ac000)
        libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x436af000)
        libGLcore.so.1 => /usr/lib/libGLcore.so.1 (0x436bc000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
        libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x43a57000)
        libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x43a5f000)
content of /etc/ld.so.conf

Code:
/usr/kerberos/lib
/usr/X11R6/lib
/usr/lib/qt-3.0.3/lib
/usr/lib/qt2/lib
/usr/lib/sane
/usr/lib/qt-1.45/lib
/usr/lib/wine
/usr/lib/mysql
/usr/aw/maya4.5/lib
The directory listing of the lib path:

Code:
[faeroon@localhost lib]$ dir
commandList           libImf.so            libOpenMayaFX.so                 libSubdivUI.so
dependNodeList        libJasperSlice.so    libOpenMayalib.a                 libTranslators.so
lib3dGraphics.so      libKinSlice.so       libOpenMayaRender.so             libUil.a
libAnimEngine.so      libKinUISlice.so     libOpenMaya.so                   libUil_d.a
libAnimSlice.so       libLinux.so          libOpenMayaUI.so                 libUil.so
libAnimUISlice.so     libManips.so         libPolyEngine.so                 libUil.so.2
libCommandEngine.so   libMaya.so           libPolySlice.so                  libUil.so.2.1
libDataModel.so       libmocap.a           libPoly.so                       libUrchinSlice.so
libDebug.so           libModelSlice.so     libPolyUISlice.so                libUrchinUISlice.so
libDeformSlice.so     libModelUISlice.so   libProjectSlice.so               libversion.so
libDeformUISlice.so   libMotionCapture.so  libRenderModel.so                libXm.a
libDependEngine.so    libMrm.a             libRenderSlice.so                libXm_d.a
libDevices.so         libMrm_d.a           libRenderUISlice.so              libXm.so
libDynSlice.so        libMrm.so            libShared.so                     libXm.so.2
libDynUISlice.so      libMrm.so.2          libSharedUI.so                   libXm.so.2.1
libExplorerSlice.so   libMrm.so.2.1        libstdc++-3-libc6.2-2-2.10.0.so  maya.commandList
libExtensionLayer.so  libNurbsEngine.so    libstdc++-libc6.2-2.so.3         maya.dependNodeList
libFoundation.so      libNurbsSlice.so     libStringCatalog.so              X11
libGeometryEngine.so  libNurbs.so          libSubdivEngine.so
libImage.so           libNurbsUISlice.so   libSubdivGeom.so
libImageUI.so         libOpenMayaAnim.so   libSubdiv.so
And finally the content of /usr/tmp:

Code:
ls -l /usr/tmp/
total 608
-rw-r--r--    1 root     root        51233 Jan  6 18:56 faeroon.030106.1856.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  6 19:32 faeroon.030106.1932.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  6 21:03 faeroon.030106.2103.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  6 22:13 faeroon.030106.2213.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  6 22:21 faeroon.030106.2221.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  7 09:55 faeroon.030107.0955.ma
-rw-rw-r--    1 faeroon  faeroon     51233 Jan  7 09:56 faeroon.030107.0956.ma
-rw-r--r--    1 root     root        51233 Jan  8 09:13 faeroon.030108.0913.ma
-rw-r--r--    1 root     root        51233 Jan  8 09:17 faeroon.030108.0917.ma
-rw-------    1 root     root           84 Jan  6 18:53 log_ahxVGCA
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  6 21:03 mayaDiskCache_17c6
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  6 22:12 mayaDiskCache_78e
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  6 22:21 mayaDiskCache_83e
drwxr-xr-x    2 root     root         4096 Jan  6 18:56 mayaDiskCache_87f
drwxr-xr-x    2 root     root         4096 Jan  9 08:28 mayaDiskCache_a02
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  7 09:54 mayaDiskCache_b9b
drwxr-xr-x    2 root     root         4096 Jan  8 09:12 mayaDiskCache_bf1
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  7 09:56 mayaDiskCache_c07
drwxr-xr-x    2 root     root         4096 Jan  8 09:17 mayaDiskCache_c47
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  6 19:31 mayaDiskCache_d99
drwxrwxr-x    2 faeroon  faeroon      4096 Jan  6 19:32 mayaDiskCache_dc6
-rw-r--r--    1 root     root        51227 Jan  9 08:29 root.030109.0829.ma
 
Old 01-09-2003, 09:34 AM   #71
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Ok...what the hell...
Tell me moses - which distro did you use? slackware?
With which system did you get maya to run properly - because
I'm going to download this and finish that STUPID mess! DAMNIT!
*really angry*
 
Old 01-09-2003, 10:17 AM   #72
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
NO! Don't give up! There is, I think, one little problem. This is
the problem:

Quote:
libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3
do this:
Code:
export LD_LIBRARY_PATH=/usr/aw/maya4.5/lib:/usr/aw/COM/lib
ldd /usr/aw/maya4.5/bin/maya.bin
If the above doesn't change to:
Code:
libstdc++-libc6.2-2.so.3 => /usr/aw/maya4.5/lib/libstdc++-libc6.2-2.so.3
then we know that this IS the problem, and can fix it.
Another, quick test is to move the maya lib from the end of
/etc/ld.so.conf to the beginning, add /usr/aw/COM/lib as the second
line, and rerun ldconfig.

Last edited by moses; 01-09-2003 at 10:18 AM.
 
Old 01-09-2003, 10:42 AM   #73
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Isn't there a way to do the ldconfig command as a normal user?
I can't log into root right now because I'm getting an important upload of a good friend of mine and sometimes it's really bad that I've got to log in as root...
If I use the su command and try ldconfig I just get
Code:
 ldconfig
bash: ldconfig: command not found
It can't be that there isn't another way, because everytime logging off, logging in... *sigh*
 
Old 01-09-2003, 10:51 AM   #74
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Can you not use:
Code:
su -
If you can only do "su", then run /sbin/ldconfig
 
Old 01-09-2003, 10:58 AM   #75
Faeroon
Member
 
Registered: Jan 2003
Location: Germany
Distribution: right now: Vector Linux4
Posts: 96

Original Poster
Rep: Reputation: 15
Ok, that worked Thx for the hint mo'
After all the error's still there....
Code:
/usr/aw/maya4.5/bin/maya.bin encountered a fatal error

Signal: 6 (Unknown Signal)
Attempting to save in
        /usr/tmp/root.030109.1743.ma
This seems to be IMPOSSIBLE to solve

My good friend told me that some things are DEFINITELY needed to run maya:
1.)libXm.so.2
Code:
locate libXm.so.2
/usr/X11R6/lib/libXm.so.2.1
/usr/X11R6/lib/libXm.so.2
/usr/aw/COM/lib/libXm.so.2
/usr/aw/COM/lib/libXm.so.2.1
/usr/aw/maya4.5/lib/libXm.so.2
/usr/aw/maya4.5/lib/libXm.so.2.1
/usr/aw/open_motif/X11R6/lib/libXm.so.2.1
and 2.) libGL.so.1
Code:
locate libGL.so.1
/usr/lib/libGL.so.1
/usr/lib/libGL.so.1.0.3123
/usr/X11R6/lib/xxx.libGL.so.1.2.RPMSAVE
/usr/src/redhat/BUILD/NVIDIA_GLX-1.0-3123/usr/lib/libGL.so.1.0.3123
Maybe we've to change something there? Just a thought...
Because while running ldconfig I still get:
Code:
/sbin/ldconfig
/sbin/ldconfig: /usr/aw/maya4.5/lib/libXm.so.2 is not a symbolic link

Last edited by Faeroon; 01-09-2003 at 11:02 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
squid stops due to signal 6 and signal 25 simplyrahul Linux - Software 3 05-28-2011 01:05 AM
Getting AP signal strength via C program ... toships Linux - Wireless Networking 5 01-07-2009 02:35 AM
program cpp0 got fatal signal 11 cellist Debian 2 10-22-2004 05:25 PM
Signal 6: Unknown Signal <=> Error with MAYA4.X under Linux SOLVED!!!! Faeroon Linux - Software 9 05-09-2003 01:57 PM
Signal handling in Multithreaded program souvik Programming 4 08-23-2002 07:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:21 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration