Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2010
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. win7:~ jguest$ ssh root@192.168.1.145
  2. root@192.168.1.145's password:
  3. Last login: Fri Apr 2 07:53:10 2010 from win7
  4. [root@Pogoplug ~]# ps aux
  5. Unknown HZ value! (79) Assume 100.
  6. USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
  7. root 1 12.4 0.4 3400 576 ? Ss 15:59 0:09 init
  8. root 2 0.0 0.0 0 0 ? S< 15:59 0:00 [kthreadd]
  9. root 3 0.6 0.0 0 0 ? RN 15:59 0:00 [ksoftirqd/0]
  10. root 4 0.0 0.0 0 0 ? S< 15:59 0:00 [events/0]
  11. root 5 0.0 0.0 0 0 ? S< 15:59 0:00 [khelper]
  12. root 46 0.0 0.0 0 0 ? S< 15:59 0:00 [kblockd/0]
  13. root 49 0.0 0.0 0 0 ? S< 15:59 0:00 [khubd]
  14. root 51 0.0 0.0 0 0 ? S< 15:59 0:00 [kmmcd]
  15. root 65 0.0 0.0 0 0 ? S 15:59 0:00 [crypto]
  16. root 66 0.0 0.0 0 0 ? S 15:59 0:00 [crypto_ret]
  17. root 71 0.0 0.0 0 0 ? S 15:59 0:00 [pdflush]
  18. root 72 0.0 0.0 0 0 ? S 15:59 0:00 [pdflush]
  19. root 73 0.0 0.0 0 0 ? D< 15:59 0:00 [kswapd0]
  20. root 74 0.0 0.0 0 0 ? S< 15:59 0:00 [aio/0]
  21. root 227 0.0 0.0 0 0 ? S< 16:00 0:00 [mtdblockd]
  22. root 228 0.0 0.0 0 0 ? S< 16:00 0:00 [nftld]
  23. root 270 0.0 0.0 0 0 ? S< 16:00 0:00 [scsi_eh_0]
  24. root 271 0.9 0.0 0 0 ? S< 16:00 0:00 [usb-storage]
  25. root 274 0.0 0.0 0 0 ? S< 16:00 0:00 [scsi_eh_1]
  26. root 275 0.5 0.0 0 0 ? S< 16:00 0:00 [usb-storage]
  27. root 282 0.0 0.0 0 0 ? S< 16:00 0:00 [kcryptd/0]
  28. root 352 0.0 0.2 3300 268 ? Ss 16:00 0:00 /old_root/sbin/
  29. root 354 0.0 0.7 3076 1008 ? Ss 16:00 0:00 ntpd -g
  30. root 375 0.0 0.0 0 0 ? S< 16:00 0:00 [xce]
  31. root 376 0.0 0.3 1660 452 ? S 16:00 0:00 /usr/local/clou
  32. root 378 20.7 5.2 23160 6600 ? Sl 16:00 0:12 /usr/local/clou
  33. root 379 0.0 1.0 6540 1316 ? Ss 16:00 0:00 /usr/sbin/sshd
  34. root 468 0.0 1.3 13356 1724 ? Ssl 16:00 0:00 /usr/bin/transm
  35. root 480 0.1 3.7 7164 4744 ? S 16:00 0:00 ddclient - slee
  36. root 495 0.0 2.8 19764 3584 ? Ss 16:00 0:00 /usr/sbin/smbd
  37. root 498 0.0 1.5 11060 1992 ? Ss 16:00 0:00 /usr/sbin/nmbd
  38. root 517 0.0 1.1 19764 1492 ? S 16:00 0:00 /usr/sbin/smbd
  39. root 531 0.0 1.3 4820 1752 ttyS0 Ss+ 16:00 0:00 -sh
  40. root 535 58.4 36.1 46056 45572 ? R 16:00 0:28 /usr/local/clou
  41. root 536 0.4 2.1 9436 2700 ? Ss 16:00 0:00 sshd: root@pts/
  42. root 539 0.7 1.4 4816 1824 pts/0 Ss 16:00 0:00 -bash
  43. root 542 0.0 0.8 4060 1060 pts/0 R+ 16:01 0:00 ps aux
  44. [root@Pogoplug ~]# ls /var/run
  45. avahi-daemon dbus ddclient.pid dhcpcd-eth0.pid samba utmp
  46. daemons dbus.pid dhcpcd mt-daapd.pid sshd.pid
  47. [root@Pogoplug ~]# /etc/rc.d/avahi-daemon stop
  48. :: Stopping Avahi mDNS/DNS-SD Daemon [FAIL]
  49. [root@Pogoplug ~]# /etc/rc.d/avahi-daemon start
  50. :: Starting Avahi mDNS/DNS-SD Daemon [FAIL]
  51. [root@Pogoplug ~]# /etc/rc.d/dbus start
  52. :: Starting D-BUS system messagebus [BUSY] Failed to start message bus: The pid file "/var/run/dbus.pid" exists, if the message bus is not running, remove this file
  53. [FAIL]
  54. [root@Pogoplug ~]# rm /var/run/dbus
  55. dbus/ dbus.pid
  56. [root@Pogoplug ~]# rm /var/run/dbus.pid
  57. [root@Pogoplug ~]# /etc/rc.d/dbus start
  58. :: Starting D-BUS system messagebus [DONE]
  59. [root@Pogoplug ~]# /etc/rc.d/avahi-daemon start
  60. :: Starting Avahi mDNS/DNS-SD Daemon [DONE]
  61. [root@Pogoplug ~]# /etc/rc.d/mt-daapd start
  62. :: Starting DAAP server [DONE]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement