Hard binding in solaris 10 with a SUN card X6768

Is there any firmware for a SUN card X6768 which allow to make "hard binding" between a target and a router. The only one driver that I have find run dynamically.

Hello,
Init 0 is very nice command which is gracefully shutting down all the services in the system including the OS. But the system will be powered on unless you execute powerdown from rsc.
In the case of mirroring metadisks entries can reduce a lot of file system related errors because those entries ("device to fsck") forces the filesystem check in those meta devices in every reboot.
Please have look on vfstab in my test server where i have mirrored disks.
bash-3.00# more /etc/vfstab
#device device mount FS fsck mount mount
#to mount to fsck point type pass at boot options
fd - /dev/fd fd - no -
/proc - /proc proc - no -
/dev/md/dsk/d1 - - swap - no -
/dev/md/dsk/d0 /dev/md/rdsk/d0 / ufs 1 no -
/dev/md/dsk/d2 /dev/md/rdsk/d2 /var ufs 1 no -
/devices - /devices devfs - no -
ctfs - /system/contract ctfs - no -
objfs - /system/object objfs - no -
swap - /tmp tmpfs - yes -
bash-3.00#
Please do "iostat -En" and check for the errors so that you will get a better understanding.
Thanks,
Sal.

Similar Messages

  • Configure Solaris 10 with ath wireless card

    So I'm in over my head on this one. I got a new laptop to tinker with, put OpenSolaris on it - integrated Broadcom wireless card didn't work, but my old DLink wireless card did. Yay. But I didn't like OpenSolaris. Too linux-y. So I went to something more familiar: Solaris 10. Only now the wireless card (neither of them, actually) doesn't work. I've googled and tried stuff for the past several hours and all I get is this:
    "ath: unable to resolve dependency, module misc/net80211"
    I've installed the packages. I've installed the 80211 for amd64 (yes, I'm running on an amd64). I've tried downloading the tarballs, extracting them and manually copying the kernel modules. Nothing. I've tried everything I know of (which isn't much, admittedly). I've tried update_drv, used /usr/X11/bin/scanpci, prtconf -pv to check out what all is connected, and everything says that there is an Atheros ethernet device on pci168c ... but I always get an "unable to attach device" error. And when I reboot, I'm bombarded with the aforementioned unable to resolve dependency" harassment.
    What stupid thing am I doing wrong?!
    Thanks in advance for your help -
    Caleb

    alan.pae wrote:
    Completely remove the driver
    pkgrm SUNWatheros
    init 6
    make sure that there is no ath file in the kernel directory and the same for the net80211 file.
    touch /reconfigure
    re-add the driver from some as yet undetermined media.
    init 6
    should work.
    alanGot me closer, but it didn't work. I ended up going with Solaris Express Developer edition, and it worked out of the box. I really appreciate your help, though.
    Do you have any recommended reading for delving into the depths of Solaris? I know enough to get myself into trouble and that's about it. I picked up the "Unix System Administration Handbook" (by Evi Nemeth, Garth Snyder, Scott Seebass and Trent Hein). I've learned a ton from there, which has really helped me get some of the basics, but it's not necessarily Solaris specific.
    Thanks again for your help!!!

  • Why I can binding my apple ID with my debit card?

    I wanna buy some apps but it just don't let me binding my debit card. Without card, how can I buy things.

    The only acceptable debit cards are the ones issued to you by your bank with the VISA or MasterCard logo that is tied to a demand deposit account (checking or savings) that you have in the bank. The bank has to be in the country where you reside, with a verifiable billing/statement address in that same country.
    Debit cards that you buy and fill in a local store are not acceptable.

  • On Sun fire v490 - Solaris 10 with Oracle 8.1.7.4 & Sybase 12.0

    Hi,
    We are going to upgrade our server with this configuration -
    Sun Fire V490     2 x 1.05 GHz UltraSPARC IV CPU
    8096MB RAM     2 x73GB local disk
    2x FC 2GB Sun/QLogic HBAs
    DAT72
    On one machine we will have Sun Solaris v10 with
    Oracle DB v8.1.7.4 & Second one will be Sun Solaris v10 with Sybase DB v12.0.0.6.
    Now our question is - Sun fire have Hyper-thread CPUs ��� will the O/S and databases (Oracle and Sybase) view the proposed system as a true 4 CPU platform? Will parameters used to tune the database such as Sybase max online engines still operate in the same manner as before?
    Our old machine configuration was - Sun E450     4x400MHz CPU     1024MB RAM     2 x18; 8x36GB disks

    Questions on Oracle and Sybase should be directed to a database forum, this forum is for Sun hardware support.
    Here is a link to a DB forum I look at from time to time:
    http://www.dbforums.com/index.php
    The topic of tuning Oracle or Solaris is way beyond the scope of this forum, I have attempted to go into it before but didn't get any feedback and I would only like to spend lots of time on it if I was being paid!!! On the memory side, keep in mind that Oracle 9i 64-bit can address a maximum of 2 ^ 64 ( 16777216 TB ) memory, prior to that the DBA had to define memory parameters in init.ora. To be honest the last time I worked with a Oracle 8 database I shut a HP K class server down permanently that had been migrated to Oracle 9i on Solaris by an Oracle consultant and I can't remember all the tuning trick etc.

  • Upgrade from solaris 8 to solaris 9 with sun solstice disksuite

    Hi,
    I have to upgrade the solaris 8 with Solstice disksuite to Solaris 9 OS. Please let me know the steps for the upgrade.
    Regards
    chesun

    Yep!
    See
    http://docs.sun.com/db/doc/806-5205/6je7vd5rf?a=view
    Lee

  • Solaris 9 in a Sun Fire V100 Box ServerSocket Bug

    I am running Solaris 9 in a Sun Fire V100
    I am having a problem openning Sockets where programs are written in Java.
    The program is written in Java with the ServerSocket class.
    I wrote a very simple class to test.
    The port is available of course I already verified it.
    I checked with the SecurityManager to verify this is not a
    security policy but I receive a null from the System.getSecurityManager
    which means there is no securityu manager installed.
    I have many other apllications that are able to open ports and listen, but Java seams
    to be having problem in Solaris 9. I have tried 5 different versions of Java. Last version
    I tried is jsdk 1.4.2_05.
    The same thing happens with Tomcat that crashes while
    trying to open a listening Socket.
    ServerSocket server;
    try
    server = new ServerSocket(8005,1024, InetAddress.getByName("127.0.0.1"));
    System.out.println("BINDING SUCCESFUL");
    catch(Exception e)
    System.out.println(e);
    System.exit(-1);
    while(true)
    try
    Socket clientSocket = server.accept();
    ClientHandler2 t = new ClientHandler2(clientSocket);
    t.start();
    catch(IOException e)
    System.err.println( e );
    Is this a well known bug...
    Can anyone be so kind to help me up with this terrible matter
    Thank you,
    Juanpablo Lajud

    Hi,How to set my link up in solaris 10 ?
    I dont know want happend to my machine solaris v440 it suddenly disconnected from n/w and finally i came to know that is a problem with NIC card..i din't find any light's glowing back side of the machine at NIC card.
    can any one help me in this pls how can i proceed furture for getting my NIC back?
    and i have excuted few commands
    #ndd -set /dev/ce instance 0
    #ndd -set /dev/ce adv_1000fdx_cap 1
    #ndd -set /dev/ce adv_autoneg_cap 0
    I have got dladm show-dev is
    ce0 link: unknown speed: 1000 Mbps duplex: full
    ce1 link: unknown speed: 0 Mbps duplex: unknown
    I dont understand that why my link is showing still unknown ...any help..

  • How to integrate a Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi Hisham,
    hishooooo wrote:
    Dear Gents,
    I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
    successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
    my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
    could you guide please?If you still have a copy of your SunMC media around, the same ["es-inst"|http://docs.sun.com/app/docs/doc/820-2215/command-line-1?l=en&a=view] program you use to install Solaris Agents should work on Linux as well. It autodetects OS type and will install Solaris packages or RPMs as appropriate.
    Regards,
    [email protected]
    http://www.HalcyonInc.com

  • How to integrate Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi
    From the Unix prompt enter oemapp console(for v9.x). If you are using earlier versions it is oemapp console (for starting the console) and oemapp dbastudio(for starting dba studio)
    For starting OMS enter: oemctrl start oms.
    Hope this helps
    sarath

  • Solaris 8 on a Sun Fire v480 (full vs half duplex)

    Hi All
    I've installled Solaris 8 on a Sun Fire v480.
    Now, when I boot I get the following (via serial A/LOM):
    {2} ok boot -r
    Boot device: /pci@9,600000/SUNW,qlc@2/fp@0,0/disk@w2100002037cfdf9d,0:a File and args: -r
    SunOS Release 5.8 Version Generic_108528-13 64-bit
    Copyright 1983-2001 Sun Microsystems, Inc. All rights reserved.
    configuring IPv4 interfaces: ce0.
    Hostname: abcdef
    WARNING: ce0: fault detected external to device; service degraded
    WARNING: ce0: xcvr addr:0x01 - link down
    Configuring /dev and /devices
    NOTICE: ce0: fault cleared external to device; service available
    NOTICE: ce0: xcvr addr:0x01 - link up 100 Mbps half duplex
    Configuring the /dev directory (compatibility devices)
    The system is coming up. Please wait.
    checking ufs filesystems
    /dev/rdsk/c1t0d0s5: is clean.
    /dev/rdsk/c1t0d0s7: is clean.
    starting rpc services: rpcbind done.
    Setting netmask of ce0 to 255.255.224.0
    Setting default IPv4 interface for multicast: add net 224.0/4: gateway abcdef
    syslog service starting.
    Print services started.
    volume management starting.
    The system is ready.
    abcdef console login:Dec 22 11:01:34 abcdef picld[70]: Device PS1 AC UNAVAILABLE
    Dec 22 11:01:35 abcdef picld[70]: FSP_GEN_FAULT_LED has turned ON: 1 failed device(s)
    abcdef console login:
    My question is what is going on. I see 2 things:
    1)
    NOTICE: ce0: fault cleared external to device; service available
    NOTICE: ce0: xcvr addr:0x01 - link up 100 Mbps half duplex
    what does the first line means and why half duplex and not full
    2) FSP_GEN_FAULT_LED has turned ON......
    hmmm, what does this mean ?
    Any suggestions to help me untangle those messages ?
    Thanks a lot in advance
    Luca

    Hi,How to set my link up in solaris 10 ?
    I dont know want happend to my machine solaris v440 it suddenly disconnected from n/w and finally i came to know that is a problem with NIC card..i din't find any light's glowing back side of the machine at NIC card.
    can any one help me in this pls how can i proceed furture for getting my NIC back?
    and i have excuted few commands
    #ndd -set /dev/ce instance 0
    #ndd -set /dev/ce adv_1000fdx_cap 1
    #ndd -set /dev/ce adv_autoneg_cap 0
    I have got dladm show-dev is
    ce0 link: unknown speed: 1000 Mbps duplex: full
    ce1 link: unknown speed: 0 Mbps duplex: unknown
    I dont understand that why my link is showing still unknown ...any help..

  • Solaris x86 with card on-board

    Hi all,
    I got a problem when installing Solaris9 x86 on ibm NetVista Machine.
    I have installed 2 other machines with separated network card sucessfully. I can configure to connecto to my LAN network.
    But when install on 2 ibm NetVista machines (which include onboard network card ), It is fail to be configured to connect to the network in both following cases:
    Case 1: I choose proper driver as Sun suggest for Intel VE Pro(R) 10/100 : iprb. And the Solaris detect successfully. I checked by "ifconfig -a" and saw the network card active on "iprb0".
    Next, I following correct instructions to configure the network card to connect to the LAN. But when i ping IP (9.187.186.18) to other computer in our same subnet LAN,
    The system display eg: "No anwer from 9.187.186.18"
    I run the "snoop" command to view broadcasr ARP in an other terminal. The snoop terminal displays ARP signal boradcasting from the Solaris. However, it can nerver get ARPs from other computer in LAN.
    Case 2: I add 3COM network driver to the solaris ( onboard card is no loger used ). The system can auto-detected this card and i can configure to connect to the network. The problem remain unchange.
    Is there any special in IBM Netvista machine need to be configure under Solaris x86 or any particular configuarion for on-board network card. ???
    Can any boy help me to solve this problem ??
    Best regards,
    Thang,
    Vietsoftware Developer

    However, it can nerver get ARPs from other computer in LAN.Are you perhaps running "snoop" on a box different from the one that you're trying to ping, and are you using
    a switched ethernet? In that case it would be OK if you only see the ARP broadcast, because the ping target
    box will send the ARP reply directly to the MAC of the requesting station (i.e. there's no ARP broadcast reply),
    and an ethernet switch will send the ARP reply directly to the port where the station with the given destination
    MAC is connected - no other port should see the reply.
    If you're trying to ping 9.187.186.18 from the new Solaris x86 box, try to run snoop on the 9.187.186.18
    system. 9.187.186.18 should see the ARP broadcast from the LAN, and the 9.187.186.18 box should list the
    ARP response it sends back to the LAN.
    Is there any special in IBM Netvista machine need to be configure under Solaris x86 or any particular
    configuarion for on-board network card. ???I guess the interrupt handler for the NIC is not working, so the Solaris x86 sees no incomming packets.
    See the "troubleshooting" section on the following page:
    http://solaris-x86.org/documents/tutorials/rtls.mhtml

  • How to create a full system image for Solaris 10 with ZFS

    Dear friend,
    could you please advice which way to create a full system image for Solaris 10 with ZFS is trusted and practically used?
    I'm searching the analogy like Norton Ghost or Acronis True Image but with ZFS support.
    I have x86 server Sun Netra X4270.
    Thanks in advance,
    Dina

    One more question Filip,
    is it correct, that I should make 2 separate backup for ispool and rpool?
    And is it important in which order to restore them from backup?
    bash-3.2# zpool list
    NAME    SIZE  ALLOC   FREE  CAP  HEALTH  ALTROOT
    ispool  136G  8.08G   128G   5%  ONLINE  -
    rpool   136G  44.1G  91.9G  32%  ONLINE  -
    bash-3.2# zfs list
    NAME                             USED  AVAIL  REFER  MOUNTPOINT
    ispool                          8.08G   126G    31K  /ispool
    ispool/iserver                  8.08G   126G  8.08G  /export/home/iserver
    rpool                           44.4G  89.5G  46.5K  /rpool
    rpool/ROOT                      39.1G  89.5G    31K  legacy
    rpool/ROOT/firstbe              39.1G  89.5G  14.1G  /
    rpool/ROOT/firstbe/export       20.1G  89.5G    32K  /export
    rpool/ROOT/firstbe/export/home  20.1G  89.5G  20.1G  /export/home
    rpool/ROOT/firstbe/opt           651M  89.5G   133M  /opt
    rpool/ROOT/firstbe/opt/SMAW      518M  89.5G   518M  /opt/SMAW
    rpool/ROOT/firstbe/usr          3.45G  89.5G  3.45G  /usr
    rpool/ROOT/firstbe/var           867M  89.5G   867M  /var
    rpool/dump                      1.00G  89.5G  1.00G  -
    rpool/swap                      4.25G  89.8G  4.00G  -
    Br,
    Dina

  • Compilation error on Solaris  2.6  using SUn Workshop 4.2(Rogue wave STL)

    Hello,
    I am facing a problem while using Rogue wave STLs on SOlaris 2.6 using Sun WOrkshop pro 4.2
    I am using Hash table implementation in the source. It throws the following error:
    ---->Error: "," expected instead of "const_iterator".
    I found it to be problem in a declaration of pair for the class.
    Before modification:
    typedef pair<mytmp::iterator,int> interator;
    Modified to:
    typedef mytmp::iterator myitr
    typedef pair<myitr,int> interator;
    Now the above compilation error seems to be gone. Can anyone please help me in understanding this problem???????????????
    Also after compiling few files now i am facing new problem. It throws signal 11 in iterator header file of std STL.
    Help m e !!!!!!!!!!
    For your reference options of compilation are:
    /opt/SUNWspro/bin/CC -c -O -mt -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199506L -D_REENTRANT -D__EXTENSION
    S__ -DRWSTD_MULTI_THREAD -D_RWBUILDSHARED -DRWSTD_COMPILE_INSTANTIATE -
    DRWSTD_SHARED_BUILD --I/opt/mylib/common/include/Std  mydemo.cc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I solved my own problem.
    It seems that the C++ XML Parser cannot be used with earlier versions of Oracle. My ORACLE_HOME env variable was pointing to v734. Once I changed that to point to the later version of v816, It was a smooth parse.
    null

  • Problem initializing libsapsecu.so on Solaris 10 with SAP NW2004s.

    We have developed a Java application that we intend to serve with SAP NetWeaver 7.0 (NW2004s). Our NetWeaver system is running on Solaris 10 with an Oracle DB. We want our application to be able to extract usernames from SAP Login Tickets and to do these we need the external libraries <b>libsapsecu.so</b> and <b>libsapssoext.so</b>. However, when our application tries to initialize these libraries an exception is thrown:
    Mysapinitialize failed. rc=14
    However, we are using Windows versions of these libraries on another server and they work.
    Does anybody have experience using these libraries on Solaris, and if so, has anybody had similar problems.
    Any help would be greatly appreciated.

    Standard C++ defines two versions of qsort (and also bsearch): one that takes a pointer to a C function, and one that takes a pointer to a C++ function.
    Recall that in standard C++, a pointer to a C function has a different type than a pointer to a C++ function. This issue is discussed at length in the C++ Migration Guide that comes with the compiler.
    The version of qsort that takes a pointer to a C function is the C version of qsort, and is in libc.so (the basic Solaris runtime library that all programs use).
    The version of qsort that takes a pointer to a C++ function is in the C++ runtime library libCrun.so that all C++ programs use.
    But because it took a while for Solaris headers to be updated to the C++ requirement, early versions of libCrun did not have the C++ version of qsort (or bsearch). If you get the latest C++ runtime library patch (SUNWlibC) for your system, your program should link. You can get patches here:
    http://developers.sun.com/prodtech/cc/downloads/patches/index.html
    Not only the system where you build the program needs updating, but every system that runs the program you build.
    Alternatively, you can declare the comparison function extern "C" so that the C version of qsort will be used.
    extern "C"
    int comp(const void pv1, const void pv2)
    But if the comparison function is in a namespace or is a class member function, you cannot usefully declare it extern "C".

  • HELP: WL 8.1 run unexpectedly slow on solaris 9 with low CPU utilization

    Hi All
    I have setup my app to run on WL8.1 + solaris 9 env + SUN mid-end series server.
    JVM was configured to use 3G RAM and there are still abundant RAM on the HW server.
    I tried out a use case, it took long time to get response (~ 2 minutes). But the
    CPU utilization has been always lower 20%. I have tried out the same test case
    on a wintel server with 500 RAM allocated to JVM, the response time is much quicker
    (less than 30 sec). I did the same on solaris 8 with 3G RAM and had used alternate
    threads library mode (changing LD_LIBRARY_PATH to include /usr/lib/lwp) which
    is the default mode adopted by solaris 9. The same use case responded much quicker
    and comparable to abovementioned test on wintel. Can anybody advice on how to
    tune WL 8.1 on solaris 9 so as to make it perform best ? Is there any special
    trick ?
    thank u very much for any advice in advance
    dso

    "Arjan Kramer" <[email protected]> wrote:
    >
    Hi dso,
    I'm running the same two configs and run into the same performance issues
    as you do. Please let me know if you any response on this!
    Regards,
    Arjan Kramer
    "dso" <[email protected]> wrote:
    Hi All
    I have setup my app to run on WL8.1 + solaris 9 env. JVM was configured
    to use
    3G RAM and there are still abundant RAM on the HW server. I tried out
    a use case,
    it took long time to get response (~ 2 minutes). But the CPU utilization
    has been
    always lower 20%. I have tried out the same test case on a wintel server
    with
    500 RAM allocated to JVM, the response time is much quicker (less than
    30 sec).
    I did the same on solaris 8 with 3G RAM and had used alternate threads
    library
    mode (changing LD_LIBRARY_PATH to include /usr/lib/lwp) which is the
    default mode
    adopted by solaris 9. The same use case responded much quicker and comparable
    to abovementioned test on wintel. Can anybody advice on how to tuneWL
    8.1 on
    solaris 9 so as to make it perform best ? Is there any special trick
    thank u very much for any advice in advance
    dso
    There could be many factors that add to performance degradation, database, OS,
    Network, app config etc, so without knowing too much its difficult to tell.
    Can you please supply the startup JAVA options used to set the heap etc. Having
    larger heao sizes is not always the best approach of building HA applications...the
    bigger they are, the bigger they fall. I'd suggest using many but smaller instances.
    Provide the heap info from NT also.
    BTW, when weblogic starts, can you tell me how much memory is being used in the
    console...ie the footprint of weblogic + your application.
    Many Thanks

  • Windows Phone - Cannot bind custom user controll with listview item source property

    It is Windows Phone 8.1 (runtime)
    I have some problem of binding custom user controll with list of data. I'll make it simple as I can.
    My problem is that somehow if I use DataBind {Binding Something} inside my custom controll it will not work.
    I need to transfer binded data (string) to custom controll.
    It is strange that if I do not use DataBind, it will work normally. Eg MyCustomControllParameter = "some string" (in my example 'BindingTextValue' property)
    Does anyone Know how to bind custom user controll with inside ListView with DataTemplate.
    Assume this:
    XAML Test-Main page
    <Grid  Background="Black">        <ListView x:Name="TestList" Background="#FFEAEAEA">                    <ListView.ItemTemplate>                <DataTemplate>                    <Grid Background="#FF727272">                        <local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>                    </Grid>                </DataTemplate>            </ListView.ItemTemplate>        </ListView>    </Grid>
    XAML Test-Main page c#
    public sealed partial class MainPage : Page    {        List<TTag> tags = new List<TTag>();        public MainPage()        {            this.InitializeComponent();            this.NavigationCacheMode = NavigationCacheMode.Required;        }        public class TTag        {            public string Tag { get; set; }        }        private void InitializeAppData()        {            TTag tag = new TTag() { Tag = "hello world" };            tags.Add(tag);            tags.Add(tag);            tags.Add(tag);            TestList.ItemsSource = tags;        }             protected override void OnNavigatedTo(NavigationEventArgs e)        {            InitializeAppData();        }           }
    User Control XAML:
      <UserControl    x:Class="CustomControllTest.TextBoxS"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:local="using:CustomControllTest"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d"    d:DesignHeight="300"    d:DesignWidth="400">      <Grid x:Name="LayoutRoot" Background="#FF4F4F4F"   >        <RichTextBlock x:Name="MyTestBlock">        </RichTextBlock>    </Grid></UserControl>
    User Control c#
    public TextBoxS()       {            this.InitializeComponent();            LayoutRoot.DataContext = this;        }        public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(                                         "BindingTextValue",                                         typeof(string),                                         typeof(TextBoxS),                                         new PropertyMetadata(default(string)));        public string BindingTextValue        {            get            {                return GetValue(BindingTextValueProperty) as string;            }            set            {                SetValue(BindingTextValueProperty, value);                //This method adds some custom logic into RichTextBlock, pointed correctly                SetupBox(value);            }        }
    Thanks for helping ;)

    If you use a built-in control rather than your custom control, does binding work? You should verify that first.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

Maybe you are looking for