[solved] ip link set device up seems not working

Hi all,
It's my first Arch Linux installation, firstly I would to thanks the community, the wiki was really useful for me !
I'm trying to set up my wifi connection (rtl8723be device),
the driver seems to be OK
I've installed networkmanager
But I can't see any wifi device in networkmanager's GUI...
So I tried :
$ sudo ip link set wlp2s0 up
but wlp2s0 is not switching on :
3: wlp2s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
link/ether b0:10:41:df:66:23 brd ff:ff:ff:ff:ff:ff
What could I have missed ?
Last edited by natch (2015-04-02 09:29:39)

The command in question did work:
ip wrote:<NO-CARRIER,BROADCAST,MULTICAST,UP>
The bolded "up" in the angled brackets is what `ip link set` changes.  The DOWN after that indicates that even though the interface is up, there is no active connection.
As to what the problem is with network manager, I have no idea - I don't use it.  But the most likely suspect is almost always that there are multiple networking services competing.  So first, disable all networking services (check the output of `sysmtctl list-units`).  Then you can follow the remainer of the manual connection steps in the wiki.  If/when that is working, then we'll know your hardware and drivers are all set - then you can chose and configure a management service like networkmanager.

Similar Messages

  • My iCloud is set up and seems to work. However, a newly added contact does not sync from the Macbook to the iphone and iPad. What am I doing wrong?

    My iCloud is set up and seems to work. However, a newly added contact does not sync from the Macbook to the iphone and iPad. What am I doing wrong? Thanks, txstan

    Apparantly it is, On My Mac contacts don't appear in iCloud, anywhere.
    Put all your contacts on all of your devices in iCloud (assuming that's where you want them to be)
    Go to www.icloud.com, login and see what you actually have in the account.

  • I have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    i have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    Is it this:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Otherwise:
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • JSF : Dynamic link generated by commandLink does not work

    In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
    Thank you in advance.
    Regards
    Abdul
    <%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
    <%@ include file="/includes/g_common_include.jsp" %>
    <%@page import="java.util.Map"%>
    <%@page import="bh.com.cio.egov.EGOVConstants"%>
    <%@page import="javax.portlet.PortletSession"%>
    <%@page language="java"%>
    <%
         PortletSession ses = renderRequest.getPortletSession();
         Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
         renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
    %>
    <%@page import="bh.com.cio.egov.vo.EServiceVO"%>
    <f:view>
         <script type="text/javascript">          
              function blinkThis(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
              function switchColor(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
         </script>
    <f:loadBundle basename="nls.egovresource" var="nls"/>
    <hx:scriptCollector id="scriptCollector1">
         <h:form id="form2">     
    <f:verbatim>
              <div class="header-top">
                   <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
              </div>
              <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
                   <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                             <td> </td>
                             <td class="gray1" height="30px">
                                       <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                             </td>                
                        </tr>
                        <tr>
                             <td width="2">
                                  <div align="right">           
                                       <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                                  </div>
                             </td>
                             <td width="100%" >
                                  <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                       <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                       <%
                                            EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                            String action = null;
                                            int serviceId= -1;
                                            if(serviceObj!=null)
                                                 action = serviceObj.getServiceAction();
                                                 serviceId = serviceObj.getServiceId();
                                            if(action!=null && action.startsWith("$"))
                                       %>
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                      <tr>
                                                           <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                                <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                                <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                                 <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                                 <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                                 <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                            </h:commandLink>
                                                           </td>
                                                      </tr>                                             
                                                 </table>
                                                 <script type="text/javascript">
                                                      <c:if test="${service.serviceId eq '53'}">
                                                           blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                      </c:if>                                        
                                                      <c:if test="${service.serviceId eq '54'}">
                                                           blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '55'}">
                                                           blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                      </c:if>          
                                                      <c:if test="${service.serviceId eq '56'}">
                                                           blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '57'}">
                                                           blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '59'}">
                                                           blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '58'}">
                                                           blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '28'}">
                                                           blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '20'}">
                                                           blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '60'}">
                                                           blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                      </c:if>     
                                                 </script>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%}
                                       else if(action!=null)
                                       %>                                                                                               
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                       <%
                                       //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                       String urlC = "" + wpsURL;
                                       %>
                                       <c:set var="url" value="<%=urlC%>" scope="request"/>
                                  </wps:urlGeneration>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                           <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                           <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                           <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                                <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                           </hx:outputLinkEx>
                                                           </td>
                                                      </tr>                                                                                                                             
                                                 </table>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%
                                            %>               
                                       </c:forEach>                                             
                                  </table>
                             </td>
                        </tr>
                   </table>                                                                                                                                                                     
              </c:forEach>
              </br>
              <h:messages styleClass="messages" id="messages1"></h:messages>
              </f:verbatim>     
              </h:form>
         </hx:scriptCollector>
    </f:view>

    1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
    or:
    2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

  • [svn] 4323: Bug: LCDS-544 - Scenario where two components have seperate channel sets with overlapping channels not working .

    Revision: 4323
    Author: [email protected]
    Date: 2008-12-15 19:23:10 -0800 (Mon, 15 Dec 2008)
    Log Message:
    Bug: LCDS-544 - Scenario where two components have seperate channel sets with overlapping channels not working.
    QA: Yes
    Doc: No
    Checkintests Pass: Yes
    Details:
    * Hunting to a new channel within a channelset never triggered a disconnect from the previous channel(s). This isn't a problem in general, but does becomes a problem when an app defines two distinct channelsets containing at least one shared channel at the head of the list. In this case, the first channelset hunts past it and connects on a later channel. But when the second channelset hunts through (triggering a connect fault when it hits that initial shared channel that can't connect), the fault is processed by the first channelset as well (incorrectly).
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-544
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • Link for territory mgmt is not working

    Hi All,
    We have territory management configured for three custom attributes.
    Link for territory management is not working for territory assignment block on account overview screen.
    Any hint how we can solve this issue?
    Thanks and Regards,
    Gauri.

    How are you resetting the password?
    Resetting User Password in Lion, Mountain Lion & Mavericks
    Boot into your Recovery Partition by hold down the Command and R keys whilst booting.
    When the Recovery screen appears, go to the Utilities menu and open Terminal.
    In Terminal, type:
    resetpassword
    ...a small app will open and allow you to choose the user for whom you want to change the password. If you are the admin, be certain that you choose your admin user. Type in your new password twice and give yourself a good hint. Click OK (or Done or whatever) and reboot, enjoying the use of your new, hopefully memorable, password.
    Good luck,
    Clinton

  • Command Link in ADF table is not working/ PPR event not getting fired

    Hi All,
    I am having ADF Table, in that one column is with command link if click on command link, it is not navigating to corresponding page or method of a bean. If i give same command link out of the table it working fine, this issue i am facing is in IE9.
    if i use IE in compatibility mode the links works fine, even in IE8 version also.
    Browser: IE 9
    Jdev version: 11.1.1.5.0
    I tried all possible things, but nothing workout for me.
    showPopupBehavior not working in IE9 for af:table buttons (jdev11.1.1.5.0)
    Partial page rendering not working in ie9
    Command Link in ADF table is not working
    Thnks

    Hi,
    please file a bug if you have a customer support contract and provide a testcase
    Frank

  • The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RA

    The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RAW tool icon is grey, not active. I am going on a trip Tomorrow and I need Bridge to be working. It was working earlier.

    I never notied that icon before, and I've been using Bridge for 7 years.
    Usually, when you have no image previews for raw files, this means that your Camera Raw plug-in is older than your camera. People always come across this problem when they use a new camera with older software.
    To be sure, we need to know which camera you are using, and which version of Camera Raw. To save typing this out for the three-thousandth time, please follow this page which I wrote earlier:
    http://yphotography.co.uk/articles/get-adobe-camera-raw-acr-open-photos/
    This covers the subject, which is by far the most commonly asked question about opening raw files by a country mile.
    If everything checks out fine, let us know. If not, give us more information and we may be able to fix this for you.
    PS. Please just open one discussion per problem. There are three threads on this now. It makes it difficult to follow.

  • Usb composite device is an older usb device and might not work in USB 3

    I recently bought one Lenovo Yoga 2 11 laptop running Windows 8.1 (64 bit).
    When I try to connect my old Brother MFC-3240C printer using USB (2.0), it doesn’t work.
    Below are the steps performed:
    Connected the printer to USB 2.0 port on laptop (on the right side). Automatically installed the printer driver (no exclamation mark beside printer icon)
    When the printer didn’t print, I tried to use troubleshoot as below:
    Control Panel->Hardware and Sound->Devices and Printers->Right Click on Printer Icon->Troubleshoot.
    It came up with USB composite device is an older usb device and might not work in USB 3.0
    Removed the printer and re-installed the driver. It is all the same.
    Any help will be greatly appreciated.
    FYI – the same printer works fine with my older laptops running Windows 7.

    Already checked Brothers website for the printer drivre for Windows 8.1 (64 bit).
    It says ... The built-in driver is already included with Windows® Operating System or is available through Windows® update.
    So, installed the default driver for the printer that is available with Windows 8.1.
    Even connected the printer with USB 3.0 port on the laptop, but it is all the same.

  • Hi pls help me my iphone is forest i update but  after my iphone is  devices open is not working i click but sim card installed , attempting to activate this one coming pls help me answer me

    hi pls help me my iphone is forest i update but  after my iphone is  devices open is not working i click but sim card installed , attempting to activate this one coming pls help me answer me

    Sounds like your phone was hacked to use with your carrier.  Updating it has relocked the phone to it's original carrier.  You will not get the phone working again without a SIM from the original carrier.

  • Logical mapping seems not working

    Logical mapping in CF server admin seem not working.. I just
    created a logical mapping \images with a valid path in the server
    c:\images.
    If I try to access
    http://localhost:8500/images/test.gif..
    it shows the image..
    But if the same URL is embedded in the codlfusion page for a
    image. It does not show the image..
    ie.. I get a 'x' symbol for the image.. If I right click on
    the image and see the properties, it shows a URL.. Same URL, if I
    copy paste into IE browser, it shows the image.. Is there a
    problem??

    In the Coldfusion Administrator, put
    logical path = /images
    directory path = C:\CFusionMX7\wwwroot\images
    Then, this should show the picture
    <img src="/images/test.gif">
    as would
    <img src="
    http://127.0.0.1:8500/images/test.gif"
    >

  • Sudden monitor seems not working after change HD

    Hi Folks,
    after I change my original HD which is made by Hitachi to Seagate Momentus XT, my sudden monitor seems not working again, in perviusly if I take my MBP up from table with a strong accelerate, a sound like "ka-da" would be heard from HD because of the arm in HD reset to its initial position, but now with the new HD, this issue has never happened again.
    anybody know why? please do me a favor, thank you.

    http://www.seagate.com/ww/v/index.jsp?name=st95005620as-momentus-xt-sata-3gbs-4g b-500gb-drv&vgnextoid=8ba8576b12b38210VgnVCM1000001a48090aRCRD&locale=en-US
    1-800-SEAGATE (1-800-732-4283)

  • The fan of my macbook(white) seems not working its 000rpm, what will i do? a prompt says that i need to shutdown my laptop.. help please

    the fan of my macbook(white) seems not working its 000rpm, what will i do? a prompt says that i need to shutdown my laptop.. somebody help please huhuhu!

    so the fan might be broken? huhuhu ok i'll just take it to the service center

  • HT5622 I already had verify an alternate email address but it seems not working for changing my security question

    I already had verify an alternate email address but it seems not working for changing my security question
    <Email Edited by Host>

    An alternate email address is not the same thing as a rescue email address.
    If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • My notification tone when set to 'Silent" is not working even when setup on lolipop

    my notification tone when set to 'Silent" is not working even when setup .
     My notification tone when set to  'Silent" is not working even when setup . It still keeps ringout . This is highly disappointing

    Hello, Yes I have tested this with Android Lollipop and found that when the tone is set to silent within the BBM settings I do not receive any audible notification. Testing summary: Access the More menu - Settings - Tone dropdown and set Tone to BBM
    - Send a test message and an audible notification occursAccess the More menu - Settings - Tone dropdown and set Tone to Silent
    - Sent a test message and no audible notification occurs To allow us to assist further please follow the steps below to create a support ticket and submit logs. Once submitted someone will contact you to troubleshoot the issue.
    1) Browse to www.BBM.com/support/blackberry
    2) Locate the Need more help section is the bottom right of the page
    3) Select Contact us for additional assistance
    4) Complete the web form, provide as much detail as possible such as PINS involved and timestamps
    5) Select Submit to create the support ticketOnce the ticket has been submitted you will receive an email with your ticket number. This ticket number can then be used to submit logs. To collect logs use the following KB:
    KB35080 - "How to submit logs from BBM for Android, iPhone, and Windows Phone" - www.blackberry.com/btsc/kb35080 Thanks,
    Daniel

