apt文件问题ruby.list文件

这里写目录标题

问题 (Error: Malformed line 1 in source list /etc/apt/sources.list.d/ruby.list )

解决方式 (修改配置文件)

结果 (成功修改)

问题

java 复制代码
Error: Malformed line 1 in source list /etc/apt/sources.list.d/ruby.list (type)
Error: The list of sources could not be read.

解决方式

java 复制代码
cd /etc/apt/source.list.d
java 复制代码
# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official i386 DVD Binary-1 20200509-11:59]/ buster contrib main

# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official i386 DVD Binary-1 20200509-11:59]/ buster contrib main

deb http://mirrors.tuna.tsinghua.edu.cn/debian/ buster main
deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ buster main

deb http://security.debian.org/debian-security buster/updates main contrib
deb-src http://security.debian.org/debian-security buster/updates main contrib

# buster-updates, previously known as 'volatile'

修改ruby.list文件

java 复制代码
deb https://deb.ruby-lang.org/apt focal main
deb-src https://deb.ruby-lang.org/apt focal main
相关推荐
黑子哥呢?37 分钟前
安装Bash completion解决tab不能补全问题
开发语言·bash
青龙小码农42 分钟前
yum报错:bash: /usr/bin/yum: /usr/bin/python: 坏的解释器:没有那个文件或目录
开发语言·python·bash·liunx
大数据追光猿1 小时前
Python应用算法之贪心算法理解和实践
大数据·开发语言·人工智能·python·深度学习·算法·贪心算法
彳卸风2 小时前
Unable to parse timestamp value: “20250220135445“, expected format is
开发语言
dorabighead2 小时前
JavaScript 高级程序设计 读书笔记(第三章)
开发语言·javascript·ecmascript
风与沙的较量丶3 小时前
Java中的局部变量和成员变量在内存中的位置
java·开发语言
水煮庄周鱼鱼3 小时前
C# 入门简介
开发语言·c#
编程星空3 小时前
css主题色修改后会多出一个css吗?css怎么定义变量?
开发语言·后端·rust
软件黑马王子3 小时前
Unity游戏制作中的C#基础(6)方法和类的知识点深度剖析
开发语言·游戏·unity·c#
Logintern094 小时前
使用VS Code进行Python编程的一些快捷方式
开发语言·python