• 安装开源的apache的依赖库apr


    1. root@localhost z]# vmware-hgfsclient
    2. share
    3. [root@localhost z]# cd /mnt
    4. [root@localhost mnt]# ll
    5. total 0
    6. drwxr-xr-x. 2 root root 6 Jul 18 22:45 hgfs
    7. [root@localhost mnt]# mkdir /mnt/share
    8. [root@localhost mnt]# ll
    9. total 0
    10. drwxr-xr-x. 2 root root 6 Jul 18 22:45 hgfs
    11. drwxr-xr-x. 2 root root 6 Jul 18 23:12 share
    12. [root@localhost mnt]# vmhgfs-fuse .host:/ /mnt/share
    13. [root@localhost mnt]# cd share
    14. [root@localhost share]# ll
    15. total 4
    16. drwxrwxrwx. 1 root root 4096 Jul 18 20:59 share
    17. [root@localhost share]# ll
    18. total 4
    19. drwxrwxrwx. 1 root root 4096 Jul 18 20:59 share
    20. [root@localhost share]# ll
    21. total 4
    22. drwxrwxrwx. 1 root root 4096 Jul 18 20:59 share
    23. [root@localhost share]# cd .mnt/share
    24. bash: cd: .mnt/share: No such file or directory
    25. [root@localhost share]# cd.mnt/share
    26. bash: cd.mnt/share: No such file or directory
    27. [root@localhost share]# mkdir apr
    28. mkdir: cannot create directory ‘apr’: Permission denied
    29. [root@localhost share]# cd
    30. [root@localhost ~]# mkdir apr
    31. [root@localhost ~]# ll
    32. total 8
    33. -rw-------. 1 root root 2749 Mar 19 02:31 anaconda-ks.cfg
    34. drwxr-xr-x. 2 root root 6 Jul 18 23:15 apr
    35. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Desktop
    36. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Documents
    37. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Downloads
    38. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Music
    39. -rw-------. 1 root root 2029 Mar 19 02:30 original-ks.cfg
    40. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Pictures
    41. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Public
    42. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Templates
    43. drwxr-xr-x. 2 root root 6 Jul 18 06:32 Videos
    44. [root@localhost ~]# tar -zxvf apr-1.7.0.tar.gz
    45. tar (child): apr-1.7.0.tar.gz: Cannot open: No such file or directory
    46. tar (child): Error is not recoverable: exiting now
    47. tar: Child returned status 2
    48. tar: Error is not recoverable: exiting now
    49. [root@localhost ~]# cd /mnt/share/share
    50. [root@localhost share]# cp apr-1.7.0.tar.gz /usr/local
    51. [root@localhost share]# cd /usr/local
    52. [root@localhost local]# mkdir apr
    53. [root@localhost local]# tar -zxvf apr-1.7.0.tar.gz
    54. [root@localhost apr-1.7.0]# ls
    55. [root@localhost apr-1.7.0]# arp -d 127.0.0.1
    56. No ARP entry for 127.0.0.1
    57. [root@localhost apr-1.7.0]# arp -v
    58. Entries: 0 Skipped: 0 Found: 0
    59. [root@localhost apr-1.7.0]# arp -a
    60. [root@localhost apr-1.7.0]#

  • 相关阅读:
    Axios使用固定session发送http请求
    GoLang Map 实现分析
    设计模式课件
    # Unity 如何获取Texture 的内存大小
    React.lazy与Suspence实现延迟加载
    Mac电脑专业raw图像处理 DxO PhotoLab 7中文最新 for mac
    C++基础知识(三) -- 引用
    [运维|docker] ubuntu镜像更新时报E: Problem executing scripts APT::Update::Post-Invoke错误
    数字证书到底是什么?
    重排和重绘
  • 原文地址:https://blog.csdn.net/weixin_65633498/article/details/138022715