AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-289082

miguelmorin's questions

Martin Hope
miguelmorin
Asked: 2020-03-11 03:29:49 +0800 CST

如何在 LibreOffice 演示文稿中查看或导出照片的路径?

  • 0

我创建了一个幻灯片并将照片拖放到其中。在此过程中,我还选择了最佳图像。我想在幻灯片中查看这些图像的名称或将它们导出到文本文件中。

例如,如果我想制作一个类似于 HTML 幻灯片的版本,这会有所帮助。我想得到:

幻灯片 1:image1.jpeg
幻灯片 2:image2.jpeg、image3.jpeg、image4.png
...
幻灯片 10:图片.jpg

然后我可以使用该文本文件生成具有相似内容的 HTML 文件,或者使用git.

那可能吗?

libreoffice
  • 2 个回答
  • 86 Views
Martin Hope
miguelmorin
Asked: 2020-03-03 03:36:54 +0800 CST

Youtube-dl 在 youtube 上失败并在其他网站上工作

  • -2

几天前我开始遇到这个问题:youtube-dl不再适用于指向 YouTube 的链接,但适用于其他网站,如 Instagram:

$ youtube-dl https://www.instagram.com/p/B47c667AKPo/
[Instagram] B47c667AKPo:下载网页
[下载] 目的地:视频由 marieforleo-B47c667AKPo.mp4
[下载] 2.5% of 40.44MiB at 1.45MiB/s ETA 00:27^C
...

$ youtube-dl https://www.youtube.com/watch?v=blHgexdxfVU
用法:youtube-dl [OPTIONS] URL [URL...]

youtube-dl:错误:您必须至少提供一个 URL。
键入 youtube-dl --help 以查看所有选项的列表。

忽略带有 HTTP 地址或a--no-check-certificate的 HTTPS 证书也会失败。几周前,同样的 YouTube 链接和语法还有效。

我升级到最新版本,2020.03.01仍然有同样的问题。

YouTube 和 之间有什么问题youtube-dl吗?

wildcards youtube-dl
  • 1 个回答
  • 651 Views
Martin Hope
miguelmorin
Asked: 2019-05-16 01:52:28 +0800 CST

使用 dd 刻录 Linux Ubuntu 可启动 USB

  • 1

我正在一台机器上安装 Linux 并获得了 Ubuntu 18.04 LTS 映像。我在 macOS 上使用 MS-DOS (FAT) 格式和 GUID 分区映射方案格式化了一个 32 GB 的 Sandisk 驱动器。

我找到了磁盘的名称disk2s2(使用磁盘工具或diskutil list终端),按照以下说明卸载并复制dd了图像:

diskutil unmount /dev/disk2s2
sudo dd if=~/Downloads/ubuntu-18.04.2-desktop-amd64.iso of=/dev/rdisk2s2 bs=1m

我在戴尔机器上插入了 USB,启动,按 F12 进入“启动一次”菜单,选择使用 USB 的传统启动,然后得到

Selected boot device failed. Press any key to reboot the system.

当我按照Ubuntu 的说明并使用Etcher在 USB 上刷新 ISO 映像时,它可以工作,并且我在 "Boot Once": 中看到了一个额外的选项UEFI SanDisk, Partition 1,我选择并能够尝试 Linux。

我还需要什么来创建 Ubuntu 的可启动 USBdd或全部在命令行中?

ubuntu osx
  • 1 个回答
  • 1273 Views
Martin Hope
miguelmorin
Asked: 2019-01-11 06:04:44 +0800 CST

无法删除 Python 3.6

  • -1

我在 Azure 上设置了一个运行 Ubuntu 的虚拟机:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.5 LTS
Release:    16.04
Codename:   xenial

然后验证 Python 二进制文件和版本:

$ which python
/usr/bin/python
$ python --version
Python 2.7.12
$ which python3
/usr/bin/python3
$ python3 --version
Python 3.5.2

我安装了 Python 3.6

$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt-get update
$ sudo apt-get install python3.6

然后我删除了它

$ sudo apt-get remove python3.6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libpython3.6-minimal libpython3.6-stdlib python3.6-minimal
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  python3.6
0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded.
After this operation, 334 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 85368 files and directories currently installed.)
Removing python3.6 (3.6.8-1+xenial1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...

但它仍然安装:

$ python3 --version
Python 3.5.2
$ python3.6 --version
Python 3.6.8

现在我不能再删除它,因为apt-get说它没有安装:

$ sudo apt-get remove python3.6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'python3.6' is not installed, so not removed
The following packages were automatically installed and are no longer required:
  libpython3.6-minimal libpython3.6-stdlib python3.6-minimal
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.

我怎样才能删除它?

ubuntu apt
  • 2 个回答
  • 19770 Views
Martin Hope
miguelmorin
Asked: 2018-12-16 04:07:44 +0800 CST

getmail 可以通过 SMTP 发送邮件吗?

  • 0

我昨天开始使用getmail。在我过去常常offlineimap接收消息和sendmail发送消息之前。文件说:

可靠性:...不会通过 SMTP 注入导致邮件循环,因此不需要您在主机上运行 MTA(如 qmail 或 sendmail)

当我撰写电子邮件时,迷你缓冲区窗口会询问我是否要使用默认设置,并在我单击“确定”时打开带有草稿的 Apple Mail。

我找不到getmail使用 SMTP 的配置,所以我想确认:我是否还需要使用代理,比如sendmail通过 SMTP 发送电子邮件?

getmail
  • 1 个回答
  • 156 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    模块 i915 可能缺少固件 /lib/firmware/i915/*

    • 3 个回答
  • Marko Smith

    无法获取 jessie backports 存储库

    • 4 个回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    user12345 无法获取 jessie backports 存储库 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl 为什么大多数 systemd 示例都包含 WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve