RPC Programming

I'm trying to run the ONC Netbula RPCGEN with the command "rpcgen file.xe the following error occurs:" cl.exe / C / EP / nologo - DRPC_XDR file.x - denied access. Preprocessing failed with an error. Please check environment settings. Try without CPP - Access Denied. "
Please help me, I've tried looking in books, thoroughly searched by google, I tried to contact the netbula by email (but do not respond). Anyway, I'm trying everything.
Thanks in advance

Your problem appears to have nothing to do with Studio C++, or with C++ programming in general, but with RPCGEN.
At a guess, it appears that file "file.x" either does not exist, or has the wrong permissions, or a needed directory path has wrong permissions.
For example, if file.x is supposed to be created by RPCGEN but the directory path where the file goes either is not accessible, or the final directory does not have write permission, creating that file would fail.
If tracking down those various possibilities doesn't help, you should look for an RPCGEN forum.

Similar Messages

  • Showmount: HOSTNAME: RPC: Program not registered

    I am new to solaris. I have solaris 10 installed in one of my machines. When i try to list the remote mounts using the command "showmount", i am getting the error "RPC:Program not registered" . I am not aware of which services i have to check/start to get this fixed. Can someone please help me on fixing this issue?

    I found the following reply in one another thread and i shared and unshared as suggested, now my problem appears to have been fixed. Can someone please explain what the following steps are doing?
    I ran the following which worked for me (not sure why).
    share -F nfs /mnt
    unshare /mnt
    Somehow that kicks RPC to work. "showmount" now works.

  • Showmount: new-host: RPC: Program not registered

    I always have problem shutting down my solaris system, anytime i issue the shutdown command i always get this error "showmount: new-host: RPC: Program not registered" and the system dows not shutdown instead reboots.
    bash-3.00$ su
    Password:
    # shutdown
    Shutdown started.    Wednesday, March  5, 2008 12:03:30 PM EST
    Broadcast Message from root (pts/3) on new-host Wed Mar  5 12:03:30...
    The system new-host will be shut down in 1 minute
    showmount: new-host: RPC: Program not registered
    Broadcast Message from root (pts/3) on new-host Wed Mar  5 12:04:00...
    The system new-host will be shut down in 30 seconds
    showmount: new-host: RPC: Program not registered
    Do you want to continue? (y or n):

    I think the shutdown command executes "showmount" as part of its execution process and if the nfs deamon is not running at that time, it produces this error. If you just execute "showmount", you'll see the same problem. Check this page:
    http://access1.sun.com/FAQSets/Solarisx86FAQs.html#14
    You should execute shutdown with some parameters:
    # shutdown -i0 -g0 -y
    -y : non-interactive shutdown
    -i0 : init state 0 (for shutdown)
    -g0 : grace period in seconds (0 for immediate, 60 by default)

  • I want to do rpc programming through java how can i do it?

    i want to do rpc programming through java how can i do it? any classes for it? i am not goin to use rmi its an assignment for us in syllabe help is strongly needed

    So, you are in a class. You are a student, your job is to learn something. Unless your instructor has failed horribly in his/her duty, then you are failing in your duty as a student.
    Your lack of even trying hurts me personally as a life-long student, I find your post ill-advised.
    Please, do not post to these forums anymore. Thank you.

  • RPC - Program number details

    Whats the purpose of the following RPC program numbers:
    100249
    300598
    805306368
    Why the above program numbers were not listed in /etc/rpc file?
    Is it dynamically assigned?
    These program numbers doesnt persist after rebooting the system. If any of the service is using this program number then why the service name is not getting populated in rpcinfo -s output?
    server1:/# rpcinfo -s
    program version(s) netid(s) service owner
    100000 2,3,4 udp,tcp,ticlts,ticotsord,ticots rpcbind superuser
    100099 4 ticotsord - superuser
    100169 1 ticots,ticotsord,ticlts - superuser
    100229 2,1 tcp metad superuser
    100068 5,4,3,2 ticlts - superuser
    100155 1 ticotsord smserverd superuser
    300598 1 ticots,ticotsord,ticlts,tcp,udp - superuser
    100249 1 ticots,ticotsord,ticlts,tcp,udp - superuser
    805306368 1 ticots,ticotsord,ticlts,tcp,udp - superuser
    Rgrds,
    Ram.

    what does rpc -p show?
    EDIT
    sorry rpcinfo -p show
    Edited by: bharner1980 on Oct 14, 2009 1:04 PM

  • Need deeper info about RPC paradigm

    Having scoured the Web for info about RPC, I find the same few discussions repeated widely, but certain things left unexplored. I therefore have particular questions that remain unanswered.
    1) RPC server behavior appears predicated around "connect-call-disconnect, connect-call-disconnect, ..." behavior on the part of the RPC client; that is, a connect-and-disconnect around every remote procedure call. I, on the other hand, need my clients to implement "connect-wait-call-wait-call-wait-call-...-disconnect" behavior; that is, to connect, REMAIN connected for an extended period of time across multiple procedure calls, and disconnect only when the client is ready to terminate all use of the server. It appears that svc_run() supports this, but I want to avoid surprises; is there any restriction on this usage of svc_run()? Can this paradigm be supported by appropriate use of the RPC library routines available for replacing svc_run() with my own code?
    2) The only "documentation" I have been able to find about how to write actual RPC programs dates back to 1992 and does not come from Sun. Virtually all of the routines appearing in its example programs are designated "obsolete" or "for backward compatibility" in their manpages on Solaris 8. Can you recommend/point to an instructional text that describes RPC programming as it would be done with "today's" interface?
    3) Probably the largest single obstacle to my organization's possible use of RPC in "real," critical applications, is RPC's continuing C-specificity. We write all our applications in C++, and mostly object-oriented C++ at that -- whereas RPC appears not to have advanced beyond the "C with global variables" architecture (with one possible exception, following). Code generated by RPCGEN (without the -C switch, I admit; I haven't gotten that far in my trial-and-error experiments, yet) requires extensive hand-editing in order to compile C++ code that uses it, or link successfully with compiled C++ code. This obstacle is severe enough to potentially render RPC an unacceptable solution for us.
    The possible exception I mentioned is that I found a webpage that discussed something called 'rpcc,' which appeared to be an object-oriented, C++ implementation of RPC. The page said this was available "on Sun machines," but I don't find it on MY Sun machines. Other searches do not turn up other references. Such a thing would be a godsend if it existed, and it would seem not to be so difficult for Sun's professional developers to create. So does it exist? If so, how can I get my hands on it?
    4) Different sources contradict each other as to the "semantics" of an RPC procedure call. Sun's ONC manual says flat-out that Sun RPC provides only "at least once" semantics -- but then, the manual takes the approach that one is using RPC in a "transport-independent" manner. Other references discuss the issue at greater length (hint, hint) and imply that any RPC implementation can provide "exactly once" semantics, providing that one specifically force it to use "a reliable transport such as TCP." It is not clear how much to infer, or disregard, in Sun's simple statement. I need to know FOR SURE whether Sun RPC can be made, forced, tricked, etc. into providing "exactly once" semantics. If so, is "use of TCP" sufficient? Or are other tricks needed? Please outline the necessary steps that might be needed in addition to using TCP.
    5) (Related to 4. Sun documentation contains language to the effect that Sun RPC provides "at least once" semantics because providing "exactly once" semantics "would be too difficult." However, a graduate student (at Syracuse U if I recall correctly) posts a research paper in which he describes an RPC facility, developed from scratch, that provides "exactly once" semantics. Apparently it's not THAT difficult, after all. The fact that it's "too difficult" for Sun does not exactly flatter the company. They may want to revisit this, and provide yet another RPC interface (in C++ while they're at it). I won't even charge a finder's fee. ;-) )
    Thanks in advance,
    Chris

    I agree fully.
    None of the example code applies to todays
    "real-world" applications. Im trying to implement
    multithreaded RPC on Solaris using rpcgen's -N
    "NewStyle", -A "Auto multithreaded" and -C "ANSI C"
    options but none of the examples anywhere show how to
    do this. Is their a better technology that everyone
    is using now that does a similar thing?I have an example that might help. It's a multi-threaded
    NIS server that's been running in production for several
    years. There are a few tricks in the source that might help.
    You can download the source with anonymous FTP at
    ftp.cc.umanitoba.ca. Look in the `src' directory for
    midas.tar.Z.

  • NFS client test program

    I'm trying to write a test program that behaves like an NFS client. The code uses the standard RPC calls to talk to the NFS server. It compiles and runs fine on Linux. On Solaris though I have a problem establishing an RPC client initially.
    The test program performs the following operations:
    1. Uses the portmapper service on the server to establish the remote port associated with the MOUNT service
    1. Creates a socket, sockfd.
    2. Uses bindresvport to bind a reserved port to the socket. The port number is in the reserved range (ie 600 to 1000ish).
    3. Connects this socket to the server
    3. Creates a struct sockadd_in with the appropriate address information for the server in addr
    4. Calls clnttcp_create
    The following code
    client = clnttcp_create(addr, <------- points at the server
    program, <-------- MOUNT RPC program number
    program_version, <--------- MOUNT RPC program version
    &sockfd, <------- connected socket using a reserved port on the local client
    0,
    0);
    if (client == NULL) {
    clnt_pcreateerror("clnttcp_create");
    returns "clnttcp_create: RPC: Remote system error - Address already in use".
    So it looks like port 688 (the local port selected say by bindresvport) is already in use ? But that's the whole point, I need to provide cnttcp_create() with a socket that already has a port bound to it.
    The same code runs fines on a Suse 11 client talking to Open Solaris 11 server. The same code run as a client on Solaris 11 fails with the above message when talking to either a Suse 11 server or a Solaris 11 server.
    Any suggestions what I'm doing wrong? Is this the right forum in which to ask?
    many thanks

    Make sure you have the sub-folder com, and then another sub-folder underneath it, mastertech and another sub-folder underneath this called sample. This is how packages are structured. They should be in your ep workspace directory structure if you're using Eclipse. In JBoss, you do not have to have the packages or any source code structure. Just jar your compiled code and save in JBoss's deploy folder which only accepts jar's, war's and ear's.

  • Unable to mount SMB shares under Mac OS 10.6.5

    Help -
    *I can no longer mount any shares from my Seagate BlackArmor NAS-110*. I bought the device (a 1TB network drive with CIFS (aka SMB), NFS, and FTP capabilities (no AFP connectivity)) in June of 2010, and it was working fine until appx (18 Nov, 2010). My computer - MacPro 2x2.26GHz Quad-Core Intel Xeon (early 2009) with 12GB of 1066MHz DDR3 RAM and Mac OS 10.6.5. My home network is running on Apple's TimeCapsule router (version 7.4.2).
    Note: Problems began after installation of recent updates:
    11/10/2010 - Mac OS 10.6.5
    11/12/2010 - iTunes 10.1
    11/13/2010 - iLife '11
    11/13/2010 - iPhoto 9.1
    11/18/2010 - Safari 5.0.3
    I'm not sure which, if any, of these updates may have intrudced new code which impacted my ability to mount SMB/CIFS shares, or whether this problem is isolated to the NAS-110 (actually, reading numerous posts about connectivity issues (during/over the last month or so) shows similar issues with other external drives, servers, NAS devices). The issues may not have materialized until I rebooted the NAS or the Mac. FYI: The only firewall I'm using is the Mac's built in firewall, and I've got File Sharing (AFP, SMB) set to Allow Incoming.
    What happens? I can't mount the SMB shares. I can see the device in my finder. It shows up as "BA-22B9C2", and I can see the sharepoint folders (in Finder): Download, Public, and wiki. When I attempt to SMB mount the shares (by any of the following methods: Double-Click in Finder, use 'Go->Connect to Server' or using the 'BlackArmor Discovery' application) The share/folder icon does not appear on my desktop. It creates a mount-point in the /Volumes directory, but no folder appears on the desktop. I can 'cd' into the sharepoint, and I can see that Spotlight has attempted to index the sharepoint (a .Spotlight-V100 directory was created), but I cannot see the 'Our Music, Our Pictures, or Our Videos' folders inside the Public share/directory. Successive attempts to mount a share, using Finder results in additional mount points in the /Volumes directory (Public-1, Public-2, Public-3, etc), but no folder icons on my desktop.
    FYI: The 'Connected servers' setting (under 'Shared') is enabled in my Finder's Prefences (along with Bonjour and Back to My Mac), so connected shares should appear on the desktop.
    Attempts to mount shares using the Connect to Server method (smb://10.0.1.2/Public, smb://admin:[email protected]/Public) also fail. No folder appears on desktop. The password/login authenticates (connecting to server), and a mount point is created in the /Volumes directory, but no folder appears on the desktop.
    Attempts to mount shares using the BlackArmor Discovery application generate similar results. Shares are visible in the tool. I click on the 'Public' share (which has permissions set to 'read, write, execute' for all), then click the 'Mount Share' button. I am presented with an authentication/login dialog. I log in as a Registered user (name: admin password: admin) Once again, a mount point is created in the /Volumes directory, but no folder appears on the desktop.
    Notably, whenever I attempt to mount a share, Spotlight indexes the share, but then it dies on my computer. Spotlight stops indexing my primary drive (where the OS is installed for my Mac). I have to stop the mds process using Activity Monitor. mds restarts automatically, and it starts indexing my primary drive again. While this may not be critical to my troubleshooting efforts, it has caused some considerable consternation on my part.
    I initially (back around the 18th of Nov, 2010) attempted troubleshooting with the assistance of Seagate technicians, but they quickly gave up on the email support, insisted I had to continue over the phone, which costs ~$14.00 per 'incident' and isn't convenient for my schedule.
    I've already attempted to update the firmware on the NAS (from 1000.0361 to 1000.1081), but that won't work. The NAS indicates a firmware update (1000.1081) is available, but it reports: "Firmware is not found". I had a friend try this update using his Windows machine (and my NAS), with the same results. He tried with a a Vista box and a Windows-NT running through emulation. I also tried to manually update. I downloaded the firmware image file "sg1000-1000.1081.img" from the Seagate downloads page, and attempted a manual update on the NAS. That failed with error "Failed to upload new firmware image to system." Once again, my friend tried to perform a manual update to the NAS. He downloaded a new copy of the file (from the Seagate downloads page), and he got the same error.
    The Seagate techs recommended that I update the firmware. I explained my problems updating the firmware, and I have asked the Seagate techs (via email) for a known good copy of the firmware update, but they do not answer my requests for such.
    The Seagate techs recommended that I restore the NAS with a factory reset. That caused plenty of problems, as their is no mac software to recover the factory reset 'key' from the device (need device MAC, and I presume some sort of hashing key stored on the device). So, I had to cart the drive over to my friends house, and have him attempt the restore. After some initial confusion regarding the MAC address, we were able to successfully restore the device to it's factory settings.
    Note: Before attempting the factory reset, my friend attempted to mount the SMB shares (on the NAS), using his Mac running 10.6.5. He encountered the same problems I encountered. When he tried using his Windows-NT (through VMFusionWare emulation) *he WAS able to mount the shares*. O.k. This must be a Mac OS issue, and not a Seagate NAS issue. - Now that the drive has been restored to factory defaults, it's pretty much empty (some folders, but no data). Default admin/admin username/password are in place.
    I'm not sure which, if any of my most recent software updates may have introduced changes to smb/samba, so I tried mounting the device using other services. It's capable of FTP and NFS as well as CIFS/SMB.
    I tried to create an NFS mount. I tried using two different methods (an application called NFS Manager and the 'Connect to Server' method built into the Mac. Both methods failed to establish a nfs mount to the server. No login errors were noted, but no mount points were created in /Volumes, and no folders appeared on the desktop.
    I tried to connect via FTP, that didn't work either (using an my Transmit client). I'm certainly striking out with this drive. My Mac will not mount the shares/folders. I tried FTP (to 10.0.1.2 as admin) using Transmit application (on port 21). Transmit reported "Could not retrieve file listing for “/Public”. Server said: OOPS: Child died Error -162: Port failed". Connectivity protocols of CIFS, NFS and FTP (on port 21) are enabled on the NAS and the /Public share.
    *When I attempt to connect using the Connect to Server method (See Apple's 'Go' menu in the Finder), I met with sucess!* ftp://10.0.1.2/Public connect attempt resulted in two pop ups. One of them said 'connecting', the other said something about "'NetAuthAgent' (I didn't write it down) wants permission to access your confidential keychain data" Presumably, this was the authentication request. I said 'Always allow'. A folder appeared on my desktop and a finder window opened showing the contents of that folder. Unfortunately, the share is 'read only'; even when I attempt to authenticate as a specific user.
    Note: I don't think FTP attempts to index the mounted shares.
    Prior to the factory reset, I was able to connect to the shares using the Seagate's 'Global Access' web based ftp service. Now I cannot connect through the Global Access page.
    Below are 'Console' entries and a listing of my /Volumes directory. These may help resolve the issue. I deleted some entries (those I felt were unrelated to the issue). I left in stuff that's been bothering me.
    _*Can anyone help me reestablish SMB connectivity with my NAS-110?*_
    - Robert Vaessen
    'Console: All messages'
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor4dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor4dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor2dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 mDNSResponder[23] Bad service type in .blackarmor2dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:15 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmorNASinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in .blackarmorNASinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Got netServiceBrowserWillSearch: event.
    12/16/10 00:11:16 BlackArmor Discovery[65267] got netServiceBrowser:didFindService:moreComing: event for <NSNetService 0x517a80> local. blackarmor1dinfo.udp. BA-22B9C2
    12/16/10 00:11:16 BlackArmor Discovery[65267] inserted new net service object for BA-22B9C2:
    "BA-22B9C2" = 1;
    12/16/10 00:11:16 mDNSResponder[23] Bad service type in BA-22B9C2.blackarmor1dinfo.udp.local. Application protocol name must be underscore plus 1-15 characters. See <http://www.dns-sd.org/ServiceTypes.html>
    12/16/10 00:11:16 BlackArmor Discovery[65267] Added 1 drive table objects to the servicesToInsertArray.
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Domain=[BA-22B9C2] OS=[Unix] Server=[Samba 3.0.34]
    12/16/10 00:11:17 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] tree connect failed: NTSTATUS_ACCESSDENIED
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.307 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.216 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.216 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.286 ms
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:11:31 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:11:34 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Download', from '//%20;[email protected]/Download', dead
    12/16/10 00:11:34 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:23:50 sandboxd[65414] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 00:23:50 sandboxd[65414] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.356 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.209 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.237 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.209 ms
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:31:25 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:31:39 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//%20;%[email protected]/Public', dead
    12/16/10 00:31:39 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.271 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.257 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.197 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.205 ms
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 00:47:36 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 00:48:41 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//%20;%[email protected]/Public', dead
    12/16/10 00:48:41 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:51:17 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//[email protected]/Public', dead
    12/16/10 00:51:18 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 00:53:51 sandboxd[65922] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 00:53:51 sandboxd[65922] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 00:54:24 cupsd[65930] sandbox cache error: database is locked
    12/16/10 01:00:56 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:01:06 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:02:02 _lp[66035] audit warning: expired /var/audit/20101215210444.20101215231614
    12/16/10 01:02:02 _lp[66034] audit warning: closefile /var/audit/20101216055051.20101216080202
    12/16/10 01:09:56 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public', from '//[email protected]/Public', dead
    12/16/10 01:09:56 mds[22627] (Error) DiskStore: Unable to create/find index location
    12/16/10 01:10:15 com.apple.Finder[208] NFS Portmap: RPC: Program not registered
    12/16/10 01:11:15 com.apple.Finder[208] NFS Portmap: RPC: Program not registered
    12/16/10 01:11:15 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:09 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:13 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:12:29 com.apple.Finder[208] mount_nfs: can't access /: Permission denied
    12/16/10 01:12:44 com.apple.Finder[208] mount_nfs: can't access /: Permission denied
    12/16/10 01:15:05 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[66174 ] No valid tickets, timing out
    12/16/10 01:15:53 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:54 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:15:56 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:17:05 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:19:13 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-1', from '//[email protected]/Public', dead
    12/16/10 01:22:38 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-2', from '//[email protected]/Public', dead
    12/16/10 01:23:21 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:25 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:25 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:26 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:27 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:27 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:23:50 sandboxd[66426] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 01:23:50 sandboxd[66426] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 01:24:03 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:47:13 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-3', from '//[email protected]/Public', dead
    12/16/10 01:47:13 mds[22627] (Normal) DiskStore: Creating index for /Volumes/Public-3
    12/16/10 01:50:38 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:51:45 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:51:56 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 01:52:03 authexec[67020] executing /usr/sbin/automount
    12/16/10 01:52:39 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:52:47 com.apple.launchd.peruser.505[150] (com.apple.AddressBook.abd) The following job tried to hijack the service "com.apple.AddressBook.abd" from this job: [0x0-0x1284283].com.apple.AddressBook.abd
    12/16/10 01:53:10 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 01:53:50 sandboxd[67042] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 01:53:50 sandboxd[67042] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    12/16/10 02:00:50 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 02:00:55 com.apple.Finder[208] mount_nfs: can't access /Public: Permission denied
    12/16/10 02:01:01 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-4', from '//[email protected]/Public', dead
    12/16/10 02:11:28 GrowlHelperApp[328] Transmit registered
    12/16/10 02:12:07 Firewall[101] Transmit is listening from 10.0.1.3:59918 proto=6
    12/16/10 02:12:17 Firewall[101] Transmit is listening from 10.0.1.3:59929 proto=6
    12/16/10 02:12:17 Firewall[101] Transmit is listening from 10.0.1.3:59930 proto=6
    12/16/10 02:12:25 Firewall[101] Transmit is listening from 10.0.1.3:59937 proto=6
    12/16/10 02:12:25 Firewall[101] Transmit is listening from 10.0.1.3:59938 proto=6
    12/16/10 02:12:33 servernotifyd[402] token expired
    12/16/10 02:12:35 Firewall[101] Transmit is listening from 10.0.1.3:59947 proto=6
    12/16/10 02:12:35 Firewall[101] Transmit is listening from 10.0.1.3:59948 proto=6
    12/16/10 02:12:45 Firewall[101] Transmit is listening from 10.0.1.3:59961 proto=6
    12/16/10 02:12:48 servernotifyd[402] Fetching new token
    12/16/10 02:12:48 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-5', from '//[email protected]/Public', dead
    12/16/10 02:12:49 servernotifyd[402] Completed token request
    12/16/10 02:12:49 servernotifyd[402] Subscription request completed
    12/16/10 02:15:20 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-6', from '//[email protected]/Public', dead
    12/16/10 02:15:20 mds[22627] (Normal) DiskStore: Creating index for /Volumes/Public-6
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] PING 10.0.1.2 (10.0.1.2)
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=0
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=0 ttl=64 time=0.347 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=1
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=1 ttl=64 time=0.264 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=2
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=2 ttl=64 time=0.232 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] *Pinging host 10.0.1.2: icmp_seq=3
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] Response from 10.0.1.2: icmp_seq=3 ttl=64 time=0.236 ms
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] --- 10.0.1.2 ping statistics ---
    12/16/10 02:19:28 [0x0-0x1266265].com.seagate.blackarmordiscovery[65267] 4 packets transmitted, 4 packets received, 0% packet loss
    12/16/10 02:20:39 KernelEventAgent[64] tid 00000000 type 'smbfs', mounted on '/Volumes/Public-7', from '//%20;%[email protected]/Public', dead
    12/16/10 03:07:28 Firewall[101] Transmit is listening from 10.0.1.3:60607 proto=6
    12/16/10 03:07:37 Firewall[101] Transmit is listening from 10.0.1.3:60611 proto=6
    12/16/10 03:07:37 Firewall[101] Transmit is listening from 10.0.1.3:60612 proto=6
    12/16/10 03:07:46 Firewall[101] Transmit is listening from 10.0.1.3:60614 proto=6
    12/16/10 03:07:46 Firewall[101] Transmit is listening from 10.0.1.3:60615 proto=6
    12/16/10 03:07:55 Firewall[101] Transmit is listening from 10.0.1.3:60619 proto=6
    12/16/10 03:07:55 Firewall[101] Transmit is listening from 10.0.1.3:60620 proto=6
    12/16/10 03:08:04 Firewall[101] Transmit is listening from 10.0.1.3:60622 proto=6
    12/16/10 03:11:26 Firewall[101] Transmit is listening from 10.0.1.3:60649 proto=6
    12/16/10 03:11:35 Firewall[101] Transmit is listening from 10.0.1.3:60651 proto=6
    12/16/10 03:11:35 Firewall[101] Transmit is listening from 10.0.1.3:60652 proto=6
    12/16/10 03:11:45 Firewall[101] Transmit is listening from 10.0.1.3:60654 proto=6
    12/16/10 03:11:45 Firewall[101] Transmit is listening from 10.0.1.3:60655 proto=6
    12/16/10 03:11:53 Firewall[101] Transmit is listening from 10.0.1.3:60661 proto=6
    12/16/10 03:11:53 Firewall[101] Transmit is listening from 10.0.1.3:60662 proto=6
    12/16/10 03:12:02 Firewall[101] Transmit is listening from 10.0.1.3:60667 proto=6
    12/16/10 03:12:02 sysadmin[69677] audit warning: expired /var/audit/20101215231614.20101216012742
    12/16/10 03:12:02 sysadmin[69675] audit warning: closefile /var/audit/20101216080202.20101216101202
    12/16/10 03:18:40 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 10 seconds
    12/16/10 03:18:48 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60739 proto=6
    12/16/10 03:18:48 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:43968 to port 60739 proto=6
    12/16/10 03:18:48 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 2 seconds
    12/16/10 03:18:48 com.apple.launchd.peruser.505[150] (com.apple.pbs) Throttling respawn: Will start in 2 seconds
    12/16/10 03:18:48 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60741 proto=6
    12/16/10 03:18:48 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:34565 to port 60741 proto=6
    12/16/10 03:19:05 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60745 proto=6
    12/16/10 03:19:05 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:36662 to port 60745 proto=6
    12/16/10 03:21:59 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60785 proto=6
    12/16/10 03:21:59 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:49839 to port 60785 proto=6
    12/16/10 03:21:59 Firewall[101] ftpfs_agent is listening from 10.0.1.3:60787 proto=6
    12/16/10 03:21:59 Firewall[101] Allow ftpfs_agent connecting from 10.0.1.2:47180 to port 60787 proto=6
    12/16/10 03:23:51 sandboxd[70960] awacsd(48) deny file-read-metadata /Library/Preferences/com.apple.security.plist
    12/16/10 03:23:51 sandboxd[70960] awacsd(48) deny file-read-data /Library/Preferences/com.apple.security.plist
    'Cosole: samba log.nmbd' (Same entry repeated numerous times)
    [2010/12/16 04:22:10, 1, pid=118] /SourceCache/samba/samba-235.5/samba/source/nmbd/nmbdincomingdgrams.c:process_resetbrowser(735)
    processresetbrowser: received diagnostic browser reset request from BA-22B9C2<00> IP 10.0.1.2 state=0x2
    'Console: samba log.sndb' (note the dates)
    [2010/11/11 18:33:43, 0] /SourceCache/samba/samba-235.4/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/11 18:33:43, 0, pid=90063] /SourceCache/samba/samba-235.4/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/11 18:33:43, 0, pid=90063] /SourceCache/samba/samba-235.4/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/24 04:11:15, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/24 04:11:15, 0, pid=1507] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/24 04:11:15, 0, pid=1507] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/24 10:47:01, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/24 10:47:02, 0, pid=1339] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/24 10:47:02, 0, pid=1339] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/11/29 10:48:44, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/11/29 10:48:44, 0, pid=43299] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/11/29 10:48:44, 0, pid=43299] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:29:58, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/12/08 12:29:58, 0, pid=7246] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:29:58, 0, pid=7246] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    [2010/12/08 12:30:04, 0, pid=7248] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:04, 0, pid=7248] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:06, 0, pid=7252] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/08 12:30:06, 0, pid=7252] /SourceCache/samba/samba-235.5/samba/source/passdb/pdbodsam.c:odssamgetsampwnam(1576)
    opendirectorysamsearchname gave -14136 [eDSRecordNotFound]: no dsRecTypeStandard:Users record for account 'admin'
    [2010/12/09 09:59:02, 0] /SourceCache/samba/samba-235.5/samba/source/smbd/server.c:main(925)
    smbd version 3.0.28a-apple started.
    Copyright Andrew Tridgell and the Samba Team 1992-2008
    [2010/12/09 09:59:03, 0, pid=19816] /SourceCache/samba/samba-235.5/samba/source/lib/opendirectory.c:opendirectoryfill_domain_sidcache(1985)
    opendirectorysamsearchname[/Config/CIFSServer] gave -14136 [eDSRecordNotFound]
    [2010/12/09 09:59:03, 0, pid=19816] /SourceCache/samba/samba-235.5/samba/source/passdb/secrets.c:secretsfetch_domainsid(150)
    secretsfetch_domain_sid:opendirectory_query_domainsid gave -14136 [eDSRecordNotFound]
    'Listing of the /Volumes directory'
    drwxrwxrwt@ 20 root admin 680 Dec 16 03:29 .
    drwxrwxr-x 44 root admin 1564 Nov 27 12:19 ..
    drwxrwxr-x 44 root admin 1564 Nov 27 12:19 Clone
    lrwxr-xr-x 1 root admin 1 Dec 8 04:35 Macintosh HD -> /
    drwx------ 1 rvaessen rvaessen 16384 Jan 1 1980 NO NAME
    dr-xr-xr-x 2 root rvaessen 1 Dec 16 01:15 Public
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:19 Public-1
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-10
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:22 Public-2
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 01:47 Public-3
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:01 Public-4
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:12 Public-5
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:15 Public-6
    drwxr-xr-x+ 3 rvaessen admin 102 Dec 16 02:20 Public-7
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-8
    dr-xr-xr-x 1 rvaessen rvaessen 512 Dec 16 03:30 Public-9
    drwxr-xr-x@ 17 rvaessen rvaessen 646 Nov 11 18:12 Robert Vaessen’s iPod
    drwxrwxr-x 15 sysadmin staff 578 Nov 6 2009 Time Machine Prime
    drwxrwxrwx 1 rvaessen rvaessen 4096 Dec 7 17:31 nuvi
    drwx------ 1 rvaessen rvaessen 2048 Aug 16 14:52 rvaessen

    O.k. Thanks for the clarification. I poked around in my TimeCapsule router's settings (TimeCapsule is an Apple Airport Extreme router with attached hard drive for wireless backup/storage). Unfortunately, it doesn't look like I can disable multicasting with the TimeCapsule. I can change the multicasting 'rate'. Settings are Low, Medium, High. It's currently set to Low.
    I did a few web searches, and found an Apple.com article: <http://support.apple.com/kb/HT3789?viewlocale=en_US> which explained how to disable Bonjour Service Advertisements. I believe this is the same thing as 'Multicasting'. The process is a modification of "/System/Library/LaunchDaemons/com.apple.mDNSResponder.plist", and a restart of the Mac is required afterwards.
    I'm a bit concerned that disabling multicasting will interfere with my AppleTVs and iTunes music sharing, but I may try it next time I'm up for a computer workout. This task will require editing of system preference files, could require multiple restarts, might interfere with my AppleTVs, could interfere with my iTunes file sharing, doesn't have a documented relationship to my problem.
    This is way to difficult for something that should just work. Did you say you had read something about a relationship between this bonjour multicasting and smb connectivity? If it was online could you post the link?
    I'm currently able to connect to the drive using NFS, but I have to manually configure that connection each time I reboot (can't get the 'Disk Utility' configured to do it automatically). While it's working with NFS, it's not my preferred connect method (for various reasons).

  • Mounting a Solaris x86 CD/DVD from a remote Windows CD/DVD-ROM drive

    Greetings, all.
    Is it possible to mount a remote Windows CD/DVD-ROM drive? I have the Solaris 10x86 Companion Software DVD sitting in a CD/DVD-ROM drive that's installed on a Windows server on my network. It is shared-out (F:) and the two servers can ping each other. I've also confirmed the NFS services/daemons are running on the Solaris x86 machine. I've tried the following variations but, all have failed to produce successful results:
    # mount -F nfs x.x.x.x:/f /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F hsfs x.x.x.x:/f /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f
    # mount -F hsfs x.x.x.x:/F /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F
    [FYI: S10_106_SOFTWARE is the DVD's label as reported by Windows Explorer.]
    # mount -F hsfs x.x.x.x:/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/S10_106_SOFTWARE
    # mount -F hsfs x.x.x.x:/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/s10_106_software
    # mount -F nfs x.x.x.x:/S10_106_SOFTWARE /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F nfs x.x.x.x:/s10_106_software /mnt
    nfs mount: x.x.x.x: : RPC: Program not registered
    nfs mount: retrying: /mnt
    # mount -F hsfs x.x.x.x:/f/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f/s10_106_software
    # mount -F hsfs x.x.x.x:/F/s10_106_software /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F/s10_106_software
    # mount -F hsfs x.x.x.x:/f/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/f/S10_106_SOFTWARE
    # mount -F hsfs x.x.x.x:/F/S10_106_SOFTWARE /mnt
    mount: No such device
    mount: cannot mount x.x.x.x:/F/S10_106_SOFTWARE
    I've also tried mounting it at bootup by adding the appropriate entry in the /etc/vfstab file but, this does not work as well. I've tried Google'ing for an answer to my issue but, I haven't been able to find anything that applies directly to what I'm reporting. It's usually chatter about mounting from one UNIX server to another. Any advice from the community would be greatly appreciated.

    After three weeks, you deserve a reply. Windoze does
    not natively support NFS.Also deserves a decent answer...
    There are two ways to do this:
    Install Microsoft's free "Windows Services for UNIX," which includes a Windows NFS server; or
    Install the 'sharity' package (google for it); it provides Solaris systems the ability to mount Windows shares

  • Problems Setting up NFS

    Hi.
    I've been having problems setting up NFS on a LAN at home.  I've read through all the Arch NFS-related threads and looked at (and tried some of) the suggestions, but without success.
    What I'm trying to do is set up an NFS share on a wireless laptop to copy one user's files from the laptop to a wired workstation.  The laptop is running Libranet 2.8.1. The workstation is running Arch Linux with the most up-to-date (as of today) software, including NFS.
    I have the portmap, nfslock, and nfsd daemons running via rc.conf, set to run in that order.
    I've re-installed nfs-utils and set up hosts.deny as follows:
    # /etc/hosts.deny
    ALL: ALL
    # End of file
    and hosts.allow as follows:
    # /etc/hosts.allow
    ALL: 192.168.0.0/255.255.255.0
    ALL: LOCAL
    # End of file
    In other words, I want to allow access on the machine to anything running locally or on the LAN.
    I have the shared directories successfully exported from the laptop (192.168.0.3), but I have not been able to mount the exported directories on the workstation (192.168.0.2).
    The mount command I'm using at the workstation:
    mount -t nfs -o rsize=8192,wsize=8192 192.168.0.3:/exports /exports
    There is an /exports directory on both machines at root with root permissions. There is an /etc/exports file on the NFS server machine that gives asynchronous read/write permissions to 192.168.0.2 for the /exports directory.
    I receive the following message:
    mount: RPC: Program not registered
    This appears to be a hosts.allow/hosts.deny type problem, but I can't figure out what I need to do to make RPC work properly.
    Some additional information, just in case it's helpful:
    This is the result if running rpcinfo:
       program vers proto   port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100024    1   udp  32790  status
        100024    1   tcp  32835  status
        100003    2   udp   2049  nfs
        100003    3   udp   2049  nfs
        100003    4   udp   2049  nfs
        100003    2   tcp   2049  nfs
        100003    3   tcp   2049  nfs
        100003    4   tcp   2049  nfs
        100021    1   udp  32801  nlockmgr
        100021    3   udp  32801  nlockmgr
        100021    4   udp  32801  nlockmgr
        100021    1   tcp  32849  nlockmgr
        100021    3   tcp  32849  nlockmgr
        100021    4   tcp  32849  nlockmgr
        100005    3   udp    623  mountd
        100005    3   tcp    626  mountd
    Running ps shows that the following processes are running:
    portmap
    rpc.statd
    nfsd
    lockd
    rpciod
    rpc.mountd
    Thanks for any help here!
    Regards,
    Win

    Hi ravster.
    Thanks for the suggestions. I had read the Arch NFS HowTo and did as you suggested get rcpinfo for the server machine. The Libranet NFS server is configured rather different since the NFS daemons are built into the default kernel.
    Since I needed to complete the transfer immediately, I gave up for now trying to set up NFS and used netcat (!) instead to transfer the files from the Libranet laptop to the Arch workstation. The laptop will be converted to Arch Linux soon so I think I'll be able to clear things up soon.  I haven't had any problems setting up NFS with homogeneous (i.e., all Arch or all Libranet) computer combinations.
    Thanks again.
    Win

  • Any ideas on getting CDM to work in non-global zones ?

    I'm trying to find a way to use SGD in a Solaris containers enviroment. For the most part this works great except I can not get the client drive mapping to work. This is due to the fact that nonglobal zones are unable to be nfs servers however I see in the client.prf file I can add a different host to the config as the nfs server. has anyone tried this and gotten it too work ?
    when I try I am able to physically mount the share but if i let SGD do it I get :
    nfs mount: localhost: : RPC: Program not registered
    nfs mount: retrying: /smb
    any thoughts ?

    Hi tonys60181,
    Could you please let me know what version of Adobe Acrobat are you using.
    What all drawing tools are you unable to access?
    Is this issue specific to one PDF file or all?
    What exactly happens when you try to use any drawing markup?
    Please let me know.
    Regards,
    Anubha

  • Afraid of system being compromised - newbie in "security"

    Hello,
    PART 1:
    There are two computers. Computer A uses openSuse and it is usually used for common tasks (not risk at all), suddenly, one day some "bookmarks" from Mozilla Firefox were modified but not by the legitimate users. The firewall rules were for the Eth0 (unique interface) in External zone, and the router is connected directly to the DSL line (no other computers in LAN). So, only legitimate users on one computer, they know how to change bookmarks, and they are pretty sure they didn't modified them.
    I extract also here the iptables -L rules.
    userA@computerA:~> sudo /usr/sbin/iptables -L
    Chain INPUT (policy DROP)
    target prot opt source destination
    ACCEPT all -- anywhere anywhere
    ACCEPT all -- anywhere anywhere ctstate ESTABLISHED
    ACCEPT icmp -- anywhere anywhere ctstate RELATED
    input_ext all -- anywhere anywhere
    LOG all -- anywhere anywhere limit: avg 3/min burst 5 LOG level warning tcp-options ip-options prefix "SFW2-IN-ILL-TARGET "
    DROP all -- anywhere anywhere
    Chain FORWARD (policy DROP)
    target prot opt source destination
    LOG all -- anywhere anywhere limit: avg 3/min burst 5 LOG level warning tcp-options ip-options prefix "SFW2-FWD-ILL-ROUTING "
    Chain OUTPUT (policy ACCEPT)
    target prot opt source destination
    ACCEPT all -- anywhere anywhere
    Chain forward_ext (0 references)
    target prot opt source destination
    Chain input_ext (1 references)
    target prot opt source destination
    DROP all -- anywhere anywhere PKTTYPE = broadcast
    ACCEPT icmp -- anywhere anywhere icmp source-quench
    ACCEPT icmp -- anywhere anywhere icmp echo-request
    DROP all -- anywhere anywhere PKTTYPE = multicast
    DROP all -- anywhere anywhere PKTTYPE = broadcast
    LOG tcp -- anywhere anywhere limit: avg 3/min burst 5 tcpflags: FIN,SYN,RST,ACK/SYN LOG level warning tcp-options ip-options prefix "SFW2-INext-DROP-DEFLT "
    LOG icmp -- anywhere anywhere limit: avg 3/min burst 5 LOG level warning tcp-options ip-options prefix "SFW2-INext-DROP-DEFLT "
    LOG udp -- anywhere anywhere limit: avg 3/min burst 5 ctstate NEW LOG level warning tcp-options ip-options prefix "SFW2-INext-DROP-DEFLT "
    DROP all -- anywhere anywhere
    Chain reject_func (0 references)
    target prot opt source destination
    REJECT tcp -- anywhere anywhere reject-with tcp-reset
    REJECT udp -- anywhere anywhere reject-with icmp-port-unreachable
    REJECT all -- anywhere anywhere reject-with icmp-proto-unreachable
    The modification in the bookmarks of Firefox is not possible to be done by us, is not so easy to do it by error, because the bookmarks where modified specifically in a tree of folders, deleting two URL markers and adding other two.
    I know by the language and the context of the new URL that the "intruder" is from my nationality.
    The problem is that the legitimate users of the computer just delete both fake URL and add the original ones. After that, they just continue using normally the computer. That day, none of that URL webpages where under attack (like DNS or sth like that and that maybe the auto-refresh  - i don't know if it exists - of Firefox just updated both of them in the moment of the attack of the webpages). Also, they didn't say anything about a possible attack days after that. And because is in the bookmarks of Firefox (something that is locally stored) I thought was a direct and specified attack to the computer A and its users.
    Question A: Was my supposition correct? Or there is still any possibility to be a general attack? I dismiss any possibility of popular worm/virus because the modification of the markers were really specific and on national context.
    Question B: What is the best procedure to analyze the source of the attack and how to protect against it? How to know what things have been modified? I think it is weird that the intruder shows himself modified something in the system (like markers in Firefox), so, he/she wants to be known, like a threat.
    I have installed and started the Clamav antivirus. I can show so far that there are:
    Windows and Data NTFS partitions (Windows not really used, Data used from Linux):
    - hundreds of [b]Heuristics.Encrypted.ZIP[/b] (or PDF, RAR), [b]Heuristics.Broken.Executable[/b]
    - file .htm with [b]Exploit.HTML.MHTRedir.4n[/b]
    - file .pdf with [b]Exploit.PDF-1745[/b]
    - file .rar with [b]Trojan.W32.HotKeysHook.A[/b]
    - 5 files .js with [b]Worm.JS.Redlof.A[/b]
    Linux (normally used):
    - /boot/vmlinux-3.1.10-1.16-desktop.gz Heuristics.Broken.Executable
    - /home/userA/Applications/jDownloaders/JDownlaoder/libs/jna.jar Heuristics.Broken.Executable
    - /home/userA/.jd/libs/jna.jar Heuristics.Broken.Executable
    - /home/userA/.thunderbird/ct5dfrhd.default/training.dat Heuristics.Broken.Executable
    - /lib/firmware/vxge/X3fw.ncf Heuristics.Encrypted.Zip
    - /lib/firmware/vxge/X3fw-pxe.ncf Heuristics.Encrypted.Zip
    In the time the detection was notified, Windows wasn't used in the days before. Therefore, Linux was the O.S. in the time of the intrusion. So, the files with Exploits, Trojan and Worm is really difficult (or pretty sure) to be executed the days before, because are really weird files and maybe used some months or years ago, not the last weeks, and for sure not from linux.
    PART 2:
    Now I have access to the main computerA, were the "intrusion" was done 2 weeks and half ago, but I really don't know what to do and how to proceed. At least I have installed clamav and I have shown the results above.
    The problem is that I come with the computerB with ArchLinux, and I needed internet to start checking how to perform with all this. The problem is that after activate eth0 and send dhcp client to get the IP, I get the connection and just after that I saw a really weird behaviour. Suddenly, the computer got a little freeze, well, not really freeze, but slow for some moments, and when I check in terminal what happend, my prompt was modified.
    Before was:
    ussr@localhost
    now:
    ussr@unknown002454062846
    That put my alarms on, so I quickly disconnect ethernet. Because I don't know how to proceed, and really scared of the situation, I just post the below "captures".
    iptables of computerB ( I followed the Arch Linux Simple Stateful Firewall.... I think I got it correctly )
    Chain INPUT (policy DROP)
    target prot opt source destination
    ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
    ACCEPT all -- anywhere anywhere
    DROP all -- anywhere anywhere ctstate INVALID
    ACCEPT icmp -- anywhere anywhere icmp echo-request ctstate NEW
    UDP udp -- anywhere anywhere ctstate NEW
    TCP tcp -- anywhere anywhere tcp flags:FIN,SYN,RST,ACK/SYN ctstate NEW
    REJECT all -- anywhere anywhere reject-with icmp-proto-unreachable
    icmp -- anywhere anywhere icmp echo-request recent: SET name: ping_limiter side: source mask: 255.255.255.255
    DROP icmp -- anywhere anywhere icmp echo-request recent: UPDATE seconds: 4 hit_count: 6 name: ping_limiter side: source mask: 255.255.255.255
    ACCEPT icmp -- anywhere anywhere icmp echo-request
    REJECT tcp -- anywhere anywhere recent: SET name: TCP-PORTSCAN side: source mask: 255.255.255.255 reject-with tcp-reset
    REJECT udp -- anywhere anywhere recent: SET name: UDP-PORTSCAN side: source mask: 255.255.255.255 reject-with icmp-port-unreachable
    Chain FORWARD (policy DROP)
    target prot opt source destination
    Chain OUTPUT (policy ACCEPT)
    target prot opt source destination
    Chain TCP (1 references)
    target prot opt source destination
    REJECT tcp -- anywhere anywhere recent: UPDATE seconds: 60 name: TCP-PORTSCAN side: source mask: 255.255.255.255 reject-with tcp-reset
    ACCEPT tcp -- anywhere anywhere tcp dpt:http
    Chain UDP (1 references)
    target prot opt source destination
    REJECT udp -- anywhere anywhere recent: UPDATE seconds: 60 name: UDP-PORTSCAN side: source mask: 255.255.255.255 reject-with icmp-port-unreachable
    ACCEPT udp -- anywhere anywhere udp dpt:domain
    ls /var/log
    [ussr@unknown002454062846 log]$ ls
    auth.log btmp crond.log.3 daemon.log.3 errors.log.3 everything.log.4 kernel.log messages.log pacman.log syslog.log.3 user.log.4
    auth.log.1 btmp.1 crond.log.4 daemon.log.4 errors.log.4 faillog kernel.log.1 messages.log.1 pm-powersave.log syslog.log.4 wtmp
    auth.log.2 ConsoleKit cups dmesg.log everything.log httpd kernel.log.2 messages.log.2 speech-dispatcher user.log wtmp.1
    auth.log.3 crond.log daemon.log errors.log everything.log.1 journal kernel.log.3 messages.log.3 syslog.log user.log.1 Xorg.0.log
    auth.log.4 crond.log.1 daemon.log.1 errors.log.1 everything.log.2 kdm.log kernel.log.4 messages.log.4 syslog.log.1 user.log.2 Xorg.0.log.old
    boot crond.log.2 daemon.log.2 errors.log.2 everything.log.3 kdm.log.1 lastlog old syslog.log.2 user.log.3 Xorg.1.log
    sudo cat /var/log/auth.log
    Mar 12 21:47:06 localhost polkitd[463]: Registered Authentication Agent for unix-session:1 (system bus name :1.19 [/usr/lib/kde4/libexec/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    Mar 12 21:56:16 localhost sudo: ussr : TTY=pts/2 ; PWD=/home/ussr ; USER=root ; COMMAND=/sbin/ifconfig eth0 up
    Mar 12 21:56:16 localhost sudo: pam_unix(sudo:session): session opened for user root by ussr(uid=0)
    Mar 12 21:56:16 localhost sudo: pam_unix(sudo:session): session closed for user root
    Mar 12 21:58:03 localhost sudo: ussr : TTY=pts/2 ; PWD=/home/ussr ; USER=root ; COMMAND=/usr/sbin/dhcpcd
    Mar 12 21:58:03 localhost sudo: pam_unix(sudo:session): session opened for user root by ussr(uid=0)
    Mar 12 21:58:10 localhost sudo: pam_unix(sudo:session): session closed for user root
    Mar 12 22:01:01 localhost crond[1185]: pam_unix(crond:session): session opened for user root by (uid=0)
    Mar 12 22:01:01 localhost CROND[1185]: pam_unix(crond:session): session closed for user root
    Mar 12 22:01:19 localhost systemd-logind[341]: New session 3 of user ussr.
    Mar 12 22:01:16 localhost polkitd[463]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.19, object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    Mar 12 22:01:17 localhost kdm: :0[371]: pam_unix(kde:session): session closed for user ussr
    Mar 12 22:01:19 localhost kdm: :0[1252]: pam_unix(kde:session): session opened for user ussr by (uid=0)
    Mar 12 22:01:31 localhost polkitd[463]: Registered Authentication Agent for unix-session:3 (system bus name :1.45 [/usr/lib/kde4/libexec/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    Mar 12 22:02:41 localhost sudo: ussr : TTY=pts/2 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/cat auth.log
    Mar 12 22:02:41 localhost sudo: pam_unix(sudo:session): session opened for user root by ussr(uid=0)
    Mar 12 22:02:41 localhost sudo: pam_unix(sudo:session): session closed for user root
    Mar 12 22:05:08 localhost sudo: ussr : TTY=pts/2 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/cat crond.log
    Mar 12 22:05:08 localhost sudo: pam_unix(sudo:session): session opened for user root by ussr(uid=0)
    Mar 12 22:05:09 localhost sudo: pam_unix(sudo:session): session closed for user root
    Mar 12 22:06:08 localhost sudo: ussr : TTY=pts/2 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/cat messages.log
    Mar 12 22:06:08 localhost sudo: pam_unix(sudo:session): session opened for user root by ussr(uid=0)
    Mar 12 22:06:09 localhost sudo: pam_unix(sudo:session): session closed for user root
    sudo cat /var/log/crond.log
    Mar 12 21:19:12 localhost crond[343]: (CRON) INFO (Syslog will be used instead of sendmail.)
    Mar 12 21:19:12 localhost crond[343]: (CRON) INFO (running with inotify support)
    Mar 12 21:46:15 localhost crond[339]: (CRON) INFO (Syslog will be used instead of sendmail.)
    Mar 12 21:46:15 localhost crond[339]: (CRON) INFO (running with inotify support)
    Mar 12 22:01:01 localhost CROND[1186]: (root) CMD (run-parts /etc/cron.hourly)
    Mar 12 22:01:01 localhost anacron[1192]: Anacron started on 2013-03-12
    Mar 12 22:01:01 localhost anacron[1192]: Normal exit (0 jobs run)
    Mar 12 23:01:01 localhost CROND[1847]: (root) CMD (run-parts /etc/cron.hourly)
    Mar 12 23:01:01 localhost anacron[1853]: Anacron started on 2013-03-12
    Mar 12 23:01:01 localhost anacron[1853]: Normal exit (0 jobs run)
    sudo cat /var/log/everything.log [more info maybe]
    Mar 12 21:46:46 localhost dbus[340]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service'
    Mar 12 21:46:46 localhost dbus[340]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.Avahi.service' for details.
    Mar 12 21:46:46 localhost dbus-daemon[340]: dbus[340]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.Avahi.service' for details.
    Mar 12 21:46:55 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:46:55 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:46:55 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 21:46:55 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:46:55 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:50:43 localhost kernel: [ 282.346749] usb 4-1: USB disconnect, device number 2
    Mar 12 21:50:44 localhost kernel: [ 283.346743] usb 1-1: USB disconnect, device number 2
    Mar 12 21:50:46 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:50:46 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:50:46 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 21:50:46 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:50:46 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:50:46 localhost kernel: [ 284.773394] Monitor-Mwait will be used to enter C-3 state
    Mar 12 21:50:46 localhost kernel: [ 285.600790] EXT4-fs (sda5): re-mounted. Opts: data=ordered,commit=600
    Mar 12 21:51:46 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:51:46 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:51:46 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 21:51:46 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:51:46 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:52:03 localhost kernel: [ 361.720026] usb 4-1: new low-speed USB device number 3 using uhci_hcd
    Mar 12 21:52:03 localhost kernel: [ 362.021197] input: USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1:1.0/input/input15
    Mar 12 21:52:03 localhost kernel: [ 362.021535] hid-generic 0003:05AF:0802.0004: input,hidraw0: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:1d.0-1/input0
    Mar 12 21:52:03 localhost kernel: [ 362.113907] input: USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1:1.1/input/input16
    Mar 12 21:52:03 localhost kernel: [ 362.114113] hid-generic 0003:05AF:0802.0005: input,hidraw1: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:1d.0-1/input1
    Mar 12 21:52:03 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:52:03 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:52:04 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 21:52:04 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:52:04 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:53:36 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:53:36 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 21:53:36 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 21:53:36 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:53:36 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 21:53:36 localhost kernel: [ 455.631890] EXT4-fs (sda5): re-mounted. Opts: data=ordered,commit=0
    Mar 12 21:54:15 localhost kernel: [ 494.630014] usb 1-1: new low-speed USB device number 3 using uhci_hcd
    Mar 12 21:54:16 localhost kernel: [ 494.819169] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0/input/input17
    Mar 12 21:54:16 localhost kernel: [ 494.819483] hid-generic 0003:046D:C05B.0006: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1a.0-1/input0
    Mar 12 21:56:16 localhost kernel: [ 615.359568] sky2 0000:06:00.0 eth0: enabling interface
    Mar 12 21:56:16 localhost kernel: [ 615.359925] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    Mar 12 21:56:18 localhost kernel: [ 617.200722] sky2 0000:06:00.0 eth0: Link is up at 100 Mbps, full duplex, flow control rx
    Mar 12 21:56:18 localhost kernel: [ 617.200761] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    Mar 12 21:57:01 localhost kernel: [ 659.837395] sky2 0000:06:00.0 eth0: Link is down
    Mar 12 21:57:03 localhost kernel: [ 662.485483] sky2 0000:06:00.0 eth0: Link is up at 100 Mbps, full duplex, flow control rx
    Mar 12 21:58:03 localhost dhcpcd[1072]: version 5.6.4 starting
    Mar 12 21:58:03 localhost kernel: [ 722.424132] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Mar 12 21:58:03 localhost dhcpcd[1072]: eth0: sending IPv6 Router Solicitation
    Mar 12 21:58:03 localhost dhcpcd[1072]: eth0: broadcasting for a lease
    Mar 12 21:58:03 localhost dhcpcd[1072]: wlan0: waiting for carrier
    Mar 12 21:58:03 localhost dhcpcd[1072]: wlan0: carrier acquired
    Mar 12 21:58:03 localhost dhcpcd[1072]: wlan0: carrier lost
    Mar 12 21:58:03 localhost dhcpcd[1072]: wlan0: waiting for carrier
    Mar 12 21:58:04 localhost dhcpcd[1072]: eth0: offered 192.168.1.35 from 192.168.1.1
    Mar 12 21:58:04 localhost dhcpcd[1072]: eth0: acknowledged 192.168.1.35 from 192.168.1.1
    Mar 12 21:58:04 localhost dhcpcd[1072]: eth0: checking for 192.168.1.35
    Mar 12 21:58:07 localhost dhcpcd[1072]: eth0: sending IPv6 Router Solicitation
    Mar 12 21:58:10 localhost dhcpcd[1072]: eth0: leased 192.168.1.35 for 43200 seconds
    Mar 12 21:58:10 localhost dhcpcd[1072]: forked to background, child pid 1119
    Mar 12 21:58:11 localhost dhcpcd[1119]: eth0: sending IPv6 Router Solicitation
    Mar 12 21:58:15 localhost dhcpcd[1119]: eth0: sending IPv6 Router Solicitation
    Mar 12 21:58:15 localhost dhcpcd[1119]: eth0: no IPv6 Routers available
    Mar 12 21:59:33 localhost kernel: [ 812.425190] konsole[1156]: segfault at 84 ip b73128d4 sp bf9e00c0 error 4 in libkdeui.so.5.10.0[b6fcb000+42b000]
    Mar 12 21:59:33 localhost systemd-coredump[1158]: Process 1156 (konsole) dumped core.
    Mar 12 21:59:47 localhost kernel: [ 826.338582] konsole[1164]: segfault at 84 ip b761e8d4 sp bfb066b0 error 4 in libkdeui.so.5.10.0[b72d7000+42b000]
    Mar 12 21:59:48 localhost systemd-coredump[1165]: Process 1164 (konsole) dumped core.
    Mar 12 22:00:32 localhost kernel: [ 870.727165] konsole[1174]: segfault at 84 ip b761e8d4 sp bfb066b0 error 4 in libkdeui.so.5.10.0[b72d7000+42b000]
    Mar 12 22:00:32 localhost systemd-coredump[1175]: Process 1174 (konsole) dumped core.
    Mar 12 22:01:01 localhost systemd[1]: Starting Cleanup of Temporary Directories...
    Mar 12 22:01:01 localhost CROND[1186]: (root) CMD (run-parts /etc/cron.hourly)
    Mar 12 22:01:01 localhost anacron[1192]: Anacron started on 2013-03-12
    Mar 12 22:01:01 localhost anacron[1192]: Normal exit (0 jobs run)
    Mar 12 22:01:01 localhost systemd[1]: Started Cleanup of Temporary Directories.
    Mar 12 22:01:04 localhost kernel: [ 902.743018] konsole[1196]: segfault at 84 ip b761e8d4 sp bfb066b0 error 4 in libkdeui.so.5.10.0[b72d7000+42b000]
    Mar 12 22:01:04 localhost systemd-coredump[1197]: Process 1196 (konsole) dumped core.
    Mar 12 22:01:21 localhost dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 22:01:21 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Mar 12 22:01:21 localhost dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 22:01:22 localhost dbus[340]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service'
    Mar 12 22:01:22 localhost dbus[340]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.Avahi.service' for details.
    Mar 12 22:01:26 localhost dbus-daemon[340]: dbus[340]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Mar 12 22:01:26 localhost dbus-daemon[340]: dbus[340]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Mar 12 22:01:26 localhost dbus-daemon[340]: dbus[340]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service'
    Mar 12 22:01:26 localhost dbus-daemon[340]: dbus[340]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.Avahi.service' for details.
    Mar 12 22:01:46 localhost dhcpcd[1119]: eth0: carrier lost
    Mar 12 22:01:46 localhost kernel: [ 945.353892] sky2 0000:06:00.0 eth0: Link is down
    ps aux
    [ussr@unknown002454062846 ~]$ ps aux
    USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
    root 1 0.0 0.0 5040 2772 ? Ss 21:46 0:00 /bin/systemd
    root 2 0.0 0.0 0 0 ? S 21:46 0:00 [kthreadd]
    root 3 0.0 0.0 0 0 ? S 21:46 0:01 [ksoftirqd/0]
    root 5 0.0 0.0 0 0 ? S< 21:46 0:00 [kworker/0:0H]
    root 7 0.0 0.0 0 0 ? S< 21:46 0:00 [kworker/u:0H]
    root 8 0.0 0.0 0 0 ? S 21:46 0:00 [migration/0]
    root 9 0.0 0.0 0 0 ? S 21:46 0:01 [rcu_preempt]
    root 10 0.0 0.0 0 0 ? S 21:46 0:00 [rcu_bh]
    root 11 0.0 0.0 0 0 ? S 21:46 0:00 [rcu_sched]
    root 12 0.0 0.0 0 0 ? S 21:46 0:00 [watchdog/0]
    root 13 0.0 0.0 0 0 ? S 21:46 0:00 [watchdog/1]
    root 14 0.0 0.0 0 0 ? S 21:46 0:01 [ksoftirqd/1]
    root 15 0.0 0.0 0 0 ? S 21:46 0:00 [migration/1]
    root 17 0.0 0.0 0 0 ? S< 21:46 0:00 [kworker/1:0H]
    root 18 0.0 0.0 0 0 ? S< 21:46 0:00 [cpuset]
    root 19 0.0 0.0 0 0 ? S< 21:46 0:00 [khelper]
    root 20 0.0 0.0 0 0 ? S 21:46 0:00 [kdevtmpfs]
    root 21 0.0 0.0 0 0 ? S< 21:46 0:00 [netns]
    root 22 0.0 0.0 0 0 ? S 21:46 0:00 [bdi-default]
    root 23 0.0 0.0 0 0 ? S< 21:46 0:00 [kblockd]
    root 26 0.0 0.0 0 0 ? S 21:46 0:00 [khungtaskd]
    root 27 0.0 0.0 0 0 ? S 21:46 0:00 [kswapd0]
    root 28 0.0 0.0 0 0 ? SN 21:46 0:00 [ksmd]
    root 29 0.0 0.0 0 0 ? SN 21:46 0:00 [khugepaged]
    root 30 0.0 0.0 0 0 ? S 21:46 0:00 [fsnotify_mark]
    root 31 0.0 0.0 0 0 ? S< 21:46 0:00 [crypto]
    root 35 0.0 0.0 0 0 ? S< 21:46 0:00 [kthrotld]
    root 37 0.0 0.0 0 0 ? S< 21:46 0:00 [deferwq]
    root 82 0.0 0.0 0 0 ? S 21:46 0:00 [khubd]
    root 83 0.0 0.0 0 0 ? S< 21:46 0:00 [ata_sff]
    root 84 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_0]
    root 85 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_1]
    root 86 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_2]
    root 87 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_3]
    root 88 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_4]
    root 89 0.0 0.0 0 0 ? S 21:46 0:00 [scsi_eh_5]
    root 92 0.0 0.0 0 0 ? S 21:46 0:00 [kworker/u:4]
    root 97 0.0 0.0 0 0 ? S< 21:46 0:00 [kworker/1:1H]
    root 98 0.0 0.0 0 0 ? S< 21:46 0:00 [kworker/0:1H]
    root 106 0.0 0.0 0 0 ? S 21:46 0:00 [jbd2/sda5-8]
    root 107 0.0 0.0 0 0 ? S< 21:46 0:00 [ext4-dio-unwrit]
    root 124 0.0 0.0 11032 1904 ? Ss 21:46 0:00 /usr/lib/systemd/systemd-udevd
    root 134 0.9 0.8 118768 26528 ? Ss 21:46 1:04 /usr/lib/systemd/systemd-journald
    root 145 0.0 0.0 0 0 ? S< 21:46 0:00 [iprt]
    root 229 0.0 0.0 0 0 ? S< 21:46 0:00 [led_workqueue]
    root 230 0.0 0.0 0 0 ? S< 21:46 0:00 [kpsmoused]
    root 240 0.0 0.0 0 0 ? S< 21:46 0:00 [cfg80211]
    root 242 0.0 0.0 0 0 ? S< 21:46 0:00 [ttm_swap]
    root 304 0.0 0.0 0 0 ? S< 21:46 0:00 [hd-audio0]
    root 327 0.0 0.0 0 0 ? S< 21:46 0:00 [hd-audio1]
    root 331 0.0 0.0 4924 996 ? Ss 21:46 0:00 /usr/bin/mount.ntfs-3g /dev/sda4 /media/Datos -o rw,relatime
    root 337 0.0 0.1 7608 3252 ? Ss 21:46 0:00 /usr/sbin/syslog-ng -F
    root 339 0.0 0.0 4800 1280 ? Ss 21:46 0:00 /usr/sbin/crond -n
    dbus 340 0.0 0.0 3384 1800 ? Ss 21:46 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    root 341 0.0 0.0 3336 1568 ? Ss 21:46 0:00 /usr/lib/systemd/systemd-logind
    root 347 0.0 0.0 3812 744 tty1 Ss+ 21:46 0:00 /sbin/agetty --noclear tty1 38400 linux
    root 348 0.0 0.0 3968 1040 ? Ss 21:46 0:00 /usr/bin/kdm -nodaemon
    root 455 0.0 0.2 29692 8296 ? Ssl 21:46 0:01 /usr/lib/upower/upowerd
    polkitd 463 0.0 0.3 61912 11272 ? Ssl 21:46 0:00 /usr/lib/polkit-1/polkitd --no-debug
    root 500 0.0 0.1 43028 4060 ? Ssl 21:46 0:01 /usr/lib/udisks2/udisksd --no-debug
    root 1119 0.0 0.0 2420 348 ? Ss 21:58 0:00 dhcpcd
    root 1248 0.4 1.1 86772 34320 tty7 Ssl+ 22:01 0:27 /usr/bin/X :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-WnL9Aa
    root 1252 0.0 0.0 5468 2316 ? S 22:01 0:00 -:0
    ussr 1267 0.0 0.0 5196 1624 ? Ss 22:01 0:00 /bin/sh /usr/bin/startkde
    ussr 1278 0.0 0.0 3624 592 ? S 22:01 0:00 /usr/bin/dbus-launch --sh-syntax --exit-with-session
    ussr 1279 0.0 0.0 4300 1848 ? Ss 22:01 0:01 /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session
    ussr 1305 0.0 0.0 4736 384 ? Ss 22:01 0:00 /usr/bin/gpg-agent -s --daemon --pinentry-program /usr/bin/pinentry-qt4 --write-env-file
    ussr 1308 0.0 0.0 4216 424 ? Ss 22:01 0:00 /usr/bin/ssh-agent -s
    root 1323 0.0 0.0 2032 56 ? S 22:01 0:00 /usr/lib/kde4/libexec/start_kdeinit +kcminit_startup
    ussr 1324 0.0 0.5 129264 16476 ? Ss 22:01 0:00 kdeinit4: kdeinit4 Running...
    ussr 1325 0.0 0.3 131292 11184 ? S 22:01 0:00 kdeinit4: klauncher [kdeinit] --fd=9
    ussr 1327 0.0 1.0 215392 30976 ? Sl 22:01 0:01 kdeinit4: kded4 [kdeinit]
    ussr 1334 0.0 0.6 146508 18616 ? S 22:01 0:00 kdeinit4: kglobalaccel [kdeinit]
    ussr 1338 0.0 0.5 162384 17088 ? Sl 22:01 0:00 /usr/bin/kactivitymanagerd
    ussr 1346 0.0 0.0 2168 284 ? S 22:01 0:00 kwrapper4 ksmserver
    ussr 1347 0.0 0.6 155184 18500 ? Sl 22:01 0:00 kdeinit4: ksmserver [kdeinit]
    ussr 1353 0.3 2.7 481808 83556 ? Sl 22:01 0:19 kwin -session 1014cd7d2d4000134981367400000006900000_1363122074_66050
    ussr 1363 0.0 0.8 148664 26072 ? Sl 22:01 0:00 /usr/bin/knotify4
    ussr 1367 0.4 4.5 466704 139528 ? Sl 22:01 0:27 kdeinit4: plasma-desktop [kdeinit]
    ussr 1373 0.0 0.4 86180 15092 ? S 22:01 0:00 /usr/bin/kuiserver
    ussr 1379 0.0 0.1 45584 5780 ? Sl 22:01 0:00 /usr/bin/akonadi_control
    ussr 1381 0.0 0.3 204676 10096 ? Sl 22:01 0:00 akonadiserver
    ussr 1384 0.0 1.2 241804 38312 ? Sl 22:01 0:01 /usr/bin/mysqld --defaults-file=/home/ussr/.local/share/akonadi/mysql.conf --datadir=/home/ussr/.local/
    ussr 1418 0.0 0.5 85804 16604 ? Sl 22:01 0:00 /usr/bin/akonadi_agent_launcher akonadi_akonotes_resource akonadi_akonotes_resource_0
    ussr 1419 0.0 0.9 158040 29748 ? S 22:01 0:00 /usr/bin/akonadi_archivemail_agent --identifier akonadi_archivemail_agent
    ussr 1420 0.0 0.5 86000 16680 ? Sl 22:01 0:00 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource_0
    ussr 1421 0.0 0.5 85940 16876 ? Sl 22:01 0:00 /usr/bin/akonadi_agent_launcher akonadi_maildir_resource akonadi_maildir_resource_0
    ussr 1422 0.0 0.6 94976 19712 ? S 22:01 0:00 /usr/bin/akonadi_maildispatcher_agent --identifier akonadi_maildispatcher_agent
    ussr 1423 0.0 0.9 158060 30048 ? S 22:01 0:00 /usr/bin/akonadi_mailfilter_agent --identifier akonadi_mailfilter_agent
    ussr 1424 0.0 0.6 99780 18892 ? Sl 22:01 0:00 /usr/bin/akonadi_nepomuk_feeder --identifier akonadi_nepomuk_feeder
    ussr 1446 0.0 0.3 129528 9488 ? S 22:01 0:00 kdeinit4: kio_http_cache_cleaner [kdeinit]
    ussr 1456 0.0 0.3 73352 9880 ? Sl 22:01 0:00 /usr/bin/nepomukserver
    ussr 1461 0.2 2.3 231052 71768 ? SNl 22:01 0:12 /usr/bin/nepomukservicestub nepomukstorage
    ussr 1471 0.6 1.4 57668 44308 ? SNl 22:01 0:35 /usr/bin/virtuoso-t +foreground +configfile /tmp/virtuoso_ZT1461.ini +wait
    ussr 1481 0.0 1.2 272872 37436 ? Sl 22:01 0:00 kdeinit4: krunner [kdeinit]
    ussr 1484 0.0 0.7 241356 24124 ? Sl 22:01 0:00 kdeinit4: kmix [kdeinit] -session 1014cd7d2d400013498136850000
    ussr 1488 0.0 0.4 87280 14960 ? S 22:01 0:00 /usr/bin/nepomukcontroller -session 1014cd7d2d4000134981368500000006900010_1363122074_36315
    ussr 1490 0.0 0.7 111408 23264 ? Sl 22:01 0:04 yakuake -session 1014cd7d2d4000135280595900000005570044_1363122074_36424
    ussr 1495 0.0 0.0 5360 2060 pts/0 Ss+ 22:01 0:00 /bin/bash
    ussr 1503 0.0 0.5 97452 16812 ? Sl 22:01 0:00 /usr/lib/kde4/libexec/polkit-kde-authentication-agent-1
    ussr 1504 0.0 0.5 105388 17392 ? S 22:01 0:00 /usr/bin/korgac --icon korgac
    ussr 1516 0.0 0.5 145452 17504 ? S 22:01 0:00 kdeinit4: klipper [kdeinit]
    ussr 1561 0.2 0.9 164820 27976 ? Rl 22:01 0:12 kdeinit4: konsole [kdeinit]
    ussr 1563 0.0 0.0 5356 2112 pts/2 Ss 22:01 0:00 /bin/bash
    ussr 1565 0.0 0.6 109208 19384 ? SNl 22:01 0:00 /usr/bin/nepomukservicestub nepomukfilewatch
    ussr 1569 0.1 1.2 123320 37384 ? SNl 22:01 0:08 /usr/bin/nepomukservicestub nepomukfileindexer
    root 1825 0.0 0.0 0 0 ? S 22:06 0:01 [kworker/1:1]
    root 1837 0.0 0.0 0 0 ? S 22:21 0:00 [flush-8:0]
    root 1859 0.0 0.0 0 0 ? S 23:10 0:00 [kworker/0:1]
    root 1872 0.0 0.0 0 0 ? S 23:10 0:00 [scsi_eh_6]
    root 1873 0.0 0.0 0 0 ? S 23:10 0:00 [usb-storage]
    root 1876 0.0 0.0 0 0 ? S 23:10 0:00 [kworker/1:0]
    root 1877 0.0 0.0 0 0 ? S 23:10 0:00 [kworker/u:0]
    ussr 1919 0.0 0.0 35080 2892 ? Sl 23:11 0:00 /usr/lib/at-spi2-core/at-spi-bus-launcher
    ussr 1974 0.0 0.0 3020 1356 ? S 23:12 0:00 /usr/bin/dbus-daemon --config-file=/etc/at-spi2/accessibility.conf --nofork --print-address 3
    ussr 1977 0.0 0.1 17320 3152 ? Sl 23:12 0:00 /usr/lib/at-spi2-core/at-spi2-registryd --use-gnome-session
    ussr 1980 0.0 0.0 8084 1968 ? S 23:12 0:00 /usr/lib/GConf/gconfd-2
    root 2036 0.0 0.0 0 0 ? S 23:21 0:00 [kworker/0:0]
    root 2044 0.0 0.0 0 0 ? S 23:31 0:00 [kworker/0:2]
    root 2047 0.0 0.0 0 0 ? S 23:34 0:00 [flush-8:16]
    ussr 2079 0.0 0.0 4676 1208 pts/2 R+ 23:36 0:00 ps aux
    I have checked in .bashrc and the prompt is still:
    PS1='[\u@\h \W]\$ '
    And \h means hostname... And if I check in /etc/hosts:
    127.0.0.1   localhost.localdomain   localhost
    ::1   localhost.localdomain   localhost
    So, something is wrong..
    I don't know how to proceed, nor in the computer A, neither in the computer B.
    Question C: Is possible to have any mechanism to know every file that is modified, add or delete on the whole system? Something like the log but for every file? I think is the only way to know what is going on.
    Any help? Please, I'm so lost in this area..

    Ok, thank you for the answers.
    Because I don't know about which computer you ask about the services, I write for both.
    Computer A
    uname -r
    3.1.10-1.16-desktop
    Processes (ps -Al)
    USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
    root 1 0.0 0.0 5408 2536 ? Ss Mar12 0:02 /sbin/init showopts
    root 2 0.0 0.0 0 0 ? S Mar12 0:00 [kthreadd]
    root 3 0.0 0.0 0 0 ? S Mar12 0:00 [ksoftirqd/0]
    root 6 0.0 0.0 0 0 ? S Mar12 0:00 [migration/0]
    root 7 0.0 0.0 0 0 ? SN Mar12 0:16 [rcuc0]
    root 8 0.0 0.0 0 0 ? S Mar12 0:00 [rcun0]
    root 9 0.0 0.0 0 0 ? S Mar12 0:00 [rcub0]
    root 10 0.0 0.0 0 0 ? S Mar12 0:00 [rcun1]
    root 11 0.0 0.0 0 0 ? S Mar12 0:00 [rcub1]
    root 12 0.0 0.0 0 0 ? S Mar12 0:00 [watchdog/0]
    root 13 0.0 0.0 0 0 ? S Mar12 0:00 [migration/1]
    root 15 0.0 0.0 0 0 ? SN Mar12 0:14 [rcuc1]
    root 16 0.0 0.0 0 0 ? S Mar12 0:00 [ksoftirqd/1]
    root 18 0.0 0.0 0 0 ? S Mar12 0:00 [watchdog/1]
    root 19 0.0 0.0 0 0 ? S Mar12 0:00 [migration/2]
    root 21 0.0 0.0 0 0 ? SN Mar12 0:12 [rcuc2]
    root 22 0.0 0.0 0 0 ? S Mar12 0:00 [ksoftirqd/2]
    root 23 0.0 0.0 0 0 ? S Mar12 0:00 [watchdog/2]
    root 24 0.0 0.0 0 0 ? S Mar12 0:00 [migration/3]
    root 26 0.0 0.0 0 0 ? SN Mar12 0:09 [rcuc3]
    root 27 0.0 0.0 0 0 ? S Mar12 0:04 [ksoftirqd/3]
    root 28 0.0 0.0 0 0 ? S Mar12 0:00 [watchdog/3]
    root 29 0.0 0.0 0 0 ? S< Mar12 0:00 [cpuset]
    root 30 0.0 0.0 0 0 ? S< Mar12 0:00 [khelper]
    root 31 0.0 0.0 0 0 ? S Mar12 0:00 [kdevtmpfs]
    root 32 0.0 0.0 0 0 ? S< Mar12 0:00 [netns]
    root 33 0.0 0.0 0 0 ? S Mar12 0:00 [sync_supers]
    root 34 0.0 0.0 0 0 ? S Mar12 0:00 [bdi-default]
    root 35 0.0 0.0 0 0 ? S< Mar12 0:00 [kintegrityd]
    root 36 0.0 0.0 0 0 ? S< Mar12 0:00 [kblockd]
    root 37 0.0 0.0 0 0 ? S< Mar12 0:00 [ata_sff]
    root 38 0.0 0.0 0 0 ? S Mar12 0:00 [khubd]
    root 39 0.0 0.0 0 0 ? S< Mar12 0:00 [md]
    root 41 0.0 0.0 0 0 ? S Mar12 0:00 [khungtaskd]
    root 42 0.3 0.0 0 0 ? S Mar12 3:02 [kswapd0]
    root 43 0.0 0.0 0 0 ? SN Mar12 0:00 [ksmd]
    root 44 0.0 0.0 0 0 ? SN Mar12 0:02 [khugepaged]
    root 45 0.0 0.0 0 0 ? S Mar12 0:00 [fsnotify_mark]
    root 46 0.0 0.0 0 0 ? S< Mar12 0:00 [crypto]
    root 50 0.0 0.0 0 0 ? S< Mar12 0:00 [kthrotld]
    root 85 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_0]
    root 86 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_1]
    root 87 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_2]
    root 88 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_3]
    root 92 0.0 0.0 0 0 ? S Mar12 0:00 [kworker/u:3]
    root 101 0.0 0.0 0 0 ? S< Mar12 0:00 [kpsmoused]
    root 103 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_4]
    root 104 0.0 0.0 0 0 ? S Mar12 0:03 [usb-storage]
    root 106 0.0 0.0 0 0 ? S Mar12 0:00 [kworker/u:5]
    root 141 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_5]
    root 142 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_6]
    root 143 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_7]
    root 144 0.0 0.0 0 0 ? S Mar12 0:20 [usb-storage]
    root 148 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_8]
    root 149 0.0 0.0 0 0 ? S Mar12 0:00 [scsi_eh_9]
    root 217 0.0 0.0 0 0 ? S< Mar12 0:00 [ttm_swap]
    root 432 0.0 0.0 0 0 ? S Mar12 0:01 [jbd2/sda5-8]
    root 433 0.0 0.0 0 0 ? S< Mar12 0:00 [ext4-dio-unwrit]
    root 471 0.0 0.0 3236 348 ? Ss Mar12 0:00 /sbin/udevd
    root 494 0.0 0.0 0 0 ? S Mar12 0:00 [kauditd]
    root 495 0.0 0.0 2284 364 ? Ss Mar12 0:00 /lib/systemd/systemd-stdout-syslog-bridge
    root 643 0.0 0.0 3148 256 ? S Mar12 0:00 /sbin/udevd
    root 644 0.0 0.0 3148 244 ? S Mar12 0:00 /sbin/udevd
    root 749 0.0 0.0 0 0 ? S< Mar12 0:00 [firewire]
    root 782 0.0 0.0 0 0 ? S< Mar12 0:00 [hd-audio1]
    root 824 0.0 0.0 0 0 ? S< Mar12 0:00 [hd-audio2]
    root 881 0.8 0.0 12720 1580 ? Ss Mar12 7:49 /sbin/mount.ntfs-3g /dev/sdc1 /windows/datos -o rw,locale=es_ES.UTF-8
    root 897 1.5 0.0 10540 2064 ? Ss Mar12 13:31 /sbin/mount.ntfs-3g /dev/sda3 /windows/othe -o rw,noexec,nosuid,nodev,users,gid=10
    root 898 0.7 0.0 9780 1088 ? Ss Mar12 6:36 /sbin/mount.ntfs-3g /dev/sda4 /windows/caviarblue -o rw,locale=es_ES.UTF-8
    root 903 0.0 0.0 0 0 ? S Mar12 0:12 [jbd2/sda6-8]
    root 904 0.0 0.0 0 0 ? S< Mar12 0:00 [ext4-dio-unwrit]
    root 963 0.0 0.0 3140 840 ? Ss Mar12 0:00 /lib/systemd/systemd-logind
    root 988 0.0 0.0 40136 232 ? Sl Mar12 0:00 /sbin/rsyslogd -c 5 -f /etc/rsyslog.conf
    root 994 0.0 0.0 1920 276 ? Ss Mar12 0:00 /sbin/acpid
    avahi 1010 0.0 0.0 2940 676 ? Ss Mar12 0:00 avahi-daemon: running [linux-7sgr.local]
    root 1021 0.0 0.0 1908 248 ? Ss Mar12 0:00 /usr/sbin/nscd
    102 1043 0.0 0.0 3540 1308 ? Ss Mar12 0:12 /bin/dbus-daemon --system --address=systemd: --nofork --systemd-activation
    root 1058 0.0 0.0 6288 184 ? Ss Mar12 0:03 /sbin/haveged -w 1024 -v 1
    root 1199 0.0 0.0 7888 780 ? Ss Mar12 0:00 /usr/sbin/cupsd -C /etc/cups/cupsd.conf
    root 1312 0.0 0.0 4124 308 ? Ss Mar12 0:00 /usr/bin/kdm
    root 1427 5.6 1.1 65368 42660 tty7 Ss+ Mar12 50:26 /usr/bin/Xorg -br :0 vt7 -nolisten tcp -auth /var/lib/xdm/authdir/authfiles/A:0-Fx
    root 1489 0.0 0.0 1908 268 tty1 Ss+ Mar12 0:00 /sbin/agetty tty1 38400
    root 1703 0.0 0.0 5164 420 ? S Mar12 0:00 -:0
    root 1727 0.0 0.0 33660 992 ? Ssl Mar12 0:00 /usr/sbin/console-kit-daemon --no-daemon
    root 1801 0.0 0.0 25224 2300 ? Sl Mar12 0:01 /usr/lib/polkit-1/polkitd --no-debug
    userA 1825 0.0 0.0 4624 292 ? Ss Mar12 0:00 /bin/sh /usr/bin/startkde
    root 1992 0.0 0.0 5248 492 ? S Mar12 0:00 /sbin/dhclient6 -6 -cf /var/lib/dhcp6/dhclient6.eth0.conf -lf /var/lib/dhcp6/dhcli
    userA 1995 0.0 0.0 5464 1112 ? Ss Mar12 0:01 /usr/bin/gpg-agent --sh --daemon --write-env-file /home/userA/.gnupg/agent.info /et
    userA 2115 0.0 0.0 3332 268 ? S Mar12 0:00 dbus-launch --sh-syntax --exit-with-session
    userA 2116 0.0 0.0 4736 1612 ? Ss Mar12 0:02 /bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    root 2123 0.0 0.0 1752 112 ? S Mar12 0:00 /usr/lib/kde4/libexec/start_kdeinit +kcminit_startup
    userA 2133 0.0 0.0 92820 1976 ? Ss Mar12 0:00 kdeinit4: kdeinit4 Running...
    userA 2143 0.0 0.0 96676 3636 ? S Mar12 0:00 kdeinit4: klauncher [kdeinit] --fd=9
    userA 2213 0.0 0.1 216804 6720 ? Sl Mar12 0:06 kdeinit4: kded4 [kdeinit]
    root 2533 0.0 0.0 2100 432 ? Ss Mar12 0:00 /sbin/dhcpcd --netconfig -L -E -HHH -c /etc/sysconfig/network/scripts/dhcpcd-hook
    userA 2553 0.0 0.0 111996 3512 ? S Mar12 0:01 kdeinit4: kglobalaccel [kdeinit]
    root 2576 0.0 0.0 28016 1060 ? Sl Mar12 0:00 /usr/lib/upower/upowerd
    userA 2601 0.0 0.0 1888 0 ? S Mar12 0:00 kwrapper4 ksmserver
    userA 2605 0.0 0.0 119976 3448 ? Sl Mar12 0:01 kdeinit4: ksmserver [kdeinit]
    root 2624 0.0 0.0 24100 1788 ? Sl Mar12 0:11 /usr/lib/udisks/udisks-daemon
    root 2625 0.0 0.0 6308 160 ? S Mar12 0:00 udisks-daemon: not polling any devices
    userA 2654 1.4 8.8 585524 339936 ? Sl Mar12 12:35 kwin -session 1014b108a5e8000134377289300000096170000_1363115313_870095
    userA 2727 0.0 0.0 61432 2768 ? S Mar12 0:01 /usr/bin/kactivitymanagerd
    userA 2804 0.0 0.1 266168 4040 ? Sl Mar12 0:02 /usr/bin/knotify4
    userA 2836 0.2 0.7 350760 28952 ? Sl Mar12 2:09 kdeinit4: plasma-desktop [kdeinit]
    userA 2978 0.0 0.0 61184 2696 ? S Mar12 0:01 /usr/bin/kuiserver
    userA 3048 0.0 0.0 110224 2292 ? S Mar12 0:03 kdeinit4: kaccess [kdeinit]
    userA 3055 0.0 0.0 104028 1480 ? Sl Mar12 0:00 kdeinit4: nepomukserver [kdeinit]
    userA 3058 0.2 0.9 315204 35676 ? Sl Mar12 2:27 kdeinit4: krunner [kdeinit]
    userA 3064 0.0 0.4 264532 15884 ? SNl Mar12 0:01 /usr/bin/nepomukservicestub nepomukstorage
    userA 3080 0.0 0.3 49512 12752 ? SNl Mar12 0:10 /usr/bin/virtuoso-t +foreground +configfile /tmp/virtuoso_Ti3064.ini +wait
    userA 3119 0.0 0.0 20364 1740 ? Sl Mar12 0:01 /usr/bin/akonadi_control
    userA 3123 0.0 0.0 248556 1212 ? Sl Mar12 0:03 akonadiserver
    userA 3130 0.0 0.2 253544 8312 ? Sl Mar12 0:19 /usr/sbin/mysqld --defaults-file=/home/userA/.local/share/akonadi//mysql.conf --dat
    userA 3228 0.0 0.0 60248 2340 ? S Mar12 0:01 /usr/bin/nepomukcontroller -session 1014b108a5e8000134377292700000096170011_136311
    userA 3231 0.0 0.2 272104 9184 ? Sl Mar12 0:02 kdeinit4: kmix [kdeinit] -session 1014b108a5e80001346397487000
    userA 3241 0.0 0.1 115340 4092 ? S Mar12 0:01 /usr/bin/kget -session 1014b108a5e8000135447427400000059430038_1363115313_756240
    userA 3274 0.0 0.0 67384 2356 ? SN Mar12 0:00 /usr/bin/nepomukservicestub nepomukbackupsync
    userA 3275 0.0 0.0 120176 2140 ? SN Mar12 0:00 /usr/bin/nepomukservicestub digikamnepomukservice
    userA 3276 0.0 0.1 90360 3996 ? SNl Mar12 0:02 /usr/bin/nepomukservicestub nepomukfilewatch
    userA 3280 0.0 0.1 80288 5564 ? SN Mar12 0:00 /usr/bin/nepomukservicestub nepomukqueryservice
    userA 3293 0.0 0.1 230116 6096 ? Sl Mar12 0:42 /usr/bin/pulseaudio --start --log-target=syslog
    rtkit 3295 0.0 0.0 20824 364 ? SNl Mar12 0:01 /usr/lib/rtkit/rtkit-daemon
    userA 3325 0.0 0.0 60340 2424 ? Sl Mar12 0:01 /usr/bin/akonadi_agent_launcher akonadi_akonotes_resource akonadi_akonotes_resourc
    userA 3326 0.0 0.0 60336 2536 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_akonotes_resource akonadi_akonotes_resourc
    userA 3327 0.0 0.0 59940 2528 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3328 0.0 0.0 59996 2372 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3329 0.0 0.0 59996 2556 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3330 0.0 0.0 59976 2360 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3331 0.0 0.0 59940 2332 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3340 0.0 0.0 59976 2396 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3342 0.0 0.0 59976 2360 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3343 0.0 0.0 60000 2380 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3344 0.0 0.0 59940 2540 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3345 0.0 0.0 59940 2516 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resourc
    userA 3346 0.0 0.0 60588 2484 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource_0
    userA 3348 0.0 0.0 60600 2508 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource_1
    userA 3349 0.0 0.0 60604 2492 ? Sl Mar12 0:00 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource_2
    userA 3354 0.0 0.0 60344 2472 ? Sl Mar12 0:01 /usr/bin/akonadi_agent_launcher akonadi_maildir_resource akonadi_maildir_resource_
    userA 3357 0.0 0.0 69112 2848 ? S Mar12 0:01 /usr/bin/akonadi_maildispatcher_agent --identifier akonadi_maildispatcher_agent
    userA 3366 0.0 0.0 64084 2884 ? S Mar12 0:01 /usr/bin/akonadi_nepomuk_calendar_feeder --identifier akonadi_nepomuk_calendar_fee
    userA 3367 0.0 0.0 63388 2708 ? S Mar12 0:01 /usr/bin/akonadi_nepomuk_contact_feeder --identifier akonadi_nepomuk_contact_feede
    userA 3368 0.0 0.0 107516 3424 ? S Mar12 0:01 /usr/bin/akonadi_nepomuk_email_feeder --identifier akonadi_nepomuk_email_feeder
    userA 3471 0.0 0.0 70708 2140 ? Sl Mar12 0:00 /usr/lib/kde4/libexec/polkit-kde-authentication-agent-1
    userA 3512 0.0 0.0 7536 752 ? S Mar12 0:00 /usr/lib/gvfs/gvfsd
    userA 3516 0.0 0.0 34272 204 ? Ssl Mar12 0:00 /usr/lib/gvfs//gvfs-fuse-daemon /home/userA/.gvfs
    root 3923 0.0 0.0 4668 408 ? Ss Mar12 0:00 /usr/sbin/cron -n
    userA 4848 0.0 0.0 8032 1068 ? S Mar12 0:00 /usr/lib/GConf/2/gconfd-2
    root 5490 0.0 0.0 0 0 ? S Mar12 0:08 [kworker/1:2]
    root 6174 0.0 0.0 0 0 ? S 02:12 0:03 [kworker/2:3]
    root 6331 0.0 0.0 0 0 ? S 03:30 0:00 [flush-8:0]
    userA 8569 1.8 5.6 766616 217576 ? Sl 08:43 1:33 /usr/lib/firefox/firefox
    userA 8601 0.0 0.4 64256 17276 ? S 08:43 0:00 /usr/lib/mozilla/kmozillahelper
    userA 8693 9.0 0.5 127856 21652 ? Rl 08:50 6:58 kdeinit4: konsole [kdeinit]
    userA 8701 0.0 0.0 5432 2436 pts/1 Ss 08:50 0:00 /bin/bash
    root 8751 0.0 0.0 7968 2352 pts/1 S+ 08:54 0:00 sudo clamscan -r -l logclamav.log / --exclude-dir=/media/
    root 8753 69.3 3.0 129096 117808 pts/1 R+ 08:54 50:19 clamscan -r -l logclamav.log / --exclude-dir=/media/
    root 8823 0.0 0.0 0 0 ? S 09:17 0:01 [kworker/2:2]
    root 8830 0.1 0.0 0 0 ? S 09:26 0:03 [kworker/3:0]
    root 8852 0.5 0.0 0 0 ? S 09:34 0:10 [kworker/0:0]
    root 8858 0.0 0.0 0 0 ? S 09:40 0:01 [kworker/2:0]
    userA 8945 0.0 0.0 5432 2432 pts/2 Ss 09:51 0:00 /bin/bash
    root 9174 0.1 0.0 0 0 ? S 09:53 0:01 [kworker/1:0]
    root 9177 0.5 0.0 0 0 ? S 09:55 0:03 [kworker/0:3]
    userA 9178 1.7 0.9 166588 36800 ? Sl 09:55 0:12 kdeinit4: kwrite [kdeinit]
    root 9192 0.0 0.0 0 0 ? S 09:57 0:00 [kworker/3:1]
    root 9227 0.0 0.0 0 0 ? S 10:00 0:00 [kworker/0:2]
    root 9239 0.0 0.0 0 0 ? S 10:00 0:00 [flush-8:32]
    userA 9280 0.3 0.0 5768 1700 ? SL 10:01 0:01 scdaemon --multi-server
    userA 9301 8.3 1.0 205940 39936 ? Sl 10:01 0:31 /usr/bin/vlc /windows/datos/Música/Caro emerald - Deleted scenes from the cutting
    root 9594 0.1 0.0 0 0 ? S 10:02 0:00 [kworker/3:2]
    root 9947 0.0 0.0 0 0 ? S 10:05 0:00 [kworker/2:1]
    userA 9987 0.0 0.1 102804 6520 ? Sl 10:05 0:00 kdeinit4: kio_trash [kdeinit] trash local:/tmp/ksocket-userA/kl
    userA 9988 0.0 0.1 93424 5280 ? S 10:05 0:00 kdeinit4: kio_file [kdeinit] file local:/tmp/ksocket-userA/klau
    userA 9997 0.0 0.1 93420 5280 ? S 10:05 0:00 kdeinit4: kio_file [kdeinit] file local:/tmp/ksocket-userA/klau
    userA 9998 0.1 0.3 112416 14036 ? S 10:05 0:00 kdeinit4: kio_thumbnail [kdeinit] thumbnail local:/tmp/ksocket
    root 10034 0.0 0.0 0 0 ? S 10:05 0:00 [kworker/0:1]
    userA 10128 1.5 0.6 143964 23404 ? Sl 10:05 0:01 /usr/lib/firefox/plugin-container /usr/lib/browser-plugins/libflashplayer.so -greo
    userA 10385 0.0 0.0 0 0 ? Z 10:07 0:00 [scdaemon] <defunct>
    userA 10387 0.0 0.0 2620 864 pts/2 R+ 10:07 0:00 ps aux
    I don't see above any process related with ftp, telnet, sshd (inactive below), etc. But above and below we can see dhcp6/dhcpcd/dhclient6 active.
    Services (sudo /sbin/service --status-all)
    redirecting to systemctl
    SuSEfirewall2_init.service - LSB: SuSEfirewall2 phase 1
    Loaded: loaded (/etc/init.d/SuSEfirewall2_init)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 938 ExecStart=/etc/init.d/SuSEfirewall2_init start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/SuSEfirewall2_init.service
    Checking the status of SuSEfirewall2 running
    redirecting to systemctl
    acpid.service - ACPI Event Daemon
    Loaded: loaded (/lib/systemd/system/acpid.service; enabled)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 993 ExecStart=/sbin/acpid (code=exited, status=0/SUCCESS)
    Main PID: 994 (acpid)
    CGroup: name=systemd:/system/acpid.service
    └ 994 /sbin/acpid
    redirecting to systemctl
    alsa-restore.service - Restore Sound Card State
    Loaded: loaded (/lib/systemd/system/alsa-restore.service; static)
    Active: inactive (dead) since Tue, 12 Mar 2013 19:09:29 +0000; 14h ago
    Process: 909 ExecStart=/usr/sbin/alsactl restore (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/alsa-restore.service
    redirecting to systemctl
    atd.service - LSB: Start AT batch job daemon
    Loaded: loaded (/etc/init.d/atd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/atd.service
    redirecting to systemctl
    autofs.service - LSB: automatic mounting of filesystems
    Loaded: loaded (/etc/init.d/autofs)
    Active: inactive (dead)
    CGroup: name=systemd:/system/autofs.service
    redirecting to systemctl
    avahi-daemon.service - Avahi mDNS/DNS-SD Stack
    Loaded: loaded (/lib/systemd/system/avahi-daemon.service; enabled)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Main PID: 1010 (avahi-daemon)
    Status: "Server startup complete. Host name is linux-7sgr.local. Local service cookie is 198690539."
    CGroup: name=systemd:/system/avahi-daemon.service
    └ 1010 avahi-daemon: running [linux-7sgr.local]
    redirecting to systemctl
    avahi-dnsconfd.service - Avahi DNS Configuration Daemon
    Loaded: loaded (/lib/systemd/system/avahi-dnsconfd.service; disabled)
    Active: inactive (dead)
    CGroup: name=systemd:/system/avahi-dnsconfd.service
    redirecting to systemctl
    bluez-coldplug.service - LSB: handles udev coldplug of bluetooth dongles
    Loaded: loaded (/etc/init.d/bluez-coldplug)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:52 +0000; 14h ago
    Process: 3920 ExecStart=/etc/init.d/bluez-coldplug start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/bluez-coldplug.service
    redirecting to systemctl
    cgroup.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    systemd-tmpfiles-setup.service - Recreate Volatile Files and Directories
    Loaded: loaded (/lib/systemd/system/systemd-tmpfiles-setup.service; static)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:29 +0000; 14h ago
    Process: 906 ExecStart=/bin/systemd-tmpfiles --create --remove (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/systemd-tmpfiles-setup.service
    redirecting to systemctl
    clock.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    crypto.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    crypto-early.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    cycle.service - LSB: Set default boot entry if called
    Loaded: loaded (/etc/init.d/boot.cycle)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:19 +0000; 14h ago
    Process: 470 ExecStart=/etc/init.d/boot.cycle start (code=exited, status=6/NOTCONFIGURED)
    CGroup: name=systemd:/system/cycle.service
    redirecting to systemctl
    device-mapper.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    Warning: Unit file changed on disk, 'systemctl --system daemon-reload' recommended.
    redirecting to systemctl
    dmraid.service - LSB: start dmraid
    Loaded: loaded (/etc/init.d/boot.dmraid)
    Active: inactive (dead)
    CGroup: name=systemd:/system/dmraid.service
    redirecting to systemctl
    klog.service - Early Kernel Boot Messages
    Loaded: loaded (/lib/systemd/system/klog.service; disabled)
    Active: inactive (dead)
    CGroup: name=systemd:/system/klog.service
    redirecting to systemctl
    ldconfig.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    loadmodules.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    Warning: Unit file changed on disk, 'systemctl --system daemon-reload' recommended.
    redirecting to systemctl
    localfs.service - Shadow /etc/init.d/boot.localfs
    Loaded: loaded (/lib/systemd/system/localfs.service; static)
    Active: inactive (dead)
    CGroup: name=systemd:/system/localfs.service
    redirecting to systemctl
    localnet.service - LSB: setup hostname and yp
    Loaded: loaded (/etc/init.d/boot.localnet)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:20 +0000; 14h ago
    Process: 503 ExecStart=/etc/init.d/boot.localnet start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/localnet.service
    redirecting to systemctl
    lvm.service - LSB: start logical volumes
    Loaded: loaded (/etc/init.d/boot.lvm)
    Active: inactive (dead)
    CGroup: name=systemd:/system/lvm.service
    redirecting to systemctl
    lvm_monitor.service - LSB: start monitoring of LVM VGs now filesystems are mounted rw
    Loaded: loaded (/etc/init.d/boot.lvm_monitor)
    Active: inactive (dead)
    CGroup: name=systemd:/system/lvm_monitor.service
    redirecting to systemctl
    md.service - LSB: Multiple Device RAID
    Loaded: loaded (/etc/init.d/boot.md)
    Active: inactive (dead)
    CGroup: name=systemd:/system/md.service
    redirecting to systemctl
    multipath.service - LSB: Create multipath device targets
    Loaded: loaded (/etc/init.d/boot.multipath)
    Active: inactive (dead)
    CGroup: name=systemd:/system/multipath.service
    redirecting to systemctl
    fsck-root.service - File System Check on Root Device
    Loaded: loaded (/lib/systemd/system/fsck-root.service; static)
    Active: inactive (dead)
    start condition failed at Tue, 12 Mar 2013 19:09:19 +0000; 14h ago
    CGroup: name=systemd:/system/fsck-root.service
    redirecting to systemctl
    swap.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    redirecting to systemctl
    systemd-sysctl.service - Apply Kernel Variables
    Loaded: loaded (/lib/systemd/system/systemd-sysctl.service; static)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:20 +0000; 14h ago
    Process: 528 ExecStart=/lib/systemd/systemd-sysctl (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/systemd-sysctl.service
    redirecting to systemctl
    udev.service - udev Kernel Device Manager
    Loaded: loaded (/lib/systemd/system/udev.service; static)
    Active: active (running) since Tue, 12 Mar 2013 19:09:19 +0000; 14h ago
    Main PID: 471 (udevd)
    CGroup: name=systemd:/system/udev.service
    ├ 471 /sbin/udevd
    ├ 643 /sbin/udevd
    └ 644 /sbin/udevd
    redirecting to systemctl
    cifs.service - LSB: Import remote SMB/ CIFS (MS Windows) file systems
    Loaded: loaded (/etc/init.d/cifs)
    Active: inactive (dead)
    CGroup: name=systemd:/system/cifs.service
    redirecting to systemctl
    clamav-milter.service - LSB: milter compatible mail scanner
    Loaded: loaded (/etc/init.d/clamav-milter)
    Active: inactive (dead)
    CGroup: name=systemd:/system/clamav-milter.service
    redirecting to systemctl
    clamd.service - LSB: virus scanner daemon
    Loaded: loaded (/etc/init.d/clamd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/clamd.service
    redirecting to systemctl
    cpufreq.service - LSB: CPUFreq modules loader
    Loaded: loaded (/etc/init.d/cpufreq)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:29 +0000; 14h ago
    Process: 916 ExecStart=/etc/init.d/cpufreq start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/cpufreq.service
    redirecting to systemctl
    cron.service - Command Scheduler
    Loaded: loaded (/lib/systemd/system/cron.service; enabled)
    Active: active (running) since Tue, 12 Mar 2013 19:09:52 +0000; 14h ago
    Main PID: 3923 (cron)
    CGroup: name=systemd:/system/cron.service
    └ 3923 /usr/sbin/cron -n
    redirecting to systemctl
    cups.service - LSB: CUPS printer daemon
    Loaded: loaded (/etc/init.d/cups)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 1062 ExecStart=/etc/init.d/cups start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/cups.service
    └ 1199 /usr/sbin/cupsd -C /etc/cups/cupsd.conf
    redirecting to systemctl
    dbus.service - D-Bus System Message Bus
    Loaded: loaded (/lib/systemd/system/dbus.service; static)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 1024 ExecStartPre=/bin/rm -f /var/run/dbus/pid (code=exited, status=0/SUCCESS)
    Process: 1003 ExecStartPre=/bin/dbus-uuidgen --ensure (code=exited, status=0/SUCCESS)
    Main PID: 1043 (dbus-daemon)
    CGroup: name=systemd:/system/dbus.service
    ├ 1043 /bin/dbus-daemon --system --address=systemd: --nofork --systemd-activation
    ├ 1801 /usr/lib/polkit-1/polkitd --no-debug
    ├ 2576 /usr/lib/upower/upowerd
    ├ 2624 /usr/lib/udisks/udisks-daemon
    ├ 2625 udisks-daemon: not polling any devices
    └ 3295 /usr/lib/rtkit/rtkit-daemon
    redirecting to systemctl
    dnsmasq.service - LSB: Starts internet name service masq caching server (DNS)
    Loaded: loaded (/etc/init.d/dnsmasq)
    Active: inactive (dead)
    CGroup: name=systemd:/system/dnsmasq.service
    Checking for service syslog: running
    redirecting to systemctl
    freshclam.service - LSB: virus scanner daemon
    Loaded: loaded (/etc/init.d/freshclam)
    Active: inactive (dead)
    CGroup: name=systemd:/system/freshclam.service
    Neither the variables MOUSEDEVICE and MOUSETYPE nor the variable GPM_PARAM
    is set in /etc/sysconfig/mouse
    Run 'yast mouse' to set up gpm
    redirecting to systemctl
    haveged.service - Haveged Entropy Gathering Daemon
    Loaded: loaded (/lib/systemd/system/haveged.service; enabled)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 995 ExecStart=/sbin/haveged -w 1024 -v 1 (code=exited, status=0/SUCCESS)
    Main PID: 1058 (haveged)
    CGroup: name=systemd:/system/haveged.service
    └ 1058 /sbin/haveged -w 1024 -v 1
    redirecting to systemctl
    joystick.service - LSB: Set up analog joysticks
    Loaded: loaded (/etc/init.d/joystick)
    Active: inactive (dead)
    CGroup: name=systemd:/system/joystick.service
    redirecting to systemctl
    kbd.service
    Loaded: masked (/dev/null)
    Active: inactive (dead)
    Warning: Unit file changed on disk, 'systemctl --system daemon-reload' recommended.
    redirecting to systemctl
    kexec.service - Reboot via kexec
    Loaded: loaded (/lib/systemd/system/kexec.service; static)
    Active: inactive (dead)
    CGroup: name=systemd:/system/kexec.service
    redirecting to systemctl
    ksysguardd.service - LSB: KDE ksysguard daemon
    Loaded: loaded (/etc/init.d/ksysguardd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/ksysguardd.service
    redirecting to systemctl
    lirc.service - LSB: lirc daemon
    Loaded: loaded (/etc/init.d/lirc)
    Active: inactive (dead)
    CGroup: name=systemd:/system/lirc.service
    redirecting to systemctl
    mdadmd.service - LSB: mdadmd daemon monitoring MD devices
    Loaded: loaded (/etc/init.d/mdadmd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/mdadmd.service
    redirecting to systemctl
    microcode.ctl.service - LSB: CPU microcode updater
    Loaded: loaded (/etc/init.d/microcode.ctl)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:29 +0000; 14h ago
    Process: 914 ExecStart=/etc/init.d/microcode.ctl start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/microcode.ctl.service
    redirecting to systemctl
    multipathd.service - LSB: Starts multipath daemon
    Loaded: loaded (/etc/init.d/multipathd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/multipathd.service
    redirecting to systemctl
    mysql.service - LSB: Start the MySQL database server
    Loaded: loaded (/etc/init.d/mysql)
    Active: inactive (dead)
    CGroup: name=systemd:/system/mysql.service
    redirecting to systemctl
    network.service - LSB: Configure the localfs depending network interfaces
    Loaded: loaded (/etc/init.d/network)
    Active: active (running) since Tue, 12 Mar 2013 19:09:52 +0000; 14h ago
    Process: 1061 ExecStart=/etc/init.d/network start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/network.service
    ├ 1992 /sbin/dhclient6 -6 -cf /var/lib/dhcp6/dhclient6.eth0.conf -lf /var/lib/dhcp6/dhclient6.eth0.lease -pf /var/run/dhclie...
    └ 2533 /sbin/dhcpcd --netconfig -L -E -HHH -c /etc/sysconfig/network/scripts/dhcpcd-hook -t 0 -h linux-7sgr eth0
    redirecting to systemctl
    network-remotefs.service - LSB: Configure the remote-fs depending network interfaces
    Loaded: loaded (/etc/init.d/network-remotefs)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:52 +0000; 14h ago
    Process: 3935 ExecStart=/etc/init.d/network-remotefs start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/network-remotefs.service
    redirecting to systemctl
    nfs.service - LSB: NFS client services
    Loaded: loaded (/etc/init.d/nfs)
    Active: inactive (dead)
    CGroup: name=systemd:/system/nfs.service
    redirecting to systemctl
    nmb.service - LSB: Samba NetBIOS naming service over IP
    Loaded: loaded (/etc/init.d/nmb)
    Active: inactive (dead)
    CGroup: name=systemd:/system/nmb.service
    redirecting to systemctl
    nscd.service - LSB: Start Name Service Cache Daemon
    Loaded: loaded (/etc/init.d/nscd)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 1008 ExecStart=/etc/init.d/nscd start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/nscd.service
    └ 1021 /usr/sbin/nscd
    redirecting to systemctl
    ntp.service - LSB: Network time protocol daemon (ntpd)
    Loaded: loaded (/etc/init.d/ntp)
    Active: inactive (dead)
    CGroup: name=systemd:/system/ntp.service
    redirecting to systemctl
    openvpn.service - LSB: OpenVPN tunnel
    Loaded: loaded (/etc/init.d/openvpn)
    Active: inactive (dead)
    CGroup: name=systemd:/system/openvpn.service
    redirecting to systemctl
    pm-profiler.service - LSB: Script infrastructure to enable/disable certain power management functions
    Loaded: loaded (/etc/init.d/pm-profiler)
    Active: inactive (dead)
    CGroup: name=systemd:/system/pm-profiler.service
    redirecting to systemctl
    Failed to issue method call: Unknown unit
    redirecting to systemctl
    powerd.service - LSB: Start the UPS monitoring daemon
    Loaded: loaded (/etc/init.d/powerd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/powerd.service
    redirecting to systemctl
    systemd-random-seed-load.service - Load Random Seed
    Loaded: loaded (/lib/systemd/system/systemd-random-seed-load.service; static)
    Active: inactive (dead) since Tue, 12 Mar 2013 19:09:22 +0000; 14h ago
    Process: 533 ExecStart=/lib/systemd/systemd-random-seed load (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/systemd-random-seed-load.service
    redirecting to systemctl
    raw.service - LSB: raw devices
    Loaded: loaded (/etc/init.d/raw)
    Active: inactive (dead)
    CGroup: name=systemd:/system/raw.service
    redirecting to systemctl
    rpcbind.service - LSB: TI-RPC program number mapper
    Loaded: loaded (/etc/init.d/rpcbind)
    Active: inactive (dead)
    CGroup: name=systemd:/system/rpcbind.service
    redirecting to systemctl
    rpmconfigcheck.service - LSB: rpm config file scan
    Loaded: loaded (/etc/init.d/rpmconfigcheck)
    Active: inactive (dead)
    CGroup: name=systemd:/system/rpmconfigcheck.service
    redirecting to systemctl
    rsyncd.service - LSB: Start the rsync server daemon
    Loaded: loaded (/etc/init.d/rsyncd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/rsyncd.service
    redirecting to systemctl
    setserial.service - LSB: Initializes the serial ports
    Loaded: loaded (/etc/init.d/setserial)
    Active: inactive (dead)
    CGroup: name=systemd:/system/setserial.service
    /usr/sbin/FOO not installed
    redirecting to systemctl
    smartd.service - Self Monitoring and Reporting Technology (SMART) Daemon
    Loaded: loaded (/lib/systemd/system/smartd.service; disabled)
    Active: inactive (dead)
    CGroup: name=systemd:/system/smartd.service
    redirecting to systemctl
    smb.service - LSB: Samba SMB/CIFS file and print server
    Loaded: loaded (/etc/init.d/smb)
    Active: inactive (dead)
    CGroup: name=systemd:/system/smb.service
    redirecting to systemctl
    smolt.service - LSB: Enables automated checkins with smolt
    Loaded: loaded (/etc/init.d/smolt)
    Active: inactive (dead)
    CGroup: name=systemd:/system/smolt.service
    redirecting to systemctl
    splash.service - LSB: Splash screen setup
    Loaded: loaded (/etc/init.d/splash)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 971 ExecStart=/etc/init.d/splash start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/splash.service
    redirecting to systemctl
    splash_early.service - LSB: kills animation after network start
    Loaded: loaded (/etc/init.d/splash_early)
    Active: active (exited) since Tue, 12 Mar 2013 19:09:52 +0000; 14h ago
    Process: 3921 ExecStart=/etc/init.d/splash_early start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/splash_early.service
    redirecting to systemctl
    sshd.service - LSB: Start the sshd daemon
    Loaded: loaded (/etc/init.d/sshd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/sshd.service
    redirecting to systemctl
    syslog.service - System Logging Service
    Loaded: loaded (/lib/systemd/system/syslog.service; enabled)
    Active: active (running) since Tue, 12 Mar 2013 19:09:30 +0000; 14h ago
    Process: 984 ExecStart=/sbin/rsyslogd -c 5 -f /etc/rsyslog.conf (code=exited, status=0/SUCCESS)
    Process: 982 ExecStartPre=/var/run/rsyslog/addsockets (code=exited, status=0/SUCCESS)
    Process: 923 ExecStartPre=/bin/systemctl stop systemd-kmsg-syslogd.service (code=exited, status=0/SUCCESS)
    Main PID: 988 (rsyslogd)
    CGroup: name=systemd:/system/syslog.service
    └ 988 /sbin/rsyslogd -c 5 -f /etc/rsyslog.conf
    redirecting to systemctl
    xdm.service - LSB: X Display Manager
    Loaded: loaded (/etc/init.d/xdm)
    Active: active (running) since Tue, 12 Mar 2013 19:09:31 +0000; 14h ago
    Process: 1068 ExecStart=/etc/init.d/xdm start (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/xdm.service
    ├ 1312 /usr/bin/kdm
    └ 1427 /usr/bin/Xorg -br :0 vt7 -nolisten tcp -auth /var/lib/xdm/authdir/authfiles/A:0-FxZ3mb
    redirecting to systemctl
    xfs.service - LSB: X Font Server
    Loaded: loaded (/etc/init.d/xfs)
    Active: inactive (dead)
    CGroup: name=systemd:/system/xfs.service
    redirecting to systemctl
    xinetd.service - LSB: Starts the xinet daemon. Be aware that xinetd doesn't start if no service is configured to run under it. To enable xinetd services go to YaST Network Services (xinetd) section.
    Loaded: loaded (/etc/init.d/xinetd)
    Active: inactive (dead)
    CGroup: name=systemd:/system/xinetd.service
    redirecting to systemctl
    ypbind.service - LSB: Start ypbind (necessary for a NIS client)
    Loaded: loaded (/etc/init.d/ypbind)
    Active: inactive (dead)
    CGroup: name=systemd:/system/ypbind.service
    Mozilla Firefox 14.0.1
    Plugins:
    - IcedTea-Web Plugin (using IcedTea-Web 1.2 (suse-3.1-i386)) - to execute Java Applets
    - PackageKit - for installing Applications (new) - First time I see this plugin, but probably always have been here in the Firefox of Opensuse.
    - Shockwave Flash 11.2 r202
    - Silverlight Plug-In 4.0.51204.0
    Addons:
    - Adblock Plus
    - All-in-One Sidebar
    - Blank Your Monitor + Easy Reading
    - DownloadHelper
    - Novell Moonlight
    - openSUSE Firefox extensions
    - Personas
    - Wiktionary and Google Translate
    I don't understand the question 'Are the log in attempts in the logs legitimate, or were they at a time when you were not attempting to login?', but I will try to answer something related:
    The computerA is usually connected (nearly 24/7) and between the normal using (not attack identified) and the notification of modification of the bookmarks (possible attack performed) it was 1 day in between. They didn't need to log in again, because the computer was switched on and only with the screen blacked out.
    Router
    The router has the possibility to be used by wireless, but is deactivated. The only wires connected directly to the router goes to the computerA. There is no way to be tapped. Impossible to be other users (intruders) from the same LAN.
    Only two possibilities:
    - tap the wire in some point from our house to the DSLAM (telco's), the wires of the neighborhood.
    - attack from outside
    Router has a easy password to access, but I think first it has to be in the LAN to can connect, isn't it?
    For sure none of the legitimate users access the router.
    I have to say, I trust in the legitimate users 120%.
    I have changed the physical address to show it here.
    ARP Table
    IP address Physical Address Interface Static
    192.168.1.33 sf:sf:sf:sf:sf:sf eth0 no
    Routing Table
    Destination Netmask Gateway Interface Metric
    0.0.0.0 0.0.0.0 0.0.0.0 ppp-0 1
    IP Filter Configuration
    IP Filtering: Disabled
    Port Forwarding Configuration
    Name Protocol External Port Internal IP Internal Port
    ppp-0
    eMULE TCP 37000 192.168.1.33 37000
    eMULE UDP 8000 192.168.1.33 8000
    Vitual Server Configuration
    DMZ Host
    Interface DMZ Host
    ppp-0 N/A
    ppp-1 N/A
    MAC Filtering
    Disabled
    Quality of Service Configuration
    Traffic Name Priority VLAN ID Min-Max IP TOS 802.1p [Source IP] AddressNetmask Start Port End Port [Destination IP] AddressNetmask Start Port End Port
    Profile Name: voip
    Rule: voip 7 -1--1 Normal Service -1 0.0.0.0 0.0.0.0 0 65535 81.47.224.0 255.255.252.0 0 65535
    NMAP in Computer A
    sudo nmap -v -sT 192.168.1.0/24
    Starting Nmap 5.61TEST2 ( http://nmap.org ) at 2013-03-13 10:43 WET
    Initiating ARP Ping Scan at 10:43
    Scanning 33 hosts [1 port/host]
    Completed ARP Ping Scan at 10:43, 0.65s elapsed (33 total hosts)
    Initiating Parallel DNS resolution of 33 hosts. at 10:43
    Completed Parallel DNS resolution of 33 hosts. at 10:43, 0.06s elapsed
    Initiating Parallel DNS resolution of 1 host. at 10:43
    Completed Parallel DNS resolution of 1 host. at 10:43, 0.06s elapsed
    Initiating Connect Scan at 10:43
    Scanning 192.168.1.1 [1000 ports]
    Discovered open port 80/tcp on 192.168.1.1
    Discovered open port 23/tcp on 192.168.1.1
    Discovered open port 21/tcp on 192.168.1.1
    Discovered open port 53/tcp on 192.168.1.1
    Discovered open port 8008/tcp on 192.168.1.1
    Discovered open port 2800/tcp on 192.168.1.1
    Completed Connect Scan at 10:43, 1.11s elapsed (1000 total ports)
    Nmap scan report for 192.168.1.1
    Host is up (0.58s latency).
    Not shown: 994 closed ports
    PORT STATE SERVICE
    21/tcp open ftp
    23/tcp open telnet
    53/tcp open domain
    80/tcp open http
    2800/tcp open acc-raid
    8008/tcp open http
    MAC Address: sf:sf:sf:sf:sf:sf (sfsfsfs.)
    Initiating ARP Ping Scan at 10:43
    Scanning 222 hosts [1 port/host]
    Completed ARP Ping Scan at 10:43, 9.24s elapsed (222 total hosts)
    Initiating Connect Scan at 10:43
    Scanning 192.168.1.33 [1000 ports]
    Completed Connect Scan at 10:43, 0.01s elapsed (1000 total ports)
    Nmap scan report for 192.168.1.33
    Host is up (0.00022s latency).
    All 1000 scanned ports on 192.168.1.33 are closed
    Read data files from: /usr/bin/../share/nmap
    Nmap done: 256 IP addresses (2 hosts up) scanned in 11.26 seconds
    Raw packets sent: 509 (14.252KB) | Rcvd: 1 (28B)
    sudo nmap -sT -O localhost
    Starting Nmap 5.61TEST2 ( http://nmap.org ) at 2013-03-13 10:47 WET
    Nmap scan report for localhost (127.0.0.1)
    Host is up (0.000071s latency).
    Not shown: 999 closed ports
    PORT STATE SERVICE
    631/tcp open ipp
    No exact OS matches for host (If you know what OS is running on it, see http://nmap.org/submit/ ).
    TCP/IP fingerprint:
    OS:SCAN(
    Network Distance: 0 hops
    OS detection performed. Please report any incorrect results at http://nmap.org/submit/ .
    Nmap done: 1 IP address (1 host up) scanned in 12.63 seconds
    'Are you certain that malware running in the browser did not change things?'
    - I don't know how to detect if I have malware in my browser, but I don't see anything like weird addons, advertisement,..
    'No chance that your users were phished?'
    - No idea how to know if they were phished, and how to know know looking the computer.
    'Java exploits?'
    - The same. No idea how to know. I posted the version of icedtea to run java applets. I think they are not used to execute java applets on the Web, they usually use it for e-mail + digital newspapers.
    I see in port forwarding two ports for emule (really weird... several years without using that program), but then nmap doesn't detect open that ports. Why?
    Computer B - The next results is without internet connection. (If I connect ethernet I will need other services like iptables, dhcpcd,... that are not listed now)
    Executed without internet connection:
    systemctl list-units --full | grep active
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:01.0-0000:01:00.1-sound-card1.device loaded active plugged /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1b.0/sound/card0
    sys-devices-pci0000:00-0000:00:1c.0-0000:02:00.0-net-wlan0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/net/wlan0
    sys-devices-pci0000:00-0000:00:1c.3-0000:06:00.0-net-eth0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.3/0000:06:00.0/net/eth0
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device loaded active plugged ST9500325AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged ST9500325AS
    sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-module-fuse.device loaded active plugged /sys/module/fuse
    sys-subsystem-net-devices-eth0.device loaded active plugged /sys/subsystem/net/devices/eth0
    sys-subsystem-net-devices-wlan0.device loaded active plugged /sys/subsystem/net/devices/wlan0
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    media-Datos.mount loaded active mounted /media/Datos
    sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted /tmp
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    cronie.service loaded active running Periodic Command Scheduler
    dbus.service loaded active running D-Bus System Message Bus
    [email protected] loaded active running Getty on tty1
    iptables.service loaded active exited Packet Filtering Framework
    kdm.service loaded active running K Display Manager
    lm_sensors.service loaded active exited Initialize hardware monitoring sensors
    polkit.service loaded active running Authorization Manager
    rc-local.service loaded active exited /etc/rc.local Compatibility
    syslog-ng.service loaded active running System Logger Daemon
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded active exited Load Kernel Modules
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    udisks2.service loaded active running Disk Manager
    upower.service loaded active running Daemon for power management
    dbus.socket loaded active running D-Bus System Message Bus Socket
    dmeventd.socket loaded active listening Device-mapper event daemon FIFOs
    lvmetad.socket loaded active listening LVM2 metadata daemon socket
    syslog.socket loaded active running Syslog Socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active listening udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-sda6.swap loaded active active /dev/sda6
    arch-daemons.target loaded active active Arch Daemons
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User
    remote-fs.target loaded active active Remote File Systems
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    syslog.target loaded active active Syslog
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    76 loaded units listed. Pass --all to see loaded but inactive units, too.
    sudo nmap -v -sT localhost
    Starting Nmap 6.25 ( http://nmap.org ) at 2013-03-13 13:01 CET
    mass_dns: warning: Unable to determine any DNS servers. Reverse DNS is disabled. Try using --system-dns or specify valid servers with --dns-servers
    Initiating Connect Scan at 13:01
    Scanning localhost (127.0.0.1) [1000 ports]
    Completed Connect Scan at 13:01, 0.03s elapsed (1000 total ports)
    Nmap scan report for localhost (127.0.0.1)
    Host is up (0.00058s latency).
    Other addresses for localhost (not scanned): 127.0.0.1
    rDNS record for 127.0.0.1: localhost.localdomain
    All 1000 scanned ports on localhost (127.0.0.1) are closed
    Read data files from: /usr/bin/../share/nmap
    Nmap done: 1 IP address (1 host up) scanned in 0.13 seconds
    Raw packets sent: 0 (0B) | Rcvd: 0 (0B)
    [Connecting to the LAN and therefore to Internet]
    If I try to connect to internet now, it doesn't work. I can do sudo ifconfig eth0 up, but sudo dhcpcd eth0 doesn't work.
    It says: eth0 sending IPv6 Router Solicitation.... finally no IPv6 Routers available. Timed out.    I know that it has to be IPv4, but yesterday it worked, today not.
    If I try to do ping 192.168.1.1 it says: network is unreachable.
    I have to edit /etc/dhcpcd.conf manually and modify this lines:
    #noipv4ll
    noipv6rs
    Also, modify the /etc/hosts and comment ::1 line
    But as I said, i didn't modified them to the inverse, and yesterday (first time I connect computerB to the LAN of computerA it worked correctly the dhcpcd for ipv4)
    As I see, still not network connection... at least dhcpcd has assigned me an ip, etc, but it is not the normal in range 192.168.1.x (as the router 192.168.1.1 and the other pc 192.168.1.33)
    but 169.254.67.213, netmask 255.255.0.0 and broadcast 169.254.255.255
    Something weird... and of course, still network is unreachable if I try to do ping to google or the router.
    I have to reset manually the router to can work properly from the computerB.
    Anormal behaviour
    The point is after I connect to the Internet (ping that works) the computer get slowly, emacs doesn't work, if I try to open another terminal it says KDEInit could not launch '/usr/bin/konsole'
    So, something goes wrong.
    uname -r
    3.7.9-2-ARCH
    NMAP from ComputerA to ComputerB
    Initiating Connect Scan at 13:51
    Scanning 192.168.1.34 [1000 ports]
    Completed Connect Scan at 13:52, 50.80s elapsed (1000 total ports)
    Nmap scan report for 192.168.1.34
    Host is up (0.98s latency).
    Not shown: 999 filtered ports
    PORT STATE SERVICE
    80/tcp closed http
    MAC Address: xf:xf:xf:xf:xf:xf (xfxfxf.)
    Read data files from: /usr/bin/../share/nmap
    Nmap done: 256 IP addresses (3 hosts up) scanned in 62.24 seconds
    Raw packets sent: 508 (14.224KB) | Rcvd: 2 (56B)
    ps aux in computerB
    F S UID PID PPID C PRI NI ADDR SZ WCHAN TTY TIME CMD
    4 S 0 1 0 0 80 0 - 1261 epoll_ ? 00:00:00 systemd
    1 S 0 2 0 0 80 0 - 0 kthrea ? 00:00:00 kthreadd
    1 S 0 3 2 0 80 0 - 0 smpboo ? 00:00:00 ksoftirqd/0
    1 S 0 5 2 0 60 -20 - 0 worker ? 00:00:00 kworker/0:0H
    1 S 0 7 2 0 60 -20 - 0 worker ? 00:00:00 kworker/u:0H
    1 S 0 8 2 0 -40 - - 0 cpu_st ? 00:00:00 migration/0
    1 S 0 9 2 0 80 0 - 0 rcu_gp ? 00:00:00 rcu_preempt
    1 S 0 10 2 0 80 0 - 0 rcu_gp ? 00:00:00 rcu_bh
    1 S 0 11 2 0 80 0 - 0 rcu_gp ? 00:00:00 rcu_sched
    5 S 0 12 2 0 -40 - - 0 smpboo ? 00:00:00 watchdog/0
    5 S 0 13 2 0 -40 - - 0 smpboo ? 00:00:00 watchdog/1
    1 S 0 14 2 0 80 0 - 0 smpboo ? 00:00:00 ksoftirqd/1
    1 S 0 15 2 0 -40 - - 0 cpu_st ? 00:00:00 migration/1
    1 S 0 17 2 0 60 -20 - 0 worker ? 00:00:00 kworker/1:0H
    1 S 0 18 2 0 60 -20 - 0 rescue ? 00:00:00 cpuset
    1 S 0 19 2 0 60 -20 - 0 rescue ? 00:00:00 khelper
    5 S 0 20 2 0 80 0 - 0 devtmp ? 00:00:00 kdevtmpfs
    1 S 0 21 2 0 60 -20 - 0 rescue ? 00:00:00 netns
    1 S 0 22 2 0 80 0 - 0 bdi_fo ? 00:00:00 bdi-default
    1 S 0 23 2 0 60 -20 - 0 rescue ? 00:00:00 kblockd
    1 S 0 26 2 0 80 0 - 0 watchd ? 00:00:00 khungtaskd
    1 S 0 27 2 0 80 0 - 0 kswapd ? 00:00:00 kswapd0
    1 S 0 28 2 0 85 5 - 0 ksm_sc ? 00:00:00 ksmd
    1 S 0 29 2 0 99 19 - 0 khugep ? 00:00:00 khugepaged
    1 S 0 30 2 0 80 0 - 0 fsnoti ? 00:00:00 fsnotify_mark
    1 S 0 31 2 0 60 -20 - 0 rescue ? 00:00:00 crypto
    1 S 0 35 2 0 60 -20 - 0 rescue ? 00:00:00 kthrotld
    1 S 0 36 2 0 80 0 - 0 worker ? 00:00:00 kworker/1:2
    1 S 0 37 2 0 60 -20 - 0 rescue ? 00:00:00 deferwq
    1 S 0 78 2 0 80 0 - 0 hub_th ? 00:00:00 khubd
    1 S 0 79 2 0 60 -20 - 0 rescue ? 00:00:00 ata_sff
    1 S 0 80 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_0
    1 S 0 81 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_1
    1 S 0 82 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_2
    1 S 0 83 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_3
    1 S 0 84 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_4
    1 S 0 85 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_5
    1 S 0 88 2 0 80 0 - 0 worker ? 00:00:00 kworker/u:4
    1 S 0 89 2 0 80 0 - 0 worker ? 00:00:00 kworker/u:5
    1 S 0 92 2 0 80 0 - 0 scsi_e ? 00:00:00 scsi_eh_6
    1 S 0 93 2 0 80 0 - 0 usb_st ? 00:00:00 usb-storage
    1 S 0 96 2 0 60 -20 - 0 worker ? 00:00:00 kworker/1:1H
    1 S 0 97 2 0 60 -20 - 0 worker ? 00:00:00 kworker/0:1H
    1 S 0 98 2 0 80 0 - 0 worker ? 00:00:00 kworker/0:2
    1 S 0 106 2 0 80 0 - 0 kjourn ? 00:00:00 jbd2/sda5-8
    1 S 0 107 2 0 60 -20 - 0 rescue ? 00:00:00 ext4-dio-unwrit
    4 S 0 124 1 0 80 0 - 2752 epoll_ ? 00:00:00 systemd-udevd
    4 S 0 129 1 9 80 0 - 69899 epoll_ ? 00:02:51 systemd-journal
    1 S 0 136 2 0 60 -20 - 0 rescue ? 00:00:00 iprt
    1 S 0 217 2 0 60 -20 - 0 rescue ? 00:00:00 kpsmoused
    1 S 0 220 2 0 80 0 - 0 bdi_wr ? 00:00:00 flush-8:0
    1 S 0 238 2 0 60 -20 - 0 rescue ? 00:00:00 led_workqueue
    1 S 0 239 2 0 60 -20 - 0 rescue ? 00:00:00 cfg80211
    1 S 0 270 2 0 60 -20 - 0 rescue ? 00:00:00 ttm_swap
    1 S 0 272 2 0 60 -20 - 0 rescue ? 00:00:00 hd-audio0
    1 S 0 341 2 0 60 -20 - 0 rescue ? 00:00:00 hd-audio1
    5 S 0 345 1 0 80 0 - 1231 fuse_d ? 00:00:00 mount.ntfs-3g
    4 S 0 350 1 0 80 0 - 1902 epoll_ ? 00:00:00 syslog-ng
    4 S 0 354 1 0 80 0 - 1202 hrtime ? 00:00:00 crond
    4 S 81 355 1 0 80 0 - 834 epoll_ ? 00:00:00 dbus-daemon
    4 S 0 356 1 0 80 0 - 834 epoll_ ? 00:00:00 systemd-logind
    4 S 0 363 1 0 80 0 - 953 n_tty_ tty1 00:00:00 agetty
    4 S 0 364 1 0 80 0 - 992 poll_s ? 00:00:00 kdm
    4 S 0 391 364 0 80 0 - 20112 poll_s tty7 00:00:12 X
    5 S 0 400 364 0 80 0 - 1367 sigsus ? 00:00:00 kdm
    4 S 1000 412 400 0 80 0 - 1299 wait ? 00:00:00 startkde
    1 S 1000 423 1 0 80 0 - 906 poll_s ? 00:00:00 dbus-launch
    1 S 1000 424 1 0 80 0 - 1027 epoll_ ? 00:00:00 dbus-daemon
    1 S 1000 450 1 0 80 0 - 1184 poll_s ? 00:00:00 gpg-agent
    1 S 1000 453 1 0 80 0 - 1054 poll_s ? 00:00:00 ssh-agent
    5 S 0 468 1 0 80 0 - 508 pipe_w ? 00:00:00 start_kdeinit
    1 S 1000 469 1 0 80

  • Error instalation CE 7.2

    Hi, Im getting this error.
    does anyone know what it means?
    An error occurred while processing option SAP NetWeaver Composition Environment (CE) 7.2 > Installation Options > Application Server Java > Standard System > Standard System( Last error reported by the step :Assertion failed: Exception in thread "main" com.sap.sdb.sllib.api.exceptions.DatabaseCommandException: com.sap.sdb.sllib.api.exceptions.ToolException: Error during command: C:\sapdb\programs\pgm\dbmcli.exe -R "E:\sapdb\DB1\db" db_create DB1 , Error! Connection failed to node (local) for database (no dbname): dbmsrv executable not found at com.sap.sdb.sllib.utils.DbCommandForApi.runCommand(DbCommandForApi.java:126) at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain. (SdbCmdMain.java:64) at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.main(SdbCmdMain.java:207)). You can now:
    Choose Retry to repeat the current step.
    Choose View Log to get more information about the error.
    Stop the option and continue with it later.
    Thanks.
    RP

    C:\Program Files\sapinst_instdir\NW72\INSTALL\NW72\ADA\STD\LogAnalyzer.html
    1029 FCO-00011 An error occurred at step:
    ERROR 2010-02-17 11:11:25.671 [sixxcstepexecute.cpp:988]
    FCO-00011 The step sdb_create_db_instance with step key SDB_INSTANCE_CREATE -> sdb_create_db_instance was executed with status ERROR
    Logfile location: C:\Program Files\sapinst_instdir\NW72\INSTALL\NW72\ADA\STD\sapinst.log
    C:\Program Files\sapinst_instdir\NW72\INSTALL\NW72\ADA\STD\sapinst.log
    ERROR 2010-02-17 11:11:25.593
    CJS-00030  Assertion failed: Exception in thread "main" com.sap.sdb.sllib.api.exceptions.DatabaseCommandException: com.sap.sdb.sllib.api.exceptions.ToolException: Error during command:  E:\sapdb\programs\pgm\dbmcli.exe -R "E:\sapdb\DB1\db" db_create DB1 , Error! Connection failed to node (local) for database (no dbname): dbmsrv executable not found
         at com.sap.sdb.sllib.utils.DbCommandForApi.runCommand(DbCommandForApi.java:126)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.<init>(SdbCmdMain.java:64)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.main(SdbCmdMain.java:207)
    ERROR 2010-02-17 11:11:25.625
    MUT-03025  Caught ESAPinstException in Modulecall: Exception in thread "main" com.sap.sdb.sllib.api.exceptions.DatabaseCommandException: com.sap.sdb.sllib.api.exceptions.ToolException: Error during command:  E:\sapdb\programs\pgm\dbmcli.exe -R "E:\sapdb\DB1\db" db_create DB1 , Error! Connection failed to node (local) for database (no dbname): dbmsrv executable not found
         at com.sap.sdb.sllib.utils.DbCommandForApi.runCommand(DbCommandForApi.java:126)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.<init>(SdbCmdMain.java:64)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.main(SdbCmdMain.java:207)
    ERROR 2010-02-17 11:11:25.671
    FCO-00011  The step sdb_create_db_instance with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|1|0|NW_ADA_DB|ind|ind|ind|ind|8|0|SdbPreInstanceDialogs|ind|ind|ind|ind|4|0|SdbInstanceDialogs|ind|ind|ind|ind|1|0|SDB_INSTANCE_CREATE|ind|ind|ind|ind|0|0|sdb_create_db_instance was executed with status ERROR ( Last error reported by the step :Assertion failed: Exception in thread "main" com.sap.sdb.sllib.api.exceptions.DatabaseCommandException: com.sap.sdb.sllib.api.exceptions.ToolException: Error during command:  E:\sapdb\programs\pgm\dbmcli.exe -R "E:\sapdb\DB1\db" db_create DB1 , Error! Connection failed to node (local) for database (no dbname): dbmsrv executable not found
         at com.sap.sdb.sllib.utils.DbCommandForApi.runCommand(DbCommandForApi.java:126)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.<init>(SdbCmdMain.java:64)
         at com.sap.sdt.ins.component.sdb.main.cmd.SdbCmdMain.main(SdbCmdMain.java:207)).
    INFO 2010-02-17 11:11:26.375
    Creating file C:\Program Files\sapinst_instdir\NW72\INSTALL\NW72\ADA\STD\__instana_tmp.xml.
    Thanks

  • Multiple XML HTTP Data sources sequentially

    Hi,
    We are creating a report using multiple XML HTTP Data sources sequentially.
    The Report uses multiple XML HTTP Data sources sequentially; the report creation fails or delayed. We would like to join the datasources after accessing from the HTTP Server.
    At the same time the same XML files when locally accessing as data sources, the report is getting created.
    Is there any alternate solution for XML HTTP Data Source Access. Or in which way I can proceed with this.
    Thanks,
    Unni

    I am not able to use datasets here.
    The context is as below.
    I am running an HTTP server (XML-RPC program),which will generate an XML output as defined with a local XML Schema.
    Here I have multiple HTTP requests ,each will generate multiple XML outputs.
    I am using XML and WebServices Connection where I will provide like below,
    (Please note file1,file2 are normal text files with data corresponds to xsds.)
    HTTP(s) XML URL : http://localhost:8002/ReadTable?name=file1
    Local Schema File : E:\Test\file1.xsd
    HTTP(s) XML URL : http://localhost:8002/ReadTable?name=file2
    Local Schema File : E:\Test\file2.xsd
    Like this I am able to create multiple XML outputs through HTTP requests.(only file1),which means while creating reports the sequential requests are not handling properly.
    My report will join say two of theese files. But at the time of report creation it will ask of only runtime parameter of first request in the join.
    Here The report will generate only with data from first text(data) file.(file1)
    Hope you got a clarity about the proble.

  • After boot can't mount SDS file systems on 3300 mount: cannot mount /dev/md

    Hi
    I have a SUNW,Netra-440 with two SE 3300 SCSI each with two controllers. The server was working fine but after a boot, it can not see the metadevices stored in the 3300.
    I have tried restarting the SE3300 and a boot -r from ok prompt but I still can see those disks or partitions.
    Metaset Import
    metaset: log01: setname "appvol": no such set
    mount all SVM filesystems for group appvol
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d101
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d102
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d103
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d104
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d105
    mount: No such device
    mount: cannot mount /dev/md/appvol/dsk/d106
    metaset: log01: setname "dbvol": no such set
    mount all SVM filesystems for group dbvol
    mount: No such device
    mount: cannot mount /dev/md/dbvol/dsk/d107
    mount: No such device
    mount: cannot mount /dev/md/dbvol/dsk/d108
    i can see the devices in /dev/md/appvol but i can't mount them.
    Any ideas what this could be? using metaset shows nothing, metastat -s dbvol hangs.
    Am I missing some patch or am I missing something here? is the SE3300 damaged? or is it a problem with SDS (solstice). I have solaris 9.
    The system was working fine until we had to boot and power off to perform power tests in the rack.
    thanks
    Ryck
    this is the output of prtdiag
    root@log01 >prtdiag
    System Configuration: Sun Microsystems sun4u Netra 440
    System clock frequency: 177 MHZ
    Memory size: 8GB
    ==================================== CPUs ====================================
    E$ CPU CPU Temperature
    CPU Freq Size Implementation Mask Die Amb. Status Location
    0 1593 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 - - online -
    1 1593 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 - - online -
    2 1593 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 - - online -
    3 1593 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 - - online -
    ================================= IO Devices =================================
    Bus Freq Slot + Name +
    Type MHz Status Path Model
    pci 66 PCI5 scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1c,600000/scsi@1
    pci 66 PCI5 scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1c,600000/scsi@1,1
    pci 66 MB pci108e,abba (network) SUNW,pci-ce
    okay /pci@1c,600000/network@2
    pci 66 PCI4 scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1d,700000/scsi@1
    pci 66 PCI4 scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1d,700000/scsi@1,1
    pci 66 PCI2 pci100b,35 (network) SUNW,pci-x-qge
    okay /pci@1d,700000/pci@2/network@0
    pci 66 PCI2 pci100b,35 (network) SUNW,pci-x-qge
    okay /pci@1d,700000/pci@2/network@1
    pci 66 PCI2 pci100b,35 (network) SUNW,pci-x-qge
    okay /pci@1d,700000/pci@2/network@2
    pci 66 PCI2 pci100b,35 (network) SUNW,pci-x-qge
    okay /pci@1d,700000/pci@2/network@3
    pci 33 MB isa/su (serial)
    okay /pci@1e,600000/isa@7/serial@0,3f8
    pci 33 MB isa/su (serial)
    okay /pci@1e,600000/isa@7/serial@0,2e8
    pci 33 MB isa/rmc-comm-rmc_comm (seria+
    okay /pci@1e,600000/isa@7/rmc-comm@0,3e8
    pci 33 PCI0 SUNW,XVR-100 (display) SUNW,375-3290
    okay /pci@1e,600000/SUNW,XVR-100
    pci 33 MB pciclass,0c0310 (usb)
    okay /pci@1e,600000/usb@a
    pci 33 MB pciclass,0c0310 (usb)
    okay /pci@1e,600000/usb@b
    pci 33 MB pci10b9,5229 (ide)
    okay /pci@1e,600000/ide@d
    pci 66 MB pci108e,abba (network) SUNW,pci-ce
    okay /pci@1f,700000/network@1
    pci 66 MB scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1f,700000/scsi@2
    pci 66 MB scsi-pci1000,30 (scsi-2) LSI,1030
    okay /pci@1f,700000/scsi@2,1
    ============================ Memory Configuration ============================
    Segment Table:
    Base Address Size Interleave Factor Contains
    0x0 2GB 4 BankIDs 0,1,2,3
    0x1000000000 2GB 4 BankIDs 16,17,18,19
    0x2000000000 2GB 4 BankIDs 32,33,34,35
    0x3000000000 2GB 4 BankIDs 48,49,50,51
    Bank Table:
    Physical Location
    ID ControllerID GroupID Size Interleave Way
    0 0 0 512MB 0,1,2,3
    1 0 1 512MB
    2 0 1 512MB
    3 0 0 512MB
    16 1 0 512MB 0,1,2,3
    17 1 1 512MB
    18 1 1 512MB
    19 1 0 512MB
    32 2 0 512MB 0,1,2,3
    33 2 1 512MB
    34 2 1 512MB
    35 2 0 512MB
    48 3 0 512MB 0,1,2,3
    49 3 1 512MB
    50 3 1 512MB
    51 3 0 512MB
    Memory Module Groups:
    ControllerID GroupID Labels Status
    0 0 C0/P0/B0/D0
    0 0 C0/P0/B0/D1
    0 1 C0/P0/B1/D0
    0 1 C0/P0/B1/D1
    1 0 C1/P0/B0/D0
    1 0 C1/P0/B0/D1
    1 1 C1/P0/B1/D0
    1 1 C1/P0/B1/D1
    2 0 C2/P0/B0/D0
    2 0 C2/P0/B0/D1
    2 1 C2/P0/B1/D0
    2 1 C2/P0/B1/D1
    3 0 C3/P0/B0/D0
    3 0 C3/P0/B0/D1
    3 1 C3/P0/B1/D0
    3 1 C3/P0/B1/D1
    root@log01 >

    Hi,
    thanks for your answer.
    Yes format displays the physical devices, but metadb -i only shows the internal disks of the netra 440, not the ones in the 3320. metadb -s dbvol -i doesnt show anything.
    metaset which is supposed to show me the metadevices, says the program is not registered.
    cat /etc/lvm/md.tab has the configuration but since the scsi can be seen, the devices aren't mounted.
    Any suggestions?
    Cheers
    Oscar
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c1t0d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848> bootdisk
    /pci@1f,700000/scsi@2/sd@0,0
    1. c1t1d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848> bootmirr
    /pci@1f,700000/scsi@2/sd@1,0
    2. c1t2d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848> spare1
    /pci@1f,700000/scsi@2/sd@2,0
    3. c1t3d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848> spare2
    /pci@1f,700000/scsi@2/sd@3,0
    4. c2t8d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> appvol
    /pci@1c,600000/scsi@1/sd@8,0
    5. c2t9d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol01
    /pci@1c,600000/scsi@1/sd@9,0
    6. c2t10d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol02
    /pci@1c,600000/scsi@1/sd@a,0
    7. c2t11d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol03
    /pci@1c,600000/scsi@1/sd@b,0
    8. c2t12d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol04
    /pci@1c,600000/scsi@1/sd@c,0
    9. c2t13d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol05
    /pci@1c,600000/scsi@1/sd@d,0
    10. c3t8d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> dbvol06
    /pci@1c,600000/scsi@1,1/sd@8,0
    11. c3t9d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free1
    /pci@1c,600000/scsi@1,1/sd@9,0
    12. c3t10d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free2
    /pci@1c,600000/scsi@1,1/sd@a,0
    13. c3t11d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free3
    /pci@1c,600000/scsi@1,1/sd@b,0
    14. c3t12d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> hotAPP
    /pci@1c,600000/scsi@1,1/sd@c,0
    15. c3t13d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> hotDB
    /pci@1c,600000/scsi@1,1/sd@d,0
    16. c4t8d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> APPVOLm
    /pci@1d,700000/scsi@1/sd@8,0
    17. c4t9d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1/sd@9,0
    18. c4t10d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1/sd@a,0
    19. c4t11d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1/sd@b,0
    20. c4t12d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1/sd@c,0
    21. c4t13d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1/sd@d,0
    22. c5t8d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> d6Mirr
    /pci@1d,700000/scsi@1,1/sd@8,0
    23. c5t9d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free1M
    /pci@1d,700000/scsi@1,1/sd@9,0
    24. c5t10d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free2M
    /pci@1d,700000/scsi@1,1/sd@a,0
    25. c5t11d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> free3M
    /pci@1d,700000/scsi@1,1/sd@b,0
    26. c5t12d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@1,1/sd@c,0
    27. c5t13d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424> hotDBm
    /pci@1d,700000/scsi@1,1/sd@d,0
    root@log01 >metadb -i
    flags first blk block count
    a m p luo 16 8192 /dev/dsk/c1t0d0s7
    a p luo 8208 8192 /dev/dsk/c1t0d0s7
    a p luo 16400 8192 /dev/dsk/c1t0d0s7
    a p luo 16 8192 /dev/dsk/c1t1d0s7
    a p luo 8208 8192 /dev/dsk/c1t1d0s7
    a p luo 16400 8192 /dev/dsk/c1t1d0s7
    r - replica does not have device relocation information
    o - replica active prior to last mddb configuration change
    u - replica is up to date
    l - locator for this replica was read successfully
    c - replica's location was in /etc/lvm/mddb.cf
    p - replica's location was patched in kernel
    m - replica is master, this is replica selected as input
    W - replica has device write errors
    a - replica is active, commits are occurring to this replica
    M - replica had problem with master blocks
    D - replica had problem with data blocks
    F - replica had format problems
    S - replica is too small to hold current data base
    R - replica had device read errors
    root@log01 >
    root@log01 >metadb -i
    flags first blk block count
    a m p luo 16 8192 /dev/dsk/c1t0d0s7
    a p luo 8208 8192 /dev/dsk/c1t0d0s7
    a p luo 16400 8192 /dev/dsk/c1t0d0s7
    a p luo 16 8192 /dev/dsk/c1t1d0s7
    a p luo 8208 8192 /dev/dsk/c1t1d0s7
    a p luo 16400 8192 /dev/dsk/c1t1d0s7
    r - replica does not have device relocation information
    o - replica active prior to last mddb configuration change
    u - replica is up to date
    l - locator for this replica was read successfully
    c - replica's location was in /etc/lvm/mddb.cf
    p - replica's location was patched in kernel
    m - replica is master, this is replica selected as input
    W - replica has device write errors
    a - replica is active, commits are occurring to this replica
    M - replica had problem with master blocks
    D - replica had problem with data blocks
    F - replica had format problems
    S - replica is too small to hold current data base
    R - replica had device read errors
    root@log01 >metadb -s appvol -i
    metadb: log01: setname "appvol": no such set
    root@log01 >metaset
    metaset: log01: metad client create: RPC: Program not registered
    root@log01 >cat /etc/lvm/md.tab
    # Copyright 2002 Sun Microsystems, Inc. All rights reserved.
    # Use is subject to license terms.
    # ident "@(#)md.tab 2.4 02/01/29 SMI"
    # md.tab
    # metainit utility input file.
    dbvol/d57 1 1 c2t12d0s0
    dbvol/d58 1 1 c4t12d0s0
    dbvol/d4 -m dbvol/d57 dbvol/d58 1
    dbvol/d55 1 1 c2t11d0s0
    dbvol/d56 1 1 c4t11d0s0
    dbvol/d3 -m dbvol/d55 dbvol/d56 1
    dbvol/d61 1 1 c3t8d0s0
    dbvol/d62 1 1 c5t8d0s0
    dbvol/d6 -m dbvol/d61 dbvol/d62 1
    dbvol/d59 1 1 c2t13d0s0
    dbvol/d60 1 1 c4t13d0s0
    dbvol/d5 -m dbvol/d59 dbvol/d60 1
    dbvol/d53 1 1 c2t10d0s0
    dbvol/d54 1 1 c4t10d0s0
    dbvol/d2 -m dbvol/d53 dbvol/d54 1
    ###dbvol/d51 1 1 c2t9d0s0
    dbvol/d52 1 1 c4t9d0s0
    #dbvol/d1 -m dbvol/d51 dbvol/d52 1
    dbvol/d1 -m dbvol/d52 1
    # SOFT Partitions
    dbvol/d129 -p dbvol/d5 -o 19933376 -b 526336
    dbvol/d128 -p dbvol/d5 -o 19407008 -b 526336
    dbvol/d127 -p dbvol/d5 -o 18880640 -b 526336
    dbvol/d126 -p dbvol/d5 -o 10489952 -b 8390656
    dbvol/d125 -p dbvol/d5 -o 2099264 -b 8390656
    dbvol/d123 -p dbvol/d4 -o 4724864 -b 133120
    dbvol/d122 -p dbvol/d4 -o 4460640 -b 264192
    dbvol/d121 -p dbvol/d4 -o 4196416 -b 264192
    dbvol/d120 -p dbvol/d4 -o 32 -b 4196352
    dbvol/d119 -p dbvol/d3 -o 30972032 -b 526336
    dbvol/d118 -p dbvol/d3 -o 10489952 -b 20482048
    dbvol/d117 -p dbvol/d3 -o 4196416 -b 6293504
    dbvol/d116 -p dbvol/d3 -o 32 -b 4196352
    dbvol/d115 -p dbvol/d2 -o 8925408 -b 526336
    dbvol/d114 -p dbvol/d2 -o 8399040 -b 526336
    dbvol/d113 -p dbvol/d2 -o 7872672 -b 526336
    dbvol/d112 -p dbvol/d2 -o 7346304 -b 526336
    dbvol/d111 -p dbvol/d2 -o 5247072 -b 2099200
    dbvol/d110 -p dbvol/d2 -o 1050688 -b 4196352
    dbvol/d109 -p dbvol/d2 -o 32 -b 1050624
    dbvol/d108 -p dbvol/d1 -o 33554496 -b 1572864
    dbvol/d107 -p dbvol/d1 -o 32 -b 33554432
    dbvol/d124 -p dbvol/d5 -o 32 -b 2099200
    dbvol/d138 -p dbvol/d4 -o 38416608 -b 133120
    dbvol/d137 -p dbvol/d3 -o 31498400 -b 264192
    dbvol/d136 -p dbvol/d4 -o 21637312 -b 16779264
    dbvol/d135 -p dbvol/d4 -o 4858016 -b 16779264
    dbvol/d134 -p dbvol/d6 -o 69212288 -b 23070720
    dbvol/d133 -p dbvol/d6 -o 46141536 -b 23070720
    dbvol/d132 -p dbvol/d6 -o 23070784 -b 23070720
    dbvol/d131 -p dbvol/d6 -o 32 -b 23070720
    dbvol/d130 -p dbvol/d5 -o 20459744 -b 526336
    root@log01 >metadb -s dbvol -i
    metadb: log01: setname "dbvol": no such set
    root@log01 >\

Maybe you are looking for

  • How can i set up multiple user accounts for my new ipad mini?

    How can i set up multiple user accounts for my new ipad mini?

  • Lion thinks docx file is an alias -- it's not.

    In the past week (since 10.7.1), Mac users at my office have occasionally run into a bug where files on a Windows smb share have an orange label and are seen as broken aliases, and so cannot be opened. The files were created and edited on Macs. Copyi

  • Wireless downloads slower with BT Infinity

    I recently upgraded from BT Broadband (ADSL2+ with BT Home Hub 1.0) to BT Infinity. I installed and switched over to the new BT Home Hub 3 before the BT Openreach engineer came, as I was worried about how wireless networking would work as the Hub had

  • Set Field in IDOC-Segment mandantory?

    Hi everybody, is it possible to mark IDOC-fields in a segment in R/3 as mandantory. I cant see any options in WE31. Thanks Regards Mario

  • Stock updation in In process inspection

    Hello everyone, I had a question regarding In process inspection My client requires that upon performing in process inspection ( currently inspection type:03) he should be able to automatically post the same to Blocked or unrestricted use stock as re