13.10 - Samba mount error: Could not resolve address

13,918

the CIFS module only supports DNS names, not NetBIOS names (which I suspect gonzalo-pc is). Try replacing 'gonzalo-pc' in the CIFS mount command with the IP address of the machine.

Share:
13,918

Related videos on Youtube

parker
Author by

parker

Updated on September 18, 2022

Comments

  • parker
    parker over 1 year

    I have a code for an image that if you tap on it zooms out and if you tap on any where out side the box of the image it zooms back. is there I can control the zooming with a button such that one button zooms incrementally and the other zooms in decrementally. this is my attempt

    <!DOCTYPE html>
    <html >
    <head> 
      <style type="text/css">
        .zoomin img { height: 200px; width: 200px;
        -webkit-transition: all 2s ease;
        -moz-transition: all 2s ease;
        -ms-transition: all 2s ease;
        transition: all 2s ease; }
        .zoomin img:hover { width: 300px; height: 300px; } 
      </style>
    </head>
    <body>
      <div class="zoomin"> 
         <img src="download.jpg" title="All you need to know about CSS Transitions " /> 
      </div>
    </body>
    </html> 
    <button>plus</button>
    <button>minus</button>

    what better way could this be achieved

    • Nathaniel Flick
      Nathaniel Flick about 7 years
      It looks like your code works. What are you trying to change?
    • parker
      parker about 7 years
      I want if I click the plus button let it zoom out and if you click the minus button let it zoom in
    • Udhay Titus
      Udhay Titus about 7 years
      do you need like this jsfiddle.net/ndYdk/7
    • parker
      parker about 7 years
      where did u set the image
    • roberrrt-s
      roberrrt-s about 7 years
      Don't use :hover in this case, but rather :focus
  • parker
    parker about 7 years
    can it zoom out gradually by tapping on it incrementally and zoom in by tapping on it decrementally that is the plus and minus button. ur answer is cool