设备
有人告诉我他有这款 Windows 平板电脑:
NEXTBOOK Flexx9 8.9 英寸四核 Windows 10 平板电脑
问题
他说硬盘已满。他询问如何腾出一些空间。
SD 卡
看起来平板电脑支持 SD 卡。因此,一个选项是使用额外的 SD 卡。对吗?这样可行吗?如何将 SD 卡集成到整个驱动器中?
其他解决方案?
我想知道还有什么其他方法可以给驱动器腾出一些空间。比如一些自动扫描和删除不必要数据的软件。或者其他什么。我也看过这个了。
我将非常感激您的帮助。
我使用这个 shell 脚本创建一个 ICO 文件来满足这个要求:
图标应为 Windows .ico 文件,并包含以下尺寸的32 位图像:16、24、32、48 和 256。
#!/bin/sh
echo "*** One way: use Inkscape ***"
inkscape -w 16 -h 16 -o 16.png icon.svg
inkscape -w 24 -h 24 -o 24.png icon.svg
inkscape -w 32 -h 32 -o 32.png icon.svg
inkscape -w 48 -h 48 -o 48.png icon.svg
inkscape -w 256 -h 256 -o 256.png icon.svg
magick convert 16.png 24.png 32.png 48.png 256.png icon.ico
magick identify icon.ico
echo "*** Other way ***"
magick convert -background none icon.svg -resize 16x16 -depth 32 16-32.png
magick convert -background none icon.svg -resize 24x24 -depth 32 24-32.png
magick convert -background none icon.svg -resize 32x32 -depth 32 32-32.png
magick convert -background none icon.svg -resize 48x48 -depth 32 48-32.png
magick convert -background none icon.svg -resize 256x256 -depth 32 256-32.png
magick convert -background none 16-32.png 24-32.png 32-32.png 48-32.png 256-32.png -depth 32 icon.ico
magick identify icon.ico
echo "*** Other way: simpler ***"
magick convert -background none icon.svg -define icon:auto-resize="256,48,32,24,16" -depth 32 icon.ico
magick identify icon.ico
但输出日志表明创建的ICO文件都包含8位sRGB图像。如何生成 32 位的?
我正在通过 KVM 和virt-manager
. 今天,我收到了一个 BSoD 和错误:
无法安装的启动卷
然后,屏幕显示自动修复准备:
然后,显示黑屏,没有任何可观察到的活动。我没有选择了。你知道虚拟机可能出了什么问题吗?
这里有一些观察:
我已经恢复了一些大型视频,如下所述:
许多较小的图像/视频从格式化的驱动器中恢复,除了一个大于 2 或 3 GB 的特定大视频
显然,有3个大小几乎相同且内容相同的视频:
> ls recoverit-Wondershare/ -lh
total 23G
-rw-r--r-- 1 m3 users 3.7G Nov 25 20:03 00000084.mp4
-rw-r--r-- 1 m3 users 3.3G Nov 25 18:10 39289942016.mp4
-rw-r--r-- 1 m3 users 3.3G Nov 25 20:30 5142605824.mp4
问题是所有 3 个视频都只能播放到 27m。我正在通过 VLC 媒体播放器播放。但是根据报告的持续时间,视频持续时间ffprobe
是 1h27m:
> ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 -sexagesimal recoverit-Wondershare/00000084.mp4
1:27:14.640000
此外,右键单击详细信息/属性菜单显示 1h27m 是持续时间。
我通过这里的方法仔细检查视频完整性:
https://superuser.com/a/100290/571029
通过这个命令:
> ffmpeg -v fatal -i recoverit-Wondershare/00000084.mp4 -f null - 2>error-fatal.log
但是在 中没有报告致命错误error-fatal.log
。
我还能做些什么来修复/播放视频?
用 Avidemux 打开视频,帧分析继续到 %32 左右,然后突然跳转结束。表示视频持续时间约为 %32 时出现问题。
尝试通过 MPV 播放视频,视频播放正常,但如果我跳转到 27m 后的帧,则会收到此日志:
> mpv recoverit-Wondershare/00000084.mp4
(+) Video --vid=1 (*) (h264 1920x1080 50.000fps)
(+) Audio --aid=1 --alang=eng (*) (aac 2ch 48000Hz)
AO: [pulse] 48000Hz stereo 2ch float
VO: [gpu] 1920x1080 yuv420p
AV: 00:23:54 / 01:27:14 (27%) A-V: 0.000
[ffmpeg/video] h264: Found reference and non-reference fields in the same frame, which is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented.
[ffmpeg/video] h264: If you want to help, upload a sample of this file to https://streams.videolan.org/upload/ and contact the ffmpeg-devel mailing list. ([email protected])
[ffmpeg/video] h264: decode_slice_header error
AV: 00:23:54 / 01:27:14 (27%) A-V: 0.000
[ffmpeg/video] h264: mmco: unref short failure
AV: 00:23:56 / 01:27:14 (27%) A-V: 0.000
Exiting... (End of file)
通过 Avidemux,我重新保存了带有 MKV 后缀的视频。节省大约 32%,然后跳到完成。重点是重新保存的文件大小和输入文件一样!
> ls -lh recoverit-Wondershare/
total 26G
-rw-r--r-- 1 m3 users 3.7G Nov 26 00000084.mkv
-rw-r--r-- 1 m3 users 3.7G Nov 25 00000084.mp4
我尝试通过以下命令分析视频文件:
> ffmpeg -i recoverit-Wondershare/00000084.mp4 -f null -
分析时间最长可达 27m。然后抛出这些错误:
[aac @ 0x560ec12d36c0] channel element 0.0 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x560ec12d36c0] channel element 0.0 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x560ec12d36c0] channel element 0.0 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
[aac @ 0x560ec12d36c0] channel element 0.0 is not allocated
Error while decoding stream #0:1: Invalid data found when processing input
Error while decoding stream #0:0: Invalid data found when processing input
[h264 @ 0x560ec12d6ac0] Invalid NAL unit size (0 > 124102).
[h264 @ 0x560ec12d6ac0] Error splitting the input into NAL units.
Error while decoding stream #0:0: Invalid data found when processing input
[h264 @ 0x560ec19a5180] Invalid NAL unit size (-1676108775 > 73339).
[h264 @ 0x560ec19a5180] Error splitting the input into NAL units.
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x560ec12a1cc0] Packet corrupt (stream = 0, dts = 84810).
recoverit-Wondershare/00000084.mp4: corrupt input packet in stream 0
Error while decoding stream #0:0: Invalid data found when processing input
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x560ec12a1cc0] stream 0, offset 0xe8d711da: partial file
recoverit-Wondershare/00000084.mp4: Invalid data found when processing input
[h264 @ 0x560ec12dd240] Invalid NAL unit size (2013396992 > 15690).
[h264 @ 0x560ec12dd240] Error splitting the input into NAL units.
Error while decoding stream #0:0: Invalid data found when processing input
Last message repeated 1 times
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x560ec12a1cc0] stream 0, offset 0xe8d7ec2d: partial file
recoverit-Wondershare/00000084.mp4: Invalid data found when processing input
Error while decoding stream #0:0: Invalid data found when processing input
Last message repeated 1 times
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x560ec12a1cc0] stream 0, offset 0xe8db8bd3: partial file
recoverit-Wondershare/00000084.mp4: Invalid data found when processing input
frame=40826 fps=129 q=-0.0 Lsize=N/A time=00:27:13.06 bitrate=N/A speed=5.16x
video:21370kB audio:306204kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
运行此命令:
> ffmpeg -i 00000084.mp4 -c copy 00000084--copy-by-ffmpeg.mp4
给出这个输出:
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x557f3798ecc0] Packet corrupt (stream = 0, dts = 84810).speed=20.5x
00000084.mp4: corrupt input packet in stream 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x557f3798ecc0] stream 0, offset 0xe8d711da: partial file
00000084.mp4: Invalid data found when processing input
frame=84813 fps=1028 q=-1.0 Lsize= 3808738kB time=00:28:16.20 bitrate=18394.8kbits/s speed=20.6x
video:3727528kB audio:79510kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.044648%
除了之前恢复的 3 个大约 3 GB 的视频:
许多较小的图像/视频从格式化的驱动器中恢复,除了一个大于 2 或 3 GB 的特定大视频
又恢复了一个大小约为 11 GB 的视频。什么都没有播放。在 11 GB 视频上运行此命令时:
> ffmpeg -i za.mp4 -c copy za--output.mp4
我收到此错误:
未找到 moov 原子
我的计划是尝试修复moov atom not found
11 GB 视频的错误。让我们忘记 3 GB 的视频。
外部USB60 GB
驱动器已被某人格式化。我通过命令将字节一个接一个地复制dd
到一个文件中并将其命名为backup.dd
文件。然后我用来photorec
恢复文件。mpeg
除了一个特定的大视频外,许多较小的文件都被恢复了。
奇怪的是,最大的恢复文件是一个swf
1.6 GB 大小的闪存文件,它不应该存在。没有人记得这样的文件。那很奇怪。
无论如何,我还能做些什么来恢复丢失的文件?
任何工具都无法恢复的丢失mpeg
视频应该是最大的一个。它应该大于或。2 GB
3 GB
接受的答案建议的Wondershare Recoverit软件实际上向我展示了我正在寻找的大视频。我正在看到它们,但我无法按下恢复按钮,因为我还没有购买该软件。看起来很有希望:
当我通过.com**
顶级域名注册处的网站查询我的DNS服务器时,我可以看到我的DNS服务器找到了:
Query
Domain: example**.com**
Answer:
Following name-servers have been defined in **NIC DNS for your domain:
1. ns.example**.com**
IP addresses defined for NS servers in **NIC DNS (glue records):
1. ns.example**.com**. *4.*41.2*.1*4
Name Server: "ns.example**.com**"
List of defined name-servers in this name server is SYNC with the list of name-servers which has been defined in **NIC name-server.
List of name-server from this server:
1. ns.example**.com**
SOA detail from this server:
localhost. root.localhost. (
2021053002 ; Serial
10800 ; Refresh
3600 ; Retry
604800 ; Expire
86400 ) ; Minimum TTL
但在任何网络上,网络浏览器都无法通过example**.com**
地址显示我的网站。
我有哪些选项可以调试我的 DNS 服务器?谢谢!
我可以通过 SSH 连接到服务器并运行以下命令:
user@localhost:~> nslookup example**.com** 8*.*41.*3.1*4
;; connection timed out; no servers could be reached
还有这个命令:
user@localhost:~> nslookup example**.com**
Server: 1.1.1.1
Address: 1.1.1.1#53
Non-authoritative answer:
*** Can't find example**.com**: No answer
我有一个agent.exe
,当使用 Windows PowerShell 运行时,在端口上启动一个服务器18383
:
> powershell -Command ".\agent.exe"
⇨ http server started on [::]:18383
上面的命令,弹出一个安全对话框,如下所示:
在这篇文章及其评论之后,我尝试agent.exe
使用具有管理员权限的 PowerShell 运行,但我不知道如何编写我的命令。有人可以帮忙吗?
我已经下载了Windows 10 ISO映像,并dd
在 Linux 上使用了命令来制作可启动的 USB 驱动器:
$ sudo dd if=Win10_1903_V2_English_x64.iso of=/dev/sdc
$ sudo sync
当我尝试使用 USB 驱动器启动华硕笔记本电脑时,它位于启动菜单上。但是,当我选择它并按 Enter 键时,会收到此消息:
重新启动,并选择适当的引导设备
或 在选定的引导设备中插入引导媒体并按下一个键
还尝试在HP Probook 450 G3上尝试,USB驱动器在启动菜单上,但是在选择它并按Enter时,显示了一个快速的黑屏,然后跳回启动选项。
我想知道我错过了什么。谢谢。
昨天 HP ProBook 笔记本电脑运行良好,配备 8GB RAM 和 Intel Core i7-6500U 2.5GHz CPU。
今天早上,Windows 10 机器运行异常缓慢。Windows 任务栏没有响应。无法使用某些操作系统功能线路网络管理器。于是决定重启机器。重新启动后,窗口卡在加载页面。
我硬重置了机器,并使用了诊断工具,但它们没有显示任何问题。
在启动时按 F8,即安全模式,会导致自动修复,最终会出现空白/黑屏。
最后,我再次重新启动并等待 Windows 加载完成。经过漫长的几分钟后,Windows 终于显示了登录页面。
Windows仍然很慢,但不稳定。打开应用程序可能需要 2 分钟以上,可能需要 3 或 4 分钟。
这不是我第一次遇到这种减速。我想知道这种行为是否偶尔会出现?我怎样才能防止这种减速?
笔记本电脑有硬盘:
两天后:
突然,我遇到了蓝屏。我等了很久,但它卡在0% Complete
. 我手动重启。重新启动可能需要 15 到 20 分钟。然后我收到一个没有密码输入字段的登录屏幕!我重新启动,这次更快。我得到一个带有密码字段的登录屏幕。我登录并打开任何应用程序需要 2 到 3 分钟。
正如接受的答案所建议的那样,我可能会完全替换这个操作系统 =(
自从我重新安装 Windows 10 并删除了所有基于 MBR 的旧分区并创建了新的 GPT 分区以来,已经过去了一个多月。在此期间,新的 Windows 10 响应迅速。到目前为止我很满意:)
当我连接 USB 闪存驱动器(简单存储驱动器)时,Windows 10 可以毫无问题地检测到它们。
但是,当我连接 Android 智能手机或相机时,会听到 USB 声音通知,但 USB 设备不会显示在文件资源管理器中。
到目前为止我已经尝试过这些:
由于智能手机和相机使用 MTP 协议,我安装了适用于 Windows 10 的 MTP 驱动程序,但问题仍然存在。
甚至更新了系统BIOS!没运气。
尝试更新 USB 驱动程序,没有帮助。
试过关于 USB 的电源选项,还是没有运气。
任何人都可以帮忙。