Sysctl: cannot stat /proc/sys/enable: No such file or directory sysctl

When attempting to use sysctl to enable or disable anything I get
sysctl: cannot stat /proc/sys/enable: No such file or directory
sysctl: cannot stat /proc/sys/wicd: No such file or directory
THIS HAPPENS ON BOTH MY DESKTOP AND LAPTOP
It happens regardless of what service I try to enable or disable
I checked the permissions/owner on both and it is...
Proc is dr-xr-xr-x root:root
and /proc/sys is dr-xr-xr-x, root:root
Any idea whats going on?
Google turned up nothing...
I'm sure I'm missing something simple...
Last edited by ShadowfoxXXX (2013-02-28 04:55:24)

ShadowfoxXXX wrote:
When attempting to use sysctl to enable or disable anything I get
sysctl: cannot stat /proc/sys/enable: No such file or directory
sysctl: cannot stat /proc/sys/wicd: No such file or directory
THIS HAPPENS ON BOTH MY DESKTOP AND LAPTOP
It happens regardless of what service I try to enable or disable
sysctl is used to modify kernel parameters. If you are trying to enable/disable/start/stop services, then you'll need to be running systemctl.
Cheers
Patrick

Similar Messages

  • /bin/cp: cannot stat 'a/b/c/* : No such file or directory error

    When I attempt the following
    String cmdCopy[] = {"cp'", "-r", "a/b/c/*", "."};
    Process p = Runtime.getRuntime().exec(cmdCopy);
    I get the following error
    /bin/cp: cannot stat 'a/b/c/* : No such file or directory

    Is there an a/b/c directory in the structure where you are starting your java program from?
    --John                                                                                                                                                                                                       

  • Cannot identify '/dev/video0': 2, No such file or directory

    hi! i have a cheap webcam that used to work perfectly on arch, but some update broke it because /dev/video no longer exists (i don't know which upgrade, it has been some months since i used it last time)
    when i try to run my webcam applications, it goes like that:
    [nbcjr@universo ~]$ sonic-snap
    Cannot identify '/dev/video0': 2, No such file or directory
    [nbcjr@universo ~]$ sudo ls /dev/
    adsp dvd hdb kmsg loop7 psaux ram2 snd ttyS2
    audio fb hdb1 legacy mapper ptmx ram3 sound ttyS3
    cd fb0 hdb2 log md pts ram4 stderr urandom
    cdrom fd hdb3 loop md0 ram0 ram5 stdin vc
    cdroms fd0 hdb4 loop0 mem ram1 ram6 stdout vcc
    cdrw fd0h1200 hdb5 loop1 misc ram10 ram7 tts zero
    console fd0u1440 hdc loop2 mixer ram11 ram8 tty
    core fd0u360 ide loop3 null ram12 ram9 tty1
    discs fd0u720 initctl loop4 nvidia0 ram13 random tty7
    disk floppy input loop5 nvidiactl ram14 rd ttyS0
    dsp full kmem loop6 port ram15 shm ttyS1
    thanks!

    That would have been the last kernal upgrade, wiped out my USB mouse which caused XWindows to crash, They had to change back to the UDEV system. I believe the maintainer for the devFS system quit but anyways it was taken out of the kernal.
    What I had to do was to change the configuration from /dev/mouse to /dev/input/mouse0, i beileve you can also do ln -s /dev/input/mouse0 /dev/mouse. Try looking in /dev/input/ for your camera.

  • [solved] /proc/acpi/thermal_zone/: No such file or directory

    i want to monitor my laptop temperature with conky but i get 
    Conky: scandir for /proc/acpi/thermal_zone/: No such file or directory
    does anyone know what i must install in order for it to work?
    Last edited by red-guy (2011-03-21 17:05:00)

    red-guy wrote:also, why do you even bother posting if it's not to help?
    Because :
    stlarch wrote:You are just expected to try to help yourself first. Then, when you've exhausted every effort ask. It's the Arch way. The wiki is your best friend.
    And also because as forum moderator, we have to keep the boards as clean as possible. For you the problem might be new, but for many users here, they have seen these types of threads many times which have also been answered over and over again and also documented in the wiki. The wiki is a resource that has been created by the collective efforts of the Arch users - present and past. Make use of it.
    As a general rule, if you have an issue, search the wiki, then the internet, then the forums for similar threads and if you still have problems then post a thread detailing what attempts you have made in order to fix the problem. That way, people don't give you options that you have already tried and know that they don't work.
    In addition, please go through the forum rules to familiarize yourself with the basic rules and policies of the Arch forums.

  • When i enter appstore its keep telling me "cannot connect to itunes store(No such file or directory) what should i do????

    when i enter appstore its keep telling me "cannot connect to itunes store(No such file or directory) what should i do????

    Hi mhmd.h,
    There was a very recent update to the entire Apple website. 
    If you are still unable to connect to the App Store from your iPhone, please post again.
    - Judy

  • [SOLVED] updating aur package "install: cannot stat ...: No such file"

    This is my first attempt at creating a new package so I decided to update the orphaned crtmpserver package and I'm getting an error where makepkg cannot locate a file...
    I'm test building the package in /var/abs/local/rtmpd directory which contains two files PKGBUILD and rtmpd.service.
    PKGBUILD:
    pkgname=rtmpd-svn
    pkgver=811
    pkgrel=1.1
    pkgdesc="High performance rtmp streaming server"
    arch=('i686' 'x86_64')
    url="http://www.rtmpd.com"
    license=('GPL')
    depends=('openssl')
    makedepends=('subversion' 'cmake' 'lua')
    provides=('crtmpserver')
    conflicts=('crtmpserver')
    _svntrunk='https://svn.rtmpd.com/crtmpserver/trunk'
    _svnmod='crtmpserver'
    _svnbuild='crtmpserver/crtmpserver'
    source=('rtmpd.service')
    md5sums=('SKIP')
    build() {
    msg "Starting SVN checkout"
    svn co --non-interactive --no-auth-cache --username anonymous --password "" https://svn.rtmpd.com/crtmpserver/trunk crtmpserver
    cd $_svnmod/builders/cmake
    sh cleanup.sh
    cmake -DCRTMPSERVER_INSTALL_PREFIX=/usr
    make
    package(){
    cd $_svnmod/builders/cmake
    make DESTDIR="$pkgdir" install
    install -dm644 "$pkgdir/etc/crtmpserver"
    mv "$pkgdir/usr/etc/crtmpserver.lua.sample" "$pkgdir/etc/crtmpserver"
    rm -rf "$pkgdir/usr/etc"
    install -D -m644 "rtmpd.service" "$pkgdir/usr/lib/systemd/system/rtmpd.service"
    Here's the output from running makepkg
    [ourhome@server rtmpd]$ makepkg > log
    ==> Making package: rtmpd-svn 811-1.1 (Sun Feb 8 14:42:27 PST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found rtmpd.service
    ==> Validating source files with md5sums...
    rtmpd.service ... Skipped
    ==> Extracting sources...
    ==> Starting build()...
    ==> Starting SVN checkout
    A crtmpserver/3rdparty
    A crtmpserver/3rdparty/lua-dev
    A crtmpserver/3rdparty/lua-dev/lundump.h
    A crtmpserver/3rdparty/lua-dev/lapi.h
    A crtmpserver/sources/androidapplestreaming/src/variantconnection.cpp
    A crtmpserver/sources/androidapplestreaming/src/jniwrapper.cpp
    Checked out revision 811.
    -- The C compiler identification is GNU 4.9.2
    -- The CXX compiler identification is GNU 4.9.2
    -- Check for working C compiler: /usr/bin/cc
    ==> Entering fakeroot environment...
    ==> Starting package()...
    Install the project...
    -- Install configuration: "Debug"
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/libtinyxml.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/libcommon.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/libthelib.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/flvplayback/libflvplayback.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/appselector/libappselector.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/samplefactory/libsamplefactory.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/vptests/libvptests.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/admin/libadmin.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/proxypublish/libproxypublish.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/lib/crtmpserver/applications/stresstest/libstresstest.so
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/sbin/crtmpserver
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/etc/crtmpserver.lua.sample
    -- Installing: /var/abs/local/rtmpd/pkg/rtmpd-svn/usr/man/man1/crtmpserver.1
    install: cannot stat ‘rtmpd.service’: No such file or directory
    ==> ERROR: A failure occurred in package().
    Aborting...
    and that's the mystery to me.  Makepkg finds rtmpd.service when it starts but cannot find it when it's time to package.
    Where's it looking ?
    Last edited by gillecaluim (2015-02-08 23:36:50)

    The service file is in $srcdir, not $_svnmod/builders/cmake.
    You're using an outdated PKGBUILD template too. The svn source should be included in the source array and not checked out manually during the build process.
    EDIT: since this repository requires authentication, perhaps the correct format won't work.
    Last edited by WorMzy (2015-02-08 23:07:59)

  • Pooladm: cannot enable pools: No such file or directory

    I'm having a problem enabling pools in Solaris 10. I used a core installation and manually installed the SUNWpool, SUNWpoolr, SUNWzoner, and SUNWzoneu packages.
    When I try to execute "pooladm -e" to enable pools I get the following error:
    pooladm: cannot enable pools: No such file or directory
    Also, when I enable the svc:/system/pools:default service it errors into maintenance state with the same error in the log file.
    I believe the problem is related to the non-existance of /dev/pool, but I'm not sure why it is not there.
    Here is the output from truss:
    bash-3.00# truss -f pooladm -e
    2753:   execve("/usr/sbin/pooladm", 0xFFBFFC8C, 0xFFBFFC98)  argc = 2
    2753:   resolvepath("/usr/lib/ld.so.1", "/lib/ld.so.1", 1023) = 12
    2753:   resolvepath("/usr/sbin/pooladm", "/usr/sbin/pooladm", 1023) = 17
    2753:   stat("/usr/sbin/pooladm", 0xFFBFFA68)           = 0
    2753:   open("/var/ld/ld.config", O_RDONLY)             Err#2 ENOENT
    2753:   stat("/lib/libpool.so.1", 0xFFBFF520)           Err#2 ENOENT
    2753:   stat("/usr/lib/libpool.so.1", 0xFFBFF520)       = 0
    2753:   resolvepath("/usr/lib/libpool.so.1", "/usr/lib/libpool.so.1", 1023) = 21
    2753:   open("/usr/lib/libpool.so.1", O_RDONLY)         = 3
    2753:   mmap(0x00010000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 172032, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF370000
    2753:   mmap(0xFF370000, 93041, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF370000
    2753:   mmap(0xFF398000, 7097, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 98304) = 0xFF398000
    2753:   munmap(0xFF388000, 65536)                       = 0
    2753:   memcntl(0xFF370000, 17100, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libc.so.1", 0xFFBFF520)              = 0
    2753:   resolvepath("/lib/libc.so.1", "/lib/libc.so.1", 1023) = 14
    2753:   open("/lib/libc.so.1", O_RDONLY)                = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 1015808, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF200000
    2753:   mmap(0xFF200000, 909301, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF200000
    2753:   mmap(0xFF2EE000, 32017, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 909312) = 0xFF2EE000
    2753:   mmap(0xFF2F6000, 5984, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xFF2F6000
    2753:   munmap(0xFF2DE000, 65536)                       = 0
    2753:   memcntl(0xFF200000, 144128, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libxml2.so.2", 0xFFBFF520)           Err#2 ENOENT
    2753:   stat("/usr/lib/libxml2.so.2", 0xFFBFF520)       = 0
    2753:   resolvepath("/usr/lib/libxml2.so.2", "/usr/lib/libxml2.so.2", 1023) = 21
    2753:   open("/usr/lib/libxml2.so.2", O_RDONLY)         = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 1540096, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF080000
    2753:   mmap(0xFF080000, 1397070, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF080000
    2753:   mmap(0xFF1E4000, 72885, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 1392640) = 0xFF1E4000
    2753:   mmap(0xFF1F6000, 2168, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xFF1F6000
    2753:   munmap(0xFF1D6000, 57344)                       = 0
    2753:   mmap(0x00000000, 8192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xFF360000
    2753:   memcntl(0xFF080000, 202876, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libscf.so.1", 0xFFBFF520)            = 0
    2753:   resolvepath("/lib/libscf.so.1", "/lib/libscf.so.1", 1023) = 16
    2753:   open("/lib/libscf.so.1", O_RDONLY)              = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 172032, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF330000
    2753:   mmap(0xFF330000, 97095, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF330000
    2753:   mmap(0xFF358000, 4934, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 98304) = 0xFF358000
    2753:   munmap(0xFF348000, 65536)                       = 0
    2753:   memcntl(0xFF330000, 20432, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libnvpair.so.1", 0xFFBFF520)         = 0
    2753:   resolvepath("/lib/libnvpair.so.1", "/lib/libnvpair.so.1", 1023) = 19
    2753:   open("/lib/libnvpair.so.1", O_RDONLY)           = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 98304, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF310000
    2753:   mmap(0xFF310000, 24206, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF310000
    2753:   mmap(0xFF326000, 1192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 24576) = 0xFF326000
    2753:   munmap(0xFF316000, 65536)                       = 0
    2753:   memcntl(0xFF310000, 7604, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libexacct.so.1", 0xFFBFF520)         Err#2 ENOENT
    2753:   stat("/usr/lib/libexacct.so.1", 0xFFBFF520)     = 0
    2753:   resolvepath("/usr/lib/libexacct.so.1", "/usr/lib/libexacct.so.1", 1023) = 23
    2753:   open("/usr/lib/libexacct.so.1", O_RDONLY)       = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 90112, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF060000
    2753:   mmap(0xFF060000, 15042, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF060000
    2753:   mmap(0xFF074000, 888, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 16384) = 0xFF074000
    2753:   munmap(0xFF064000, 65536)                       = 0
    2753:   memcntl(0xFF060000, 3568, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libpthread.so.1", 0xFFBFF520)        = 0
    2753:   resolvepath("/lib/libpthread.so.1", "/lib/libpthread.so.1", 1023) = 20
    2753:   open("/lib/libpthread.so.1", O_RDONLY)          = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00002000, 16384, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF3EC000
    2753:   mmap(0xFF3EC000, 12032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF3EC000
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libz.so.1", 0xFFBFF520)              Err#2 ENOENT
    2753:   stat("/usr/lib/libz.so.1", 0xFFBFF520)          = 0
    2753:   resolvepath("/usr/lib/libz.so.1", "/usr/lib/libz.so.1", 1023) = 18
    2753:   open("/usr/lib/libz.so.1", O_RDONLY)            = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 139264, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF030000
    2753:   mmap(0xFF030000, 69442, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF030000
    2753:   mmap(0xFF050000, 6012, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 65536) = 0xFF050000
    2753:   munmap(0xFF042000, 57344)                       = 0
    2753:   memcntl(0xFF030000, 5032, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libm.so.2", 0xFFBFF520)              = 0
    2753:   resolvepath("/lib/libm.so.2", "/lib/libm.so.2", 1023) = 14
    2753:   open("/lib/libm.so.2", O_RDONLY)                = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 786432, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEF00000
    2753:   mmap(0xFEF00000, 693647, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFEF00000
    2753:   mmap(0xFEFB8000, 28592, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 688128) = 0xFEFB8000
    2753:   munmap(0xFEFAA000, 57344)                       = 0
    2753:   memcntl(0xFEF00000, 33076, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libsocket.so.1", 0xFFBFF520)         = 0
    2753:   resolvepath("/lib/libsocket.so.1", "/lib/libsocket.so.1", 1023) = 19
    2753:   open("/lib/libsocket.so.1", O_RDONLY)           = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 122880, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFF000000
    2753:   mmap(0xFF000000, 44594, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFF000000
    2753:   mmap(0xFF01C000, 4277, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 49152) = 0xFF01C000
    2753:   munmap(0xFF00C000, 65536)                       = 0
    2753:   memcntl(0xFF000000, 14320, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libnsl.so.1", 0xFFBFF520)            = 0
    2753:   resolvepath("/lib/libnsl.so.1", "/lib/libnsl.so.1", 1023) = 16
    2753:   open("/lib/libnsl.so.1", O_RDONLY)              = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 729088, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEE00000
    2753:   mmap(0xFEE00000, 594942, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFEE00000
    2753:   mmap(0xFEEA2000, 33745, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 598016) = 0xFEEA2000
    2753:   mmap(0xFEEAC000, 23232, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xFEEAC000
    2753:   munmap(0xFEE92000, 65536)                       = 0
    2753:   mmap(0x00000000, 8192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xFF300000
    2753:   memcntl(0xFEE00000, 89508, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libdoor.so.1", 0xFFBFF520)           = 0
    2753:   resolvepath("/lib/libdoor.so.1", "/lib/libdoor.so.1", 1023) = 17
    2753:   open("/lib/libdoor.so.1", O_RDONLY)             = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 81920, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEFE0000
    2753:   mmap(0xFEFE0000, 3315, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFEFE0000
    2753:   mmap(0xFEFF2000, 600, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 8192) = 0xFEFF2000
    2753:   munmap(0xFEFE2000, 65536)                       = 0
    2753:   memcntl(0xFEFE0000, 2240, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libuutil.so.1", 0xFFBFF520)          = 0
    2753:   resolvepath("/lib/libuutil.so.1", "/lib/libuutil.so.1", 1023) = 18
    2753:   open("/lib/libuutil.so.1", O_RDONLY)            = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 106496, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEEE0000
    2753:   mmap(0xFEEE0000, 26032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFEEE0000
    2753:   mmap(0xFEEF8000, 1882, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 32768) = 0xFEEF8000
    2753:   munmap(0xFEEE8000, 65536)                       = 0
    2753:   memcntl(0xFEEE0000, 6652, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   stat("/lib/libgen.so.1", 0xFFBFF520)            = 0
    2753:   resolvepath("/lib/libgen.so.1", "/lib/libgen.so.1", 1023) = 16
    2753:   open("/lib/libgen.so.1", O_RDONLY)              = 3
    2753:   mmap(0xFF3A0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF3A0000
    2753:   mmap(0x00010000, 98304, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEEC0000
    2753:   mmap(0xFEEC0000, 22089, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xFEEC0000
    2753:   mmap(0xFEED6000, 2303, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 24576) = 0xFEED6000
    2753:   munmap(0xFEEC6000, 65536)                       = 0
    2753:   memcntl(0xFEEC0000, 5656, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    2753:   close(3)                                        = 0
    2753:   munmap(0xFF3A0000, 8192)                        = 0
    2753:   mmap(0x00010000, 24576, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xFEFD0000
    2753:   getcontext(0xFFBFF758)
    2753:   getrlimit(RLIMIT_STACK, 0xFFBFF738)             = 0
    2753:   getpid()                                        = 2753 [2752]
    2753:   setustack(0xFEFD2088)
    2753:   sigfillset(0xFF2F64D8)                          = 0
    2753:   stat("/platform/SUNW,Sun-Fire-T200/lib/libc_psr.so.1", 0xFFBFF1B0) = 0
    2753:   resolvepath("/platform/SUNW,Sun-Fire-T200/lib/libc_psr.so.1", "/platform/sun4v/lib/libc_psr.so.1", 1023) = 33
    2753:   open("/platform/SUNW,Sun-Fire-T200/lib/libc_psr.so.1", O_RDONLY) = 3
    2753:   mmap(0x00010000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xFEDF0000
    2753:   close(3)                                        = 0
    2753:   brk(0x00022448)                                 = 0
    2753:   brk(0x00024448)                                 = 0
    2753:   getprivimplinfo(0xFFBFF2E0, 2076)               = 0
    2753:   sysconfig(_CONFIG_NGROUPS)                      = 16
    2753:   zone_lookup("")                                 = 0
    2753:   zone_getattr(0, ZONE_ATTR_PRIVSET, 0xFEFD02C8, 12) = 12
    2753:   getppriv(PRIV_EFFECTIVE, {ffffffffffffffffffffffff}) = 0
    2753:   open64("/dev/pool", O_RDONLY)                   Err#2 ENOENT
    2753:   fstat64(2, 0xFFBFEC88)                          = 0
    pooladm2753:    write(2, " p o o l a d m", 7)                   = 7
    : 2753: write(2, " :  ", 2)                             = 2
    cannot enable pools2753:        write(2, " c a n n o t   e n a b l".., 19)      = 19
    : 2753: write(2, " :  ", 2)                             = 2
    No such file or directory2753:  write(2, " N o   s u c h   f i l e".., 25)      = 25
    2753:   write(2, "\n", 1)                               = 1
    2753:   _exit(1)

    All it took was running devfsadm and the errors were gone.

  • Cp: cannot stat `/DISCARD/': No such file or directory

    I am under process of applying HTTP server patches in our 11i environement, i am getting below error.
    *** Starting rebuild for libraries and executables
    rdbms/lib:ins_rdbms.mk:client_sharedlib,ioracle,utilities
    make -f ins_rdbms.mk client_sharedlib ioracle utilities
    /u01/oracle/ora/iAS/bin/genclntsh
    cp: cannot stat `/DISCARD/': No such file or directory

    Hi,
    cp: cannot stat `/DISCARD/': No such file or directoryThis error can be safely ignored.
    Note: 388254.1 - cp: cannot stat `/DISCARD/': No such file or directory
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388254.1
    Regards,
    Hussein

  • Tar: *: Cannot stat: No such file or directory

    everything except these lines is fine:
    ==> Removing info/doc files...
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .FILELIST file...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Generating .PKGINFO file...
    ==> Compressing package...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> ERROR: Failed to create package file.

    This indicates that $startdir/pkg is empty i.e. there are no files to add to the package tarball, so therefore no tarball is created. This in turn indicates that something is wrong with your PKGBUILD. If you want to post it here, people can have a look at it, and probably spot the error.

  • [SOLVED] Error : sys\stat.h: No such file or directory

    I get "...sys\stat.h: No such file or directory" error when compiling a simple C program. i have been searching for a while on web and see people writing "# pacman -S base-devel" i have that already and some more packages like glib ...
    These are the includes i am using :
    #include <stdio.h>
    #include <stdlib.h>
    #include <io.h>
    #include <fcntl.h>
    #include <sys\stat.h>
    // here is when i use the libraries sys/stats.h
    struct stat stbuf;
    stat(argv[2], &stbuf);
    int infSize = stbuf.size;
    This is the output of the command "gcc -o copy copy.c" :
    copy.c:3:16: error: io.h: No such file or directory
    copy.c:5:22: error: sys\stat.h: No such file or directory
    copy.c: In function 'main':
    copy.c:35: error: storage size of 'stbuf' isn't known
    Either i am missing any package needed or the gcc compiler is missing any lib directory. But i dont know which one is it.
    Any ideas are apreciated. Thanks you
    EDIT : The error was actually on #Include <io.h> , but i dunno why it conflicted with #include <sys\stat.h>.
    Anyway Problem Solved.
    Last edited by puzzled (2008-10-05 17:07:03)

    If you're not sure if you have the SDKs, can you confirm you have the files under /Developer? Check for /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/X11
    I don't remember having to do anything special to get gcc to find these files.
    From what I've noted, the usual trigger seems to be that the X11SDK.pkg package wasn't installed.
    Typical PATH export is:
    export PATH="/bin:/sbin:/usr/bin:/usr/sbin"
    If you're working with Fink, there's a call to the following needed:
    . /sw/bin/init.sh
    See http://finkproject.org/doc/users-guide/install.php
    But I'd first make sure the X11 SDK was installed. I'd guess that is missing.

  • Find: stat() error /proc/26354: No such file or directory

    Dear everyone,
    I am using Solaris 10u8 on 02 Sun Fire X4240 servers. I also installed Sun Cluster 3.2u3 and Oracle RAC 10gR2 for these 2 servers.
    When I tried to execute the find command, I receive the result I need. However, in the end of the output, I saw additional lines:
    +# find / -name * log -print | grep samba+
    +/var/svc/log/network-samba:default.log+
    +/var/samba/log+
    +/etc/svc/volatile/network-samba:default.log+
    +{color:#ff0000}find: stat() error /proc/26354: No such file or directory{color}+
    I also tried with less complex syntax but got the same result, for example:
    +# find / -name samba+
    +/var/spool/samba+
    +/var/samba+
    +/usr/sfw/lib/webmin/caldera/samba+
    +/usr/sfw/lib/webmin/mscstyle3/samba+
    +/usr/sfw/lib/webmin/samba+
    +/etc/init.d/samba+
    +/etc/webmin/samba+
    +/opt/SUNWscsmb/samba+
    +{color:#ff0000}find: stat() error /proc/24252: No such file or directory+
    +find: stat() error /proc/24345: No such file or directory{color}+
    I don't know why these unormal outputs appeared. Does anyone know what the problem is here ?
    Any advice from you is appreciated. Thanks for your help and please help me in this case.
    Thanks.
    HuyNQ.

    /proc is a virtual filesystem reperesenting running processes.
    By doing a a find from / your allowing find to pass though /proc.
    Those errors indicate processes that exited while the find was running. So the files suddenly disappeared.
    The errors are harmless. But if possible, try not to allow find to scan /proc.

  • Error 0(Native: listNetInterfaces:[3]) and error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory

    Hi Gurus,
    I'm trying to upgrade my test 9.2.0.8 rac to 10.1 rac. I cannot upgrade to 10.2 because of RAM limitations on my test RAC. 10.1 Clusterware software was successfully installed and the daemons are up with OCR and voting disk created. Then during the installation of RAC software at the end, root.sh needs to be run. When I run root.sh, it gave the error: while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory. I have libpthread.so.0 in /lib. I looked up on metalink and found Doc ID: 414163.1 . I unset the LD_ASSUME_KERNEL in vipca (unsetting of LD_ASSUME_KERNEL was not required in srvctl because there was no LD_ASSUME_KERNEL in srvctl). Then I tried to run vipca manually. I receive the following error: Error 0(Native: listNetInterfaces:[3]). I'm able to see xclock and xeyes. So its not a problem with x.
    OS: OEL5 32 bit
    oifcfg iflist
    eth0 192.168.2.0
    eth1 10.0.0.0
    oifcfg getif
    eth1 10.0.0.0 global cluster_interconnect
    eth1 10.1.1.0 global cluster_interconnect
    eth0 192.168.2.0 global public
    cat /etc/hosts
    192.168.2.3 sunny1pub.ezhome.com sunny1pub
    192.168.2.4 sunny2pub.ezhome.com sunny2pub
    192.168.2.33 sunny1vip.ezhome.com sunny1vip
    192.168.2.44 sunny2vip.ezhome.com sunny2vip
    10.1.1.1 sunny1prv.ezhome.com sunny1prv
    10.1.1.2 sunny2prv.ezhome.com sunny2prv
    My questions are:
    should ping on sunny1vip and sunny2vip be already working? As of now they dont work.
    if you look at oifcfg getif, I initially had eth1 10.0.0.0 global cluster_interconnect,eth0 192.168.2.0 global public then I created eth1 10.1.1.0 global cluster_interconnect with setif. Should it be 10.1.1.0 or 10.0.0.0. I looked at the subnet calculator and it says for 10.1.1.1, 10.0.0.0 is the subnet. In metalink they had used 10.10.10.0 and hence I used 10.1.1.0
    Any ideas on resolving this issue would be very much appreciated. I had been searching on oracle forums, google, metalink but all of them refer to DOC Id 414163.1 but it does n't seem to work. Please help. Thanks in advance.
    Edited by: ayyappa on Aug 20, 2009 10:13 AM
    Edited by: ayyappa on Aug 20, 2009 10:14 AM
    Edited by: ayyappa on Aug 20, 2009 10:15 AM

    a step forward towards resolution but i need some help from the gurus.
    root# cat /etc/hosts
    127.0.0.1 localhost.localdomain localhost
    ::1 localhost6.localdomain6 localhost6
    192.168.2.3 sunny1pub.ezhome.com sunny1pub
    192.168.2.4 sunny2pub.ezhome.com sunny2pub
    10.1.1.1 sunny1prv.ezhome.com sunny1prv
    10.1.1.2 sunny2prv.ezhome.com sunny2prv
    192.168.2.33 sunny1vip.ezhome.com sunny1vip
    192.168.2.44 sunny2vip.ezhome.com sunny2vip
    root# /u01/app/oracle/product/crs/bin/oifcfg iflist
    eth1 10.0.0.0
    eth0 192.168.2.0
    root# /u01/app/oracle/product/crs/bin/oifcfg getif
    eth1 10.0.0.0 global cluster_interconnect
    eth0 191.168.2.0 global public
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl config nodeapps -n sunny1pub -a
    ****ORACLE_HOME environment variable not set!
    ORACLE_HOME should be set to the main directory that contain oracle products. set and export ORACLE_HOME, then re-run.
    root# export ORACLE_BASE=/u01/app/oracle
    root# export ORACLE_HOME=/u01/app/oracle/product/10.1.0/Db_1
    root# export ORA_CRS_HOME=/u01/app/oracle/product/crs
    root# export PATH=$PATH:$ORACLE_HOME/bin
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl config nodeapps -n sunny1pub -a
    VIP does not exist.
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl add nodeapps -n sunny1pub -o $ORACLE_HOME -A 192.168.2.33/255.255.255.0
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl add nodeapps -n sunny2pub -o $ORACLE_HOME -A 192.168.2.44/255.255.255.0
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl config nodeapps -n sunny1pub -a
    VIP exists.: sunny1vip.ezhome.com/192.168.2.33/255.255.255.0
    root# /u01/app/oracle/product/10.1.0/Db_1/bin/srvctl config nodeapps -n sunny2pub -a
    VIP exists.: sunny2vip.ezhome.com/192.168.2.44/255.255.255.0
    Once I execute the add nodeapps command as root on node 1, I was able to get vip exists for config nodeapps on node 2. The above 2 statements resulted me with same values on both nodes. After this I executed root.sh on both nodes, I did not receive any errors. It said CRS resources are already configured.
    My questions to the gurus are as follows:
    Should ping on vip work? It does not work now.
    srvctl status nodeapps -n sunny1pub(same result for sunny2pub)
    VIP is not running on node: sunny1pub
    GSD is not running on node: sunny1pub
    PRKO-2016 : Error in checking condition of listener on node: sunny1pub
    ONS daemon is not running on node: sunny1pub
    [root@sunny1pub ~]# /u01/app/oracle/product/crs/bin/crs_stat -t
    Name Type Target State Host
    ora....pub.gsd application OFFLINE OFFLINE
    ora....pub.ons application OFFLINE OFFLINE
    ora....pub.vip application OFFLINE OFFLINE
    ora....pub.gsd application OFFLINE OFFLINE
    ora....pub.ons application OFFLINE OFFLINE
    ora....pub.vip application OFFLINE OFFLINE
    Will crs_stat and srvctl status nodeapps -n sunny1pub work after I upgrade my database or should they be working now already? I just choose to install 10.1.0.3 software and after running root.sh on both nodes, I clicked ok and then the End of installation screen appeared. Under installed products, I see 9i home, 10g home, crs home. Under 10g home and crs home, I see cluster nodes(sunny1pub and sunny2pub) So it looks like the 10g software is installed.

  • The .keystore file now cannot be found (No such file or directory)

    hi,
    so, I'm trying to sign a JAR file connected to an applet.
    I got to creating the keystore and had a "where do you want to store it? and what do you want to call it?" messages.
    I saved it as '.keystore' and was warned by the system that files beginning with '.' are invisible.
    I clicked ok (thinking the compiler should be able to 'see' it) and now whenever I try to sign anything the Terminal tells me:
    jarsigner error: java.lang.RuntimeException: keystore load: /Users/spikenigma/.keystore (No such file or directory)
    It doesn't matter how many other keystores I create, it looks for it in said directory and throws up an error.
    I've tried everything
    HELP

    Ok, I'll be as specific as possible and maybe you can tell where I am going wrong. I am on a Mac.
    1)
    I have a JAR file called csvjdbc.jar . It is a driver that enables offline SQL operations of sorts on tabular data.
    It works perfectly when loaded in the classpath both dynamically and at runtime.
    The contents of it's manifest file are, as expected:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.8.1
    Created-By: 1.6.0_22-b04 (Sun Microsystems Inc.)
    2)
    A test of csvjdbc.jar to check if it is already signed returns that it is not, as expected:
    (input)
    jarsigner -verify csvjdbc.jar
    (input)
    (output from terminal)
    jar is unsigned. (signatures missing or not parsable)
    (output from terminal)
    3)
    I want to sign the jar file so that I can load said JAR file in an applet I have not yet created.
    4)
    My steps are:
    (navigate to the folder via the terminal)
    cd desktop
    cd progamming
    cd java
    etc….
    (navigate to the folder via the terminal)
    (try to sign the jar)
    jarsigner csvjdbc.jar spikenigma
    (try to sign the jar)
    (response from terminal)
    Enter Passphrase for keystore:
    (response from terminal)
    (entered passphrase)
    ************** (censored)
    (entered passphrase)
    (response from terminal as previously mentioned)
    /Users/spikenigma/.keystore (No such file or directory)
    (response from terminal as previously mentioned)
    (Ok, let's create another keystore in a different location)
    keytool -genkey -alias signFiles -keystore thekeystore
    (Ok, let's create another keystore in a different location)
    (answer standard questions)
    Enter keystore password:
    Re-enter new password:
    What is your first and last name?
    What is the name of your organizational unit?
    What is the name of your organization?
    What is the name of your City or Locality?
    What is the name of your State or Province?
    What is the two-letter country code for this unit?
    (answer standard questions)
    (so, we try signing again)
    jarsigner csvjdbc.jar spikenigma
    (so, we try signing again)
    (enter the passphrase)
    Enter Passphrase for keystore:
    (enter the passphrase)
    (response from terminal as previously mentioned)
    jarsigner error: java.lang.RuntimeException: keystore load: /Users/spikenigma/.keystore (No such file or directory)
    (response from terminal as previously mentioned)

  • Files on XFS - cannot access, No such File or directory

    I've got a HTPC with 3 partitions formatted to XFS. The pc has MythTV as the backend and XBMC as the frontend, and really doesn't get used for much else. Lately I have been seeing faults with the XFS partitions, which are spread over two different HDDs. Everything else is ext4.
    $ sudo lsblk
    NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
    sda 8:0 0 55.9G 0 disk
    ├─sda1 8:1 0 94.1M 0 part /boot/grub
    ├─sda2 8:2 0 1.9G 0 part
    ├─sda3 8:3 0 1K 0 part
    ├─sda5 8:5 0 18G 0 part /
    ├─sda6 8:6 0 18G 0 part /mnt/ssdRootClone
    └─sda7 8:7 0 17.9G 0 part /mnt/archRootCinnamon
    sdc 8:32 0 1.4T 0 disk
    ├─sdc1 8:33 0 1K 0 part
    ├─sdc5 8:37 0 537.1G 0 part /home/david/Movies <----XFS
    ├─sdc6 8:38 0 634.8G 0 part /home/david/TVseries <---XFS
    └─sdc7 8:39 0 225.4G 0 part /home/david/Music
    sdb 8:16 0 698.7G 0 disk
    ├─sdb1 8:17 0 1K 0 part
    ├─sdb5 8:21 0 50G 0 part /mnt/archRootCinnamon/home
    ├─sdb6 8:22 0 598.6G 0 part /MythTV <---XFS
    ├─sdb7 8:23 0 30.2G 0 part /home
    └─sdb8 8:24 0 19.8G 0 part /home/david/Photos
    sr0 11:0 1 1024M 0 rom
    The kind of problem is (I've removed most of the output, but should be obvious what the problem is)
    $ ls -la /MythTV/Recordings
    ls: cannot access /MythTV/Recordings/Gandhi_02.02.2013.mkv: No such file or directory
    total 333404488
    drwxrwxr-x 2 mythtv users 28672 Jul 17 18:22 .
    drwxrwxr-x 14 mythtv users 4096 Apr 7 13:50 ..
    -rw-r--r-- 1 mythtv users 2087234697 Aug 9 2012 FrostNixon_08.07.2012.mkv
    -rw-rw-rw- 1 mythtv users 64744 Jan 16 14:39 FrostNixon_08.07.2012.mkv.png
    ?????????? ? ? ? ? ? Gandhi_02.02.2013.mkv
    -rw-rw-rw- 1 mythtv users 51156 Feb 3 18:22 Gandhi_02.02.2013.mkv.png
    I have unmounted these partitions, and ran
    sudo xfs_repair -v /dev/sdb6
    which seems to do the job, but it reappears again. I'm not sure how to reproduce the error as its happening on both disks. First time I noticed it was while using Thunar bulk rename tool. It refused to rename some files from lower case to uppercase first letter, then I saw the "???????". It may also happen after I delete a recording through XBMC, but not certain.
    So I installed smartmontools and did the short + conveyance test,
    $ sudo smartctl -H /dev/sdb
    [sudo] password for david:
    smartctl 6.1 2013-03-16 r3800 [x86_64-linux-3.0.85-1-lts-custom] (local build)
    Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    and
    $ sudo smartctl -l selftest /dev/sdb
    smartctl 6.1 2013-03-16 r3800 [x86_64-linux-3.0.85-1-lts-custom] (local build)
    Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF READ SMART DATA SECTION ===
    SMART Self-test log structure revision number 0
    Warning: ATA Specification requires self-test log structure revision number = 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Short offline Completed without error 00% 11770 -
    # 2 Conveyance offline Completed without error 00% 11770 -
    Looking for help here!

    If you suspect drive issues, run the long test. The short and conveyance tests are hit and miss. Also check for SMART errors (smartctl -l error <dev>). A drive can pass tests and be in a 'PASSED' state for 'SMART overall-health' even if errors occur regularly.
    Also, I seem to recall something like this happening on an XFS lv months ago, but I'm not sure. More recently, the drive containing that lv would occasionally fail to be seen on the bus. I swapped the cable and moved it to another port and haven't had any problems since. Assuming I'm not hallucinating about the former, the two issues may have been related.

  • Fatal error C1083: Cannot open type library file: '..\..\bin\TsAdpApi.tlb': No such file or directory

    Hi Folks:
    I am doing one Dll file for TestStand , and got an error : d:\teststand3.5\teststand 3.5\examples\modaldialogs\mfc\tsapivc.h(18) : fatal error C1083: Cannot open type library file: '..\..\bin\TsAdpApi.tlb': No such file or directory
    Could anyone help me out of that ??
    Thanks in advance !

    This type library for the adapter API is embedded in the teapi.dll. If you are using Visual Studio.NET, there is an attribute called tlbid that you can use with the #import directive in order to import that embedded library (see the MSDN documentation for more details). For example:
    #import tlbid(2)
    In VC++ 6.0, there is no way to import embedded type libraries. Therefore, you must use the attached type library file (.tlb) with the #import directive. For example:
    #import "TsAdpApi.tlb"

Maybe you are looking for

  • Problem with mail after upgrading to tiger...

    When I upgraded the OS in my PowerBook, all the mail messages in my in-box disappeared. Now, the only thing that shows up in each mail is the following, "The message from [Antonio john Doe <[email protected]>] concerning "Stuff" has not been download

  • App Lock for Windows 8

    Is there an app to lock applications and wifi for the windows 8 phones.   I need to be able to lock access to my wifi on my phone.   Android has an app called app lock that does this.  Sorry if this is the wrong forum to ask this ....

  • Bill Passing to be done on the rate which is valid on the Goods Receipt Dat

    Dear All,           My client has a very valid requirement which I am unable to provide. My client is basically a real estate company which is responsible for building. So the purchase cement, Paint etc. as raw material. The market rate of these raw

  • IPSec on Windows XP Embedded

    Is it possible to configure IPSec on a system running Windows XP Embedded OS? If yes where can I find material on doing so? Thanks, Bob

  • Safari 4.0.2 + OS X 10.5.8 + YouTube vids in HD = not working! :(

    I just updated today to 10.5.8 and have been experiencing strange issues viewing videos in HD on YouTube on the Safari browser. At first I thought this was a glitch in YT itself - perhaps the usual site maintenance. Not the case. I was annoyed seeing