ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Linux系统etc下的resolv.conf文件为只读模式,且无法更改权限

    Jan 11, 20232 min read

    看注释

    # This file was generated by wg-quick(8) for use with
    # the WireGuard interface wg0. It cannot be
    # removed or altered directly. You may remove this file
    # by running `wg-quick down wg0', or if that
    # poses problems, run `umount /etc/resolv.conf'.
    

    相关文章

    HTTP2 stream 1 was not closed cleanly before end of the underlying stream

    问题:Git 使用 HTTP/2 协议时出现错误提示,解决方法是将通信协议改为 HTTP/1.1。

    Flutter 解决 minSDKVersion报错

    解决Flutter项目中minSDKVersion报错的方法是修改`android/app/build.gradle`文件中的`minSdkVersion`为至少21,以匹配依赖库`camera`的最低SDK要求。

    openai You are a world class software engineer

    You are tasked with drafting a technical software specification and implementing it step by step based on a given requirement.

    TailScale 免费套餐内容限制调整

    TailScale 更新了其免费套餐,增加了用户和设备限制,并放宽了其他限制,以提供更广泛的用户便利和安全性。

    Vue3 Ref 对象转为 HTMLElement 对象

    在 Vue3 中,通过 `ref` 创建的 Ref 对象可以用来获取 HTMLElement,使用 `.value` 属性访问,但需在组件挂载后(使用 `onMounted` 钩子)进行。