linux 错误码13是什么问题

发布时间 - 2023-03-25 00:00:00    点击率:
linux错误码13是权限的问题,其解决办法:1、安装xshell,在对应的文件夹下点击右键就会有一个更改权限,把权限改为777;2、在服务器的黑框屏幕里面输入“chmod 777”加上对应要修改权限的目录或者文件即可。

本教程操作环境:linux5.9.8系统、Dell G3电脑。

linux 错误码13是什么问题?

linux服务器下出现permission denied [13]错误

这个错误在linux下出现就是权限的问题,如果是用服务器的,可以安装xshell,有对应的xftp文件,是一个图形化界面,在对应的文件夹下点击右键就会有一个更改权限,把权限改为777就可以了,777代表可写可读可执行。

如果这样操作还不行,可以在服务器的黑框屏幕里面输入chmod 777 加上对应要修改权限的目录或者文件 , 这样就可以把对应的权限改掉了。

我之前碰到的错误就是这样的,在实验室上面换了环境,需要用到另一个环境下的自己创建的文件,结果权限不够,一直没明白什么意思,后来才知道是这样子的。

或者不执行前面的,直接执行标黑粗的部分就行。因为前面图形化界面的有可能不管用,我之前安装matlab这样执行是可以的,但是出现这个错误这样执行,我的没效果,因为改了以后又变回原来的样子了,至于为啥,我也不清楚,可能是软件的原因,但是如果本身就有这个软件的同学可以用这个改,看看管用不。因为有的人不喜欢在黑屏里面操作。

linux系统错误码大全