Maybe you are looking for

  • Providing external url for the fqdn for webfeed returns error in eventlog that shows internal url is being used - how to change to the external url?

    I've got my Rdweb accessible on both my internal and external network by using split dns locally to resolve the external url (remote.domain.com/rdweb) to resolve and everything works fine. However users don't want to use the rdweb interface (as it is

  • Minidisc stuck in MacBook Pro

    Yep, I did it, stuffed a minidisc in the Book's drive and now it's stuck inside. The Mac doesn't recognize it and won't spit it out. I tried rebooting a couple of times, heard the drive spin up, but the disk is still in there. Anyone have any ideas h

  • What's with this message?

    There are four of use who us the iMac we have at home. All four of us have iPods that we will connect to the computer using our own individual account. I often get the following message and I'm wondering why? Example: Yesterday I hooked up my iPod to

  • -AV files that are taking up over 75% of storage space

    I'm having this problem with my XSAN where users are digitzing in 10 uncompressed footage with files that will take up over half the remaining storage space. I'm talking one quicktime that will be anywhere between 3-5TB's. It is an intermittent probl

  • Download Lion again

    I can't use my software with Lion. I totally erased the hard drive and tried to install Snow Leopard. It won't work. Stuck with Lion, I guess - though I won't be able to use the machine for anything. How can I download Lion onto a thumb drive like pe