#define EPERM            1      /* Operation not permitted */
#define ENOENT           2      /* No such file or directory */
#define ESRCH            3      /* No such process */
#define EINTR            4      /* Interrupted system call */
#define EIO              5      /* I/O error */
#define ENXIO            6      /* No such device or address */
#define E2BIG            7      /* Arg list too long */
#define ENOEXEC          8      /* Exec format error */
#define EBADF            9      /* Bad file number */
#define ECHILD          10      /* No child processes */
#define EAGAIN          11      /* Try again */
#define ENOMEM          12      /* Out of memory */
#define EACCES          13      /* Permission denied */
#define EFAULT          14      /* Bad address */
#define ENOTBLK         15      /* Block device required */
#define EBUSY           16      /* Device or resource busy */
#define EEXIST          17      /* File exists */
#define EXDEV           18      /* Cross-device link */
#define ENODEV          19      /* No such device */
#define ENOTDIR         20      /* Not a directory */
#define EISDIR          21      /* Is a directory */
#define EINVAL          22      /* Invalid argument */
#define ENFILE          23      /* File table overflow */
#define EMFILE          24      /* Too many open files */
#define ENOTTY          25      /* Not a typewriter */
#define ETXTBSY         26      /* Text file busy */
#define EFBIG           27      /* File too large */
#define ENOSPC          28      /* No space left on device */
#define ESPIPE          29      /* Illegal seek */
#define EROFS           30      /* Read-only file system */
#define EMLINK          31      /* Too many links */
#define EPIPE           32      /* Broken pipe */
#define EDOM            33      /* Math argument out of domain of func */
#define ERANGE          34      /* Math result not representable */
#define EDEADLK         35      /* Resource deadlock would occur */
#define ENAMETOOLONG    36      /* File name too long */
#define ENOLCK          37      /* No record locks available */
#define ENOSYS          38      /* Function not implemented */
#define ENOTEMPTY       39      /* Directory not empty */
#define ELOOP           40      /* Too many symbolic links encountered */
#define EWOULDBLOCK     EAGAIN  /* Operation would block */
#define ENOMSG          42      /* No message of desired type */
#define EIDRM           43      /* Identifier removed */
#define ECHRNG          44      /* Channel number out of range */
#define EL2NSYNC        45      /* Level 2 not synchronized */
#define EL3HLT          46      /* Level 3 halted */
#define EL3RST          47      /* Level 3 reset */
#define ELNRNG          48      /* Link number out of range */
#define EUNATCH         49      /* Protocol driver not attached */
#define ENOCSI          50      /* No CSI structure available */
#define EL2HLT          51      /* Level 2 halted */
#define EBADE           52      /* Invalid exchange */
#define EBADR           53      /* Invalid request descriptor */
#define EXFULL          54      /* Exchange full */
#define ENOANO          55      /* No anode */
#define EBADRQC         56      /* Invalid request code */
#define EBADSLT         57      /* Invalid slot */
#define EDEADLOCK       EDEADLK
#define EBFONT          59      /* Bad font file format */
#define ENOSTR          60      /* Device not a stream */
#define ENODATA         61      /* No data available */
#define ETIME           62      /* Timer expired */
#define ENOSR           63      /* Out of streams resources */
#define ENONET          64      /* Machine is not on the network */
#define ENOPKG          65      /* Package not installed */
#define EREMOTE         66      /* Object is remote */
#define ENOLINK         67      /* Link has been severed */
#define EADV            68      /* Advertise error */
#define ESRMNT          69      /* Srmount error */
#define ECOMM           70      /* Communication error on send */
#define EPROTO          71      /* Protocol error */
#define EMULTIHOP       72      /* Multihop attempted */
#define EDOTDOT         73      /* RFS specific error */
#define EBADMSG         74      /* Not a data message */
#define EOVERFLOW       75      /* Value too large for defined data type */
#define ENOTUNIQ        76      /* Name not unique on network */
#define EBADFD          77      /* File descriptor in bad state */
#define EREMCHG         78      /* Remote address changed */
#define ELIBACC         79      /* Can not access a needed shared library */
#define ELIBBAD         80      /* Accessing a corrupted shared library */
#define ELIBSCN         81      /* .lib section in a.out corrupted */
#define ELIBMAX         82      /* Attempting to link in too many shared libraries */
#define ELIBEXEC        83      /* Cannot exec a shared library directly */
#define EILSEQ          84      /* Illegal byte sequence */
#define ERESTART        85      /* Interrupted system call should be restarted */
#define ESTRPIPE        86      /* Streams pipe error */
#define EUSERS          87      /* Too many users */
#define ENOTSOCK        88      /* Socket operation on non-socket */
#define EDESTADDRREQ    89      /* Destination address required */
#define EMSGSIZE        90      /* Message too long */
#define EPROTOTYPE      91      /* Protocol wrong type for socket */
#define ENOPROTOOPT     92      /* Protocol not available */
#define EPROTONOSUPPORT 93      /* Protocol not supported */
#define ESOCKTNOSUPPORT 94      /* Socket type not supported */
#define EOPNOTSUPP      95      /* Operation not supported on transport endpoint */
#define EPFNOSUPPORT    96      /* Protocol family not supported */
#define EAFNOSUPPORT    97      /* Address family not supported by protocol */
#define EADDRINUSE      98      /* Address already in use */
#define EADDRNOTAVAIL   99      /* Cannot assign requested address */
#define ENETDOWN        100     /* Network is down */
#define ENETUNREACH     101     /* Network is unreachable */
#define ENETRESET       102     /* Network dropped connection because of reset */
#define ECONNABORTED    103     /* Software caused connection abort */
#define ECONNRESET      104     /* Connection reset by peer */
#define ENOBUFS         105     /* No buffer space available */
#define EISCONN         106     /* Transport endpoint is already connected */
#define ENOTCONN        107     /* Transport endpoint is not connected */
#define ESHUTDOWN       108     /* Cannot send after transport endpoint shutdown */
#define ETOOMANYREFS    109     /* Too many references: cannot splice */
#define ETIMEDOUT       110     /* Connection timed out */
#define ECONNREFUSED    111     /* Connection refused */
#define EHOSTDOWN       112     /* Host is down */
#define EHOSTUNREACH    113     /* No route to host */
#define EALREADY        114     /* Operation already in progress */
#define EINPROGRESS     115     /* Operation now in progress */
#define ESTALE          116     /* Stale NFS file handle */
#define EUCLEAN         117     /* Structure needs cleaning */
#define ENOTNAM         118     /* Not a XENIX named type file */
#define ENAVAIL         119     /* No XENIX semaphores available */
#define EISNAM          120     /* Is a named type file */
#define EREMOTEIO       121     /* Remote I/O error */
#define EDQUOT          122     /* Quota exceeded */
#define ENOMEDIUM       123     /* No medium found */
#define EMEDIUMTYPE     124124     /* Wrong medium type */

推荐学习:《linux视频教程》


# linux  # 就会  # 右键  # 错误码  # 就可以  # 有一个  # 图形化  # 是一个  # 我也  # 有可能  # 就有 


相关栏目: 【 网站优化151355 】 【 网络推广146373 】 【 网络技术251813 】 【 AI营销90571


相关推荐: Laravel API资源(Resource)怎么用_格式化Laravel API响应的最佳实践  Laravel项目如何进行性能优化_Laravel应用性能分析与优化技巧大全  php做exe能调用系统命令吗_执行cmd指令实现方式【详解】  Python正则表达式进阶教程_复杂匹配与分组替换解析  如何用wdcp快速搭建高效网站?  Laravel如何使用Guzzle调用外部接口_Laravel发起HTTP请求与JSON数据解析【详解】  Laravel中间件起什么作用_Laravel Middleware请求生命周期与自定义详解  如何快速建站并高效导出源代码?  深圳网站制作的公司有哪些,dido官方网站?  Java解压缩zip - 解压缩多个文件或文件夹实例  Android自定义控件实现温度旋转按钮效果  Laravel软删除怎么实现_Laravel Eloquent SoftDeletes功能使用教程  今日头条AI怎样推荐抢票工具_今日头条AI抢票工具推荐算法与筛选【技巧】  Laravel如何实现多对多模型关联?(Eloquent教程)  Python图片处理进阶教程_Pillow滤镜与图像增强  Win11怎么更改系统语言为中文_Windows11安装语言包并设为显示语言  Laravel如何实现文件上传和存储?(本地与S3配置)  使用spring连接及操作mongodb3.0实例  Midjourney怎样加参数调细节_Midjourney参数调整技巧【指南】  高防服务器租用首荐平台,企业级优惠套餐快速部署  Laravel如何使用Livewire构建动态组件?(入门代码)  悟空识字如何进行跟读录音_悟空识字开启麦克风权限与录音  nodejs redis 发布订阅机制封装实现方法及实例代码  Laravel如何使用API Resources格式化JSON响应_Laravel数据资源封装与格式化输出  如何快速搭建高效简练网站?  香港服务器网站推广:SEO优化与外贸独立站搭建策略  Laravel如何发送邮件和通知_Laravel邮件与通知系统发送步骤  LinuxShell函数封装方法_脚本复用设计思路【教程】  Laravel如何创建和注册中间件_Laravel中间件编写与应用流程  使用Dockerfile构建java web环境  lovemo网页版地址 lovemo官网手机登录  Laravel怎么配置不同环境的数据库_Laravel本地测试与生产环境动态切换【方法】  Laravel如何正确地在控制器和模型之间分配逻辑_Laravel代码职责分离与架构建议  Laravel怎么进行数据库回滚_Laravel Migration数据库版本控制与回滚操作  Laravel怎么实现支付功能_Laravel集成支付宝微信支付  如何在Windows服务器上快速搭建网站?  中山网站推广排名,中山信息港登录入口?  详解jQuery中的事件  HTML5段落标签p和br怎么选_文本排版常用标签对比【解答】  Laravel如何连接多个数据库_Laravel多数据库连接配置与切换教程  ,在苏州找工作,上哪个网站比较好?  香港服务器建站指南:外贸独立站搭建与跨境电商配置流程  如何在云指建站中生成FTP站点?  如何用景安虚拟主机手机版绑定域名建站?  zabbix利用python脚本发送报警邮件的方法  JavaScript如何操作视频_媒体API怎么控制播放  在线制作视频网站免费,都有哪些好的动漫网站?  如何用西部建站助手快速创建专业网站?  Laravel如何与Vue.js集成_Laravel + Vue前后端分离项目搭建指南  php嵌入式断网后怎么恢复_php检测网络重连并恢复硬件控制【操作】