id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
1508260
1
1508280
2024-03-22T08:42:49.963
1
272
<p>software I need to use is requiring clang 18 to be installed on my computer:</p> <p><code>em++: warning: LLVM version for clang executable &quot;/usr/bin/clang&quot; appears incorrect (seeing &quot;14.0&quot;, expected &quot;18&quot;) [-Wversion-check]</code></p> <p>After little bit of searching I've learned I should use the command <code>sudo apt install clang-18</code> Running that has given me <code>E: Unable to locate package clang-18</code>.</p> <p>The software is requiring clang 18 but package manager can't find it. Do I need to include third party repository or something ? I'm on Ubuntu 22.04 .</p> <p>Thank you for assistance.</p>
999755
null
null
2024-03-23T06:05:45.867
How do I install clang 18 on Ubuntu?
[ "apt", "clang" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Using <a href=\"https://ubuntuhandbook.org/index.php/2023/09/how-to-install-clang-17-or-16-in-ubuntu-22-04-20-04/\" rel=\"nofollow noreferrer\">this guide</a> you can install Clang 18.</p>\n<p>In brief, there are 3 steps:</p>\n<ol>\n<li><p>Download the Automatic Installation Script using the Terminal -</p>\n<pre><code>wget https://apt.llvm.org/llvm.sh\n</code></pre>\n<p>After Downloading, add executable permission by running this command -</p>\n<pre><code>chmod u+x llvm.sh\n</code></pre>\n</li>\n<li><p>Use the script to install Clang:</p>\n<pre><code>sudo ./llvm.sh 18\n</code></pre>\n<p>During the process, it will ask to hit Enter to confirm adding the apt repository. Then, you may just wait until the process done.</p>\n</li>\n<li><p>Verify using the following code:</p>\n<pre><code>clang-18 --version\n</code></pre>\n<p>and/or locate clang-18 to verify.</p>\n</li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-22T12:44:19.753", "id": "1508280", "lastActivityDate": "2024-03-23T06:05:45.867", "lastEditDate": "2024-03-23T06:05:45.867", "lastEditorDisplayName": null, "lastEditorUserId": "1749634", "ownerDisplayName": null, "ownerUserId": "307670", "parentId": "1508260", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Using <a href=\"https://ubuntuhandbook.org/index.php/2023/09/how-to-install-clang-17-or-16-in-ubuntu-22-04-20-04/\" rel=\"nofollow noreferrer\">this guide</a> you can install Clang 18.</p>\n<p>In brief, there are 3 steps:</p>\n<ol>\n<li><p>Download the Automatic Installation ...
null
null
null
null
null
1508261
1
null
2024-03-22T08:48:10.417
-1
21
<p>I followed the <a href="https://github.com/endomapper/NR-SLAM" rel="nofollow noreferrer">github</a> to try to build and run NR SLAM. I downloaded OpenCV (version 4.4.0), Pangolin, mlpack-4.3.0, Boost, Eigen3.0, and had to update the kitware repository using this <a href="https://askubuntu.com/questions/355565/how-do-i-install-the-latest-version-of-cmake-from-the-command-line">link</a> to get the most recent cmake version. When running <code>~/NR_SLAM$ ./build.sh</code>, the build suddenly stops with this error:</p> <pre><code>make[1]: Leaving directory '/home/myname/NR_SLAM/build' make: *** [Makefile:159: all] Error 2 </code></pre> <p>The only other error I could really find was way above:</p> <pre><code>/home/myname/NR_SLAM/third_party/g2o/g2o/core/eigen_types.h:30:10: fatal error: Eigen/Core: No such file or directory 30 | #include &lt;Eigen/Core&gt; | ^~~~~~~~~~~~ compilation terminated. </code></pre> <p>Does anyone know what I might be doing wrong here..? Any help is greatly appreciated!!</p>
1777044
1777044
2024-03-22T18:45:48.400
2024-03-22T18:45:48.400
Error trying to build NR-SLAM on WSL, Ubuntu 20.04.03 LTS
[ "command-line", "20.04", "software-installation", "windows-subsystem-for-linux" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T08:56:20.767", "id": "2646347", "postId": "1508261", "score": "1", "text": "Is the eigen3 development package (`libeigen3-dev`) installed on your system?", "userDisplayName": null, "userId": "178692" }, { "creationDate": "2024-03-22T18:25:27.103", ...
null
[]
null
null
null
null
null
1508263
1
1508335
2024-03-22T09:05:24.727
0
69
<p>I found many posts how to change a swap partition to a file e.g.: <a href="https://askubuntu.com/questions/934679/swap-partition-to-swap-file">Swap partition to Swap file</a>. Due to some hibernate issues with LUbuntu I'd like to change my swap file to a partition. Can this be done or does it require a fresh install?</p> <p>In case of yes: which steps do I have to do?</p> <p>Thank you!</p>
839968
null
null
2024-03-23T01:57:36.170
Change swap file to swap partition - can this be done easily?
[ "swap" ]
1
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T09:14:07.370", "id": "2646350", "postId": "1508263", "score": "1", "text": "You stop using *swapfile* and switch to *swap partition*, use both, or change from *partition* to *swapfile*. All you need to do is add a swap partition using available space OR shrink a par...
{ "accepted": true, "body": "<p>To create a swap (or any) partition on a disk, none of the disk's partitions can be <code>mount</code>ed. Boot from a Live Cd, or your installation medium in &quot;Try Ubuntu&quot; mode.</p>\n<p>Run <code>gparted</code>, make sure (in the upper right corner of <code>gparted</code>'s screen) you're manipulating the correct disk.</p>\n<p>Use <code>gparted</code> to move/resize partitions to create available space as big as you want your swap to be.</p>\n<p>Create a partition in the available space, format it as 'swap'.</p>\n<p>Boot back into your normal system.</p>\n<p>Use <code>blkid</code> to find the UUID, read <code>man fstab</code> to see how to add swap to <code>/etc/fstab</code>.</p>\n<p>Then <code>swapon</code> your new partition,</p>\n<p><code>swapoff</code> and <code>rm</code> your swapfile.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2024-03-23T08:15:25.093", "id": "2646526", "postId": "1508335", "score": "0", "text": "Thank you for your guide!", "userDisplayName": null, "userId": "839968" }, { "creationDate": "2024-03-23T22:00:43.483", "id": "2646593", "postId": "1508335", "score": "0", "text": "@ssssstut Please click the checkmark to \"accept\" my answer, if it solved your problem, and might help others.", "userDisplayName": null, "userId": "25618" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-23T01:57:36.170", "id": "1508335", "lastActivityDate": "2024-03-23T01:57:36.170", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "25618", "parentId": "1508263", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>To create a swap (or any) partition on a disk, none of the disk's partitions can be <code>mount</code>ed. Boot from a Live Cd, or your installation medium in &quot;Try Ubuntu&quot; mode.</p>\n<p>Run <code>gparted</code>, make sure (in the upper right corner of <code>gparted</...
null
null
null
null
null
1508265
1
null
2024-03-22T09:37:52.067
0
74
<p>audio works only with bluetooth devices, neither if i connect something with aux it's been recognized. I tried opening <code>alsamixer</code> but it says this</p> <pre><code>ALSA lib confmisc.c:855:(parse_card) cannot find card '0' ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_card_inum returned error: File o directory non esistente ALSA lib confmisc.c:422:(snd_func_concat) error evaluating strings ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_concat returned error: File o directory non esistente ALSA lib confmisc.c:1334:(snd_func_refer) error evaluating name ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_refer returned error: File o directory non esistente ALSA lib conf.c:5701:(snd_config_expand) Evaluate error: File o directory non esistente ALSA lib control.c:1528:(snd_ctl_open_noupdate) Invalid CTL default impossibile aprire il mixer: File o directory non esistente </code></pre> <p>so I can't modify anything. doing <code>cat /proc/asound/cards</code> it says <code>no soundcard</code> but if I run <code>lspci | grep -i audio</code>, it says:</p> <pre><code>0000:00:1f.3 Multimedia audio controller: Intel Corporation Tiger Lake-LP Smart Sound Technology Audio Controller (rev 20) </code></pre> <p>running this <code>aplay /usr/share/sounds/alsa/Front_Center.wav</code> the terminal says that it's playing but I can't hear anything (i can only if I repeat the process connected to a Bluetooth device) if I run <code>pulseaudio</code>, it says:</p> <pre><code>E: [pulseaudio] pid.c: Daemon already running. E: [pulseaudio] main.c: pa_pid_file_create() non riuscita. </code></pre> <p>I can't switch device in settings because the only output available is &quot;dummy output&quot;</p>
1705176
158442
2024-03-23T11:53:47.263
2024-03-23T11:53:47.263
Audio problem: it says "dummy output" and i can't hear anything
[ "sound", "22.04", "bluetooth", "pulseaudio", "alsa" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T10:04:45.187", "id": "2646358", "postId": "1508265", "score": "0", "text": "\"i tried a cuple of things i found online\" to save people trying to provide answers you have already tried, [edit] you question with what you have actually tried. For example, in `Settings...
null
[ { "accepted": null, "body": "<p>i solved!</p>\n<p>I have done</p>\n<pre><code>sudo apt remove --purge alsa-base pulseaudio\n</code></pre>\n<p>And then I have installed again</p>\n<pre><code>sudo apt install alsa-base pulseaudio linux-sound-base \n</code></pre>\n<p>and</p>\n<pre><code>sudo apt install ubuntu...
null
null
null
null
null
1508267
1
null
2024-03-22T09:51:34.737
-4
32
<p>I use Ubuntu 22.04. How to deploy JasperReport server in Kubernetes? I have the license file. I have access to the GitHub repository where the src for jasperReport, but I still need a bit of understanding of the whole process.</p>
1760821
1760821
2024-03-22T10:54:08.157
2024-03-22T10:54:08.157
JasperReport server
[ "software-installation", "22.04", "kubernetes" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T09:58:11.750", "id": "2646357", "postId": "1508267", "score": "0", "text": "what is you linux distro/version?", "userDisplayName": null, "userId": "307670" }, { "creationDate": "2024-03-22T10:07:37.173", "id": "2646360", "postId": "1508267", ...
null
[]
null
null
null
null
null
1508269
1
null
2024-03-22T10:06:13.020
-1
46
<p>I updated my BIOS and it told me to restart the PC for it to work, but after restarting I noticed that the dual boot menu isn't showing anymore. I have both the Windows 11 and Ubuntu 22.04 on the same disk, but on different partitions.</p> <p>I have tried almost everything, but nothing is working.</p> <p><a href="https://i.stack.imgur.com/XdkqA.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/XdkqA.png" alt="Disk Management Image" /></a></p>
1777062
94914
2024-03-22T10:51:24.783
2024-03-22T14:02:32.277
grub boot menu is not showing after BIOS update
[ "dual-boot", "partitioning", "grub2", "22.04", "windows-11" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T14:24:09.277", "id": "2646405", "postId": "1508269", "score": "1", "text": "For Linux repairs better to show from gparted. Windows does not correctly see Linux partitions. Is the 150GB #5 your Ubuntu install? Bitlocker on also prevents Linux tools from correctly see...
null
[ { "accepted": null, "body": "<p>I also have this problem with my MSI board,\nyou have to manually re-install Grub2 with a Live Image from your USB or DVD, cause the BIOS update clears the nvram of motherboard.</p>\n<p>Here a list of steps you have to do:</p>\n<ul>\n<li>Boot Ubuntu from Live CD or USB</li>\n...
null
null
null
null
null
1508274
1
null
2024-03-22T10:47:32.610
1
45
<p>I have no idea if both of these issues are related.</p> <p>Everytime I open Discord I get a popup that says: Authentication required, the password you use to log in to your machine no longer matches that of your login keyring.</p> <p>I have tried both my ubuntu password, and my keyring password, neither unlock this.</p> <p>I am able to use Discord normally if I click 'cancel', except sharing my screen is not possible. The webapplication works just fine, except that I have to share my screen and unshare it 3 times.</p> <p>I have tried disabling my keyring, but this has done nothing to change this.</p> <p>Thanks in advance.</p>
1773355
null
null
2024-03-22T20:33:24.550
Discord unable to share screen, and keeps asking for authentication
[ "keyrings" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508281
1
null
2024-03-22T12:47:15.963
0
19
<p>I'm using ubuntu as a host to cross compile raspberry pi 3b+ as a target. I tried to use commands below:</p> <pre><code>sudo make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- -C /home/ubuntu/Desktop/workspace/linux M=$PWD modules </code></pre> <p>but when I use this command it gives me error that below:</p> <pre><code>make: Entering directory '/home/ubuntu/Desktop/workspace/linux' ERROR: Kernel configuration is invalid. include/generated/autoconf.h or include/config/auto.conf are missing. Run 'make oldconfig &amp;&amp; make prepare' on kernel src to fix it. /home/ubuntu/Desktop/workspace/linux/Makefile:741: include/config/auto.conf: No such file or directory make[1]: *** [/home/ubuntu/Desktop/workspace/linux/Makefile:806: include/config/auto.conf] Error 1 make: *** [Makefile:234: __sub-make] Error 2 make: Leaving directory '/home/ubuntu/Desktop/workspace/linux' </code></pre> <p>in this directory:</p> <blockquote> <p>/home/ubuntu/Desktop/workspace/linux</p> </blockquote> <p>I cloned the <a href="https://github.com/raspberrypi/linux" rel="nofollow noreferrer">https://github.com/raspberrypi/linux</a>.</p> <p>How can I get rid of this problem?</p>
1777091
null
null
2024-03-22T12:47:15.963
Cross-Compile Raspberry Pi "Kernel configuration is invalid" Error
[ "kernel", "compiling", "raspberrypi", "linux-headers", "cross-compilation" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508282
1
null
2024-03-22T12:54:47.747
0
50
<p>I have an external hard drive, formatted with NTFS. On it I have one folder with about 100,000 files, totalling about 140GB (excluding overhead).</p> <p>I'm finding that I can no longer list the files in the folder.</p> <pre><code>$ pwd /media/matthew/nemweb/AppliedEconometrics/data/01-A-raw $ ls ls: reading directory '.': Invalid argument $ ls $(pwd) ls: reading directory '/media/matthew/nemweb/AppliedEconometrics/data/01-A-raw': Invalid argument $ ls . ls: reading directory '.': Invalid argument $ find ./ ./ find: './': Invalid argument $ find $(pwd) /media/matthew/nemweb/AppliedEconometrics/data/01-A-raw find: '/media/matthew/nemweb/AppliedEconometrics/data/01-A-raw': Invalid argument $ python3 -c &quot;import os; os.listdir('.')&quot; Traceback (most recent call last): File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; OSError: [Errno 22] Invalid argument: '.' </code></pre> <p>I know that NTFS isn't great for one folder with this many files. My overall objective is to move the files to another drive, reformat the first drive as ext4, and then move the files back.</p> <p>Whilst trying to copy the files across, my computer froze. After forcefully powering off and restarting, I had to use Ubuntu's disk repair feature before I could mount the drive. This behavior only started after that forceful reboot. (I suspect it's an filesystem corruption issue caused by lack of journaling?) I can still access other folders on this drive.</p> <p>Why does <code>ls</code> give an error about bad arguments for this folder? If the filesystem is corrupt for that particular folder, I would not expect the error message to say the argument I provided is invalid.</p>
406054
null
null
2024-03-22T12:54:47.747
ls and find give "invalid argument" when passing no argument
[ "files", "filesystem", "ntfs", "ls" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T13:26:18.257", "id": "2646395", "postId": "1508282", "score": "3", "text": "Don't know what this has to do with Ubuntu, ...anyway, usually the advice is to get a Windows machine to repair ntfs file systems.", "userDisplayName": null, "userId": "20054" } ]
null
[]
null
null
null
null
null
1508284
1
null
2024-03-22T13:29:58.223
-2
41
<p>I want to customize installation CD for Ubuntu Desktop. Version 24.04.</p> <ul> <li><p>Anybody, to confirm, that the functionality has been lost and there is no full replacement?</p> </li> <li><p>Anybody, to tell, how a customization <em>intended</em> to be done? I found few hacks. I'm disappointed how someone should use the workflow: how is customization intended to be implemented by an end-user. Not a hacks, but how was it planned from authors perspective to do by someone else: selective screens with storage layout, language and so on, along with customization with scripting.</p> </li> </ul> <p>This post was hidden and automatically deleted CommunityBot without an answers from past summer (<a href="https://askubuntu.com/questions/1478772">URL to deleted q.</a>). But IMHO it's a hot question of my year.</p> <p>The question is about installer's functionality. The question is same for all distribution releases with modern Ubuntu Desktop Installer (UDI). Starting from 23.04 and up to 24.04+.</p> <p>During Ubuntu install there is cascade of Ubuntu installers: UDI, Subiquity, Curtin.</p> <p>I want to trigger a custom hooks before and after installer's job. Technically I want to do a thing, which during installation of Ubuntu by UDI installer is equivalent of early-commands and late-commands from Subiquity's autoinstall.</p> <p>I succeeded with the server ISO customization: ubuntu-desktop package can be installed with Subiquity and with it's autoinstall. It do not fit.</p> <p>Tell me please,</p> <p>Are there any pre- and post-install customization hooks for UDI? Especially for doing of smth. before first boot of target system.</p> <p>Is there a file or hook, where it is possible to put inside ISO image my own scripts for customization of a system to be installed with UDI? How it is called, what is it's path?</p> <p>In general, how do I customize an installation media?</p> <p>Thank you!</p>
1612422
1612422
2024-03-22T13:36:35.010
2024-03-22T13:36:35.010
Are there a pre- and post-install hooks before going into reboot in Ubuntu Desktop Installer (as of 24.04; 23.04+ changes)?
[ "system-installation", "iso", "customization", "23.10", "24.04" ]
0
6
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T02:46:36.973", "id": "2646506", "postId": "1508284", "score": "1", "text": "Ubuntu 24.04 (*noble*) doesn't yet exist; it's currently the *development* release Ubuntu *noble* and remains that until it reaches RC state which isn't expected until after 18 April 2024, a...
null
[]
null
null
null
null
null
1508285
1
null
2024-03-22T13:52:27.667
0
191
<p>I've spent hours to get my new Dell xps 9440 with Nvidia RTX 4050 GPU running. I freshly installed Ubuntu 23.10 with my bootable USB-Stick. After installing and restarting my device is stuck with a blackscreen and a blinking cursor while booting. I cant find any error messages in the journalctl. My devices uses 2 GPU's:</p> <p>lspci | grep -E &quot;VGA|3D&quot;</p> <pre><code>0000:00:02.0 VGA compatible controller: Intel Corporation Device 7d55 (rev 08) 0000:01:00.0 3D controller: NVIDIA Corporation Device 28a1 (rev a1) </code></pre> <p><code>nvidia-smi</code> recognizes my GPU with driver-version: 535.161.07 and Cuda-Version: 12.2</p> <p>When i switch to the intel grapic with <code>sudo prime-select intel</code> and then reboot. I can boot to the login-screen and use the system. When i switch to nvidia, i am stuck on the booting again with a blackscreen and a cursor. This time the cursors is not even blinking and i have to go to the grub recovery mode to switch the GPU again.</p> <p>I have spent hours to browse the internet for fixes like:</p> <p>reinstall the drivers with <code>ubuntu-driver autoinstall</code>, donwloaded a .run file from nvidia and tried to install it this way, used apt, checked for blacklist entries, edited the <code>/etc/default/grub</code> file and set parameters that were recomended. But whatever i tried, i always got stuck while booting when using <code>on demand</code>-mode or the nvidia gpu.</p> <p>Can someone please help me to get the Device running with Ubuntu?</p>
1777100
20054
2024-03-22T16:17:03.703
2024-03-24T02:57:29.747
Boot fails on Dell XPS 9440 with fresh 23.10 installation
[ "nvidia", "dell", "nvidia-optimus", "23.10", "nvidia-prime" ]
1
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T13:58:54.160", "id": "2646398", "postId": "1508285", "score": "0", "text": "boot into `recovery` mode where you can get a root console from there issue commands to see then fix", "userDisplayName": null, "userId": "18025" }, { "creationDate": "2024-0...
null
[ { "accepted": null, "body": "<p><strong>tl;dr: Install <a href=\"https://kernel.ubuntu.com/mainline/\" rel=\"nofollow noreferrer\">Mainline Kernel</a> &gt;= 6.8 and Nvidia drivers should work as expected.</strong></p>\n<p>i currently setup the exact same machine. And actually most stuff is working quite wel...
null
null
null
null
null
1508289
1
null
2024-03-22T14:14:55.083
0
12
<p>I have installed nvm (as root user) in my linux system (Ubuntu 22). On that time, I was connected by using a VNC session. The app is available every time I'm connecting with VNC.</p> <p>The problem I'm facing is that my system is reporting nvm as not being available when I'm connecting locally, from the terminal, when I'm using the same user (root), unless I'm executing 'source ~/.nvm/nvm.sh', and after that I will be able to access nvm; <a href="https://stackoverflow.com/questions/16904658/node-version-manager-install-nvm-command-not-found">https://stackoverflow.com/questions/16904658/node-version-manager-install-nvm-command-not-found</a></p> <p>What is the difference between the two ways to connect to the system by using the same user, root?</p> <p>Thank you.</p>
1244376
null
null
2024-03-22T14:14:55.083
System-wide app availability in Linux - Local user vs. VNC session
[ "root", "users", "vnc" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T14:36:13.133", "id": "2646409", "postId": "1508289", "score": "1", "text": "Installing something in an arbitrary directory doesn't make it available for any user. Executable are expected to be found in certain dirs - `echo $PATH`.", "userDisplayName": null, ...
null
[]
null
null
null
null
null
1508291
1
null
2024-03-22T14:18:39.400
0
30
<p>SSH enables remote (WAN / LAN) viewing files through a terminal.</p> <p>As I understand it, SAMBA:</p> <ol> <li>provides access through a file-browser (Nautilus / Finder)</li> <li>requires the user to be on the same LAN as the SAMBA server</li> </ol> <p>What is the <strong>class name</strong> of <em>file-access service</em>, that support networked file browsers (Nautilus, Safari, etc.)?</p> <p>I would like to Google this class so that I can evaluate options that will provide WAN file browser access.</p> <p>Edits to the OP / clarifying questions are appreciated.</p>
545291
545291
2024-03-22T14:51:37.347
2024-03-22T14:51:37.347
What is the term for the class of service that provides network file-browser file access?
[ "samba" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508292
1
null
2024-03-22T14:46:14.643
-2
54
<p>I have an Ubuntu server</p> <pre><code>No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.4 LTS Release: 22.04 Codename: jammy Linux lab01 6.5.0-26-generic #26~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Mar 12 10:22:43 UTC 2 x86_64 x86_64 x86_64 GNU/Linux </code></pre> <p>And I'm having tons of issues setting up the clock and making it synchronize.</p> <p>I was trying to make chrony work with no luck</p> <p>Currently my <code>chrony.conf</code> is</p> <pre><code>pool 0.pool.ntp.org burst sourcedir /run/chrony-dhcp sourcedir /etc/chrony/sources.d keyfile /etc/chrony/chrony.keys driftfile /var/lib/chrony/chrony.drift ntsdumpdir /var/lib/chrony logdir /var/log/chrony maxupdateskew 100.0 rtcsync makestep 1 -1 maxdistance 12000 </code></pre> <p>I've added the maxdistance trying to fix the issue.</p> <p>The command <code>sudo chronyc sources -v</code></p> <pre><code>MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^? ns2.fibertelecom.it 2 6 3 59 -278.5s[-278.5s] +/- 53ms ^? ns3.fibertelecom.it 3 6 3 59 -277.7s[-277.7s] +/- 38ms ^? ns1.fibertelecom.it 2 6 3 60 -276.1s[-276.1s] +/- 35ms ^? nettuno.ntp.irh.it 2 6 3 60 -276.9s[-276.9s] +/- 11ms </code></pre> <p>and <code>chronyc tracking</code></p> <pre><code>Reference ID : 00000000 () Stratum : 0 Ref time (UTC) : Thu Jan 01 00:00:00 1970 System time : 0.000000001 seconds fast of NTP time Last offset : +0.000000000 seconds RMS offset : 0.000000000 seconds Frequency : 86.704 ppm fast Residual freq : +0.000 ppm Skew : 0.000 ppm Root delay : 1.000000000 seconds Root dispersion : 1.000000000 seconds Update interval : 0.0 seconds Leap status : Not synchronised </code></pre> <p>What should I do?</p> <p>EDIT <code>date</code> shows the correct date and time</p>
1069911
1069911
2024-03-25T07:26:59.777
2024-03-28T14:30:30.727
Clock won't syncronize and drift
[ "sync", "clock" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T20:30:36.697", "id": "2646469", "postId": "1508292", "score": "2", "text": "What time does the command 'date' give, how much is it off compared to actual time ? The ntp-protocol will not adjust time if it is more than an hour or so off.Linux expects systm(bios clock...
null
[]
null
null
null
null
null
1508293
1
null
2024-03-22T14:56:24.650
-1
25
<p>I have some files that I copied over to Ubuntu 22.04 from my old Windows system. I noticed that many of them were highlighted this strange green color, so following <a href="https://askubuntu.com/questions/881949/ugly-color-for-directories-in-gnome-terminal">advice from Stack Exchange</a> I recursively did <code>chmod 775</code> on all these directories.</p> <p>Unfortunately that seems to have broken some stuff. In particular, there are a few folders that I cannot <code>ls</code> or <code>cd</code> into in the terminal. I get the error <code>ls: cannot access 'folder-name': no such file or directory</code>. But, strangely, I can open this directory and view the files no problem using Nautilus.</p> <p>When I copied these files over from Windows I really should have made sure to convert them from NTFS to EXT4 format first. Lesson learned.</p> <p>What should I do? Is there some way I can identify all the files that are in Windows format and convert them? Should I reinstall my operating system?</p> <p>Thanks.</p>
1641039
1641039
2024-03-22T15:09:07.227
2024-03-22T15:09:07.227
Can open directory in file explorer but not in terminal
[ "permissions", "windows", "nautilus", "ntfs", "ls" ]
0
5
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T15:03:41.647", "id": "2646411", "postId": "1508293", "score": "1", "text": "Is the file/folder name really `----` or is that a placeholder in your question? Please provide actual example of the command and output copied directly from the terminal to your question ab...
null
[]
null
null
null
null
null
1508294
1
null
2024-03-22T14:59:40.540
0
96
<p>I would like to know how to make 2 partitions on a USB drive 1 partition is for backing up files and the other should be bootable on any system. then it should just boot a ubuntu.iso (so i can cleanly install ubuntu on my system) BUT the thing is i would like to have it done without software, for example, if i want to update the iso file (or unpacked on the usb) i would wanne do that by downloading the iso file, extract it there or not even extract it just have it intact, put on the drive in partition 2 and then boot the pc and it should work right away. no hastle with program. But how?</p> <p>And how do i change the icons of the 2 partitions, also so that the partitions have the icons on windows. (plus hide the partition which is bootable on both linux and windows)</p> <p>Thanks!</p>
null
null
null
2024-03-23T03:23:08.350
How to make a bootable USB drive without software
[ "usb" ]
3
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T15:06:09.033", "id": "2646412", "postId": "1508294", "score": "3", "text": "Have you considered [Ventoy](https://www.ventoy.net/en/index.html)", "userDisplayName": null, "userId": "307670" }, { "creationDate": "2024-03-22T15:18:40.047", "id": "26...
null
[ { "accepted": null, "body": "<p>I guess you search something like <a href=\"https://www.ventoy.net/en/index.html\" rel=\"nofollow noreferrer\">Ventoy</a>, after installing this on your USB you can place all the ISOs you wish on the partition, and also store private files, no extraction of ISOs or flashing n...
null
null
null
null
user1777120
1508295
1
null
2024-03-22T15:11:08.467
-2
24
<p>I had a boot failure and am trying to use grub to recover. My boot partition is (hd6,gpt3), which I set as root. the grub command linux /boot/vmlinuz-5.15.0-75-generic root=/dev/sdg3 results in &quot;error: can't allocate kernel&quot; I cannot see what is wrong.</p>
1624837
null
null
2024-03-22T15:11:08.467
Grub error "Can't allocate Kernal" when using the linux command
[ "grub2" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T15:57:02.377", "id": "2646425", "postId": "1508295", "score": "0", "text": "Does a configfile entry work to boot grub.cfg? https://ubuntuforums.org/showthread.php?t=2076205&page=54&p=13788092#post13788092 Please copy & paste the pastebin link to the BootInfo summary...
null
[]
null
null
null
null
null
1508298
1
null
2024-03-22T15:19:28.623
-1
32
<p>I am on Ubuntu 23.10, x64 machine, everything up to date and using Wayland.</p> <p>I am enjoying waybar a lot and playing with configuration I managed to obtain two different bars, one on the top and one on the bottom.</p> <p>Problem is: the top one eludes windows (i.e. maximizing a window does not cover it) while the bottom one does not (i.e. maximizing a window covers it completely).</p> <p>My waybar config is the following:</p> <pre><code> [ { // Basic infos &quot;name&quot;: &quot;header&quot;, &quot;layer&quot;: &quot;top&quot;, // Disposition &quot;modules-left&quot;: [ &quot;custom/launcher&quot;, &quot;cpu&quot;, &quot;memory&quot;, &quot;custom/media&quot;, &quot;network&quot; ], &quot;modules-center&quot;: [ &quot;tray&quot; ], &quot;modules-right&quot;: [ &quot;backlight&quot;, &quot;pulseaudio&quot;, &quot;clock&quot;, &quot;battery&quot; ], // Built-in modules &quot;pulseaudio&quot;: { &quot;tooltip&quot;: false, &quot;scroll-step&quot;: 5, &quot;format&quot;: &quot;{icon} {volume}%&quot;, &quot;format-muted&quot;: &quot;{icon} {volume}%&quot;, &quot;format-icons&quot;: { &quot;default&quot;: [ &quot;&quot;, &quot;&quot;, &quot;&quot; ] } }, &quot;network&quot;: { &quot;tooltip&quot;: false, &quot;format-wifi&quot;: &quot; {essid}&quot;, &quot;format-ethernet&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;/usr/bin/systemsettings kcm_networkmanagement&quot; }, &quot;backlight&quot;: { &quot;tooltip&quot;: false, &quot;format&quot;: &quot; {}%&quot;, &quot;interval&quot;: 1, &quot;on-scroll-up&quot;: &quot;light -A 5&quot;, &quot;on-scroll-down&quot;: &quot;light -U 5&quot; }, &quot;battery&quot;: { &quot;states&quot;: { &quot;good&quot;: 95, &quot;warning&quot;: 30, &quot;critical&quot;: 20 }, &quot;format&quot;: &quot;{icon} {capacity}%&quot;, &quot;format-charging&quot;: &quot; {capacity}%&quot;, &quot;format-plugged&quot;: &quot; {capacity}%&quot;, &quot;format-alt&quot;: &quot;{time} {icon}&quot;, &quot;format-icons&quot;: [ &quot;&quot;, &quot;&quot;, &quot;&quot;, &quot;&quot;, &quot;&quot; ] }, &quot;tray&quot;: { &quot;icon-size&quot;: 21, &quot;spacing&quot;: 10 }, &quot;clock&quot;: { &quot;format&quot;: &quot;{: %I:%M %p  %d/%m/%Y}&quot;, &quot;on-click&quot;: &quot;/usr/bin/plasmawindowed org.kde.plasma.calendar&quot; }, &quot;cpu&quot;: { &quot;interval&quot;: 2, &quot;format&quot;: &quot; {}%&quot;, &quot;max-length&quot;: 10, &quot;on-click&quot;: &quot;konsole -e btop&quot; }, &quot;memory&quot;: { &quot;interval&quot;: 2, &quot;format&quot;: &quot; {}%&quot;, &quot;max-length&quot;: 10, &quot;on-click&quot;: &quot;konsole -e btop&quot; }, // Custom modules (some of them courtesy of River WM + modifications) &quot;custom/launcher&quot;: { &quot;format&quot;: &quot; &quot;, &quot;on-click&quot;: &quot;albert show&quot;, &quot;on-click-right&quot;: &quot;rofi -show drun&quot; }, }, { // Basic infos &quot;name&quot;: &quot;footer&quot;, &quot;position&quot;: &quot;bottom&quot;, &quot;height&quot;: 32, &quot;margin-right&quot;: 10, &quot;margin-bottom&quot;: 10, // Disposition &quot;modules-left&quot;: [ &quot;custom/tuitext&quot;, &quot;custom/tuipt&quot;, &quot;custom/stui&quot;, &quot;custom/gpgtui&quot;, &quot;custom/dockertui&quot;, &quot;custom/gitui&quot;, &quot;custom/bandtui&quot; ], &quot;modules-center&quot;: [], &quot;modules-right&quot;: [ &quot;disk&quot;, &quot;bluetooth&quot; ], // Custom modules &quot;custom/bandtui&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e 'sudo bandwhich'&quot; }, &quot;custom/gitui&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e lazygit&quot; }, &quot;custom/dockertui&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e lazydocker&quot; }, &quot;custom/gpgtui&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e gpg-tui&quot; }, &quot;custom/stui&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e s-tui&quot; }, &quot;custom/tuipt&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e tptable&quot; }, &quot;custom/tuitext&quot;: { &quot;format&quot;: &quot;&quot;, &quot;on-click&quot;: &quot;konsole -e lvim&quot; }, // Integrated modules &quot;bluetooth&quot;: { &quot;on-click&quot;: &quot;plasma-open-settings kcm_bluetooth&quot; }, &quot;disk&quot;: { &quot;format&quot;: &quot;{path}  {percentage_used}%&quot;, &quot;on-click&quot;: &quot;pcmanfm-qt&quot; } // Modules below this line are not yet added and should be considered WIP } ] </code></pre> <p>What am I missing? I also tried adding &quot;exclusive&quot; and &quot;layer&quot; options, without any result</p> <p>I tried googling and editing that file with both &quot;exclusive&quot; and &quot;layer&quot;. I would like the bottom bar to be also able to elude windows.</p>
1777127
null
null
2024-03-22T15:19:28.623
Waybar: why is the bottom bar not eluding windows?
[ "kde", "wayland", "plasma", "layout" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508303
1
null
2024-03-22T16:20:18.097
-7
35
<p>This is the version of MacOS I have:</p> <p><a href="https://i.stack.imgur.com/s4mLq.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/s4mLq.png" alt="MacOS version" /></a></p>
1777139
1749634
2024-03-28T09:21:47.887
2024-03-28T09:21:47.887
Can I install, and which version Ubuntu on an apple computer?
[ "mac", "versions", "apple" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T16:22:16.600", "id": "2646429", "postId": "1508303", "score": "5", "text": "Does this answer your question? [Will my device work with Ubuntu?](https://askubuntu.com/questions/986878/will-my-device-work-with-ubuntu) It's worth running an Ubuntu USB live session to te...
null
[]
null
null
2024-03-22T17:59:28.197
null
null
1508309
1
null
2024-03-22T17:40:28.673
-1
24
<p><strong>Ubuntu 23.10</strong> Using Cinnamon desktop.</p> <p>Local Wifi network printers keep appearing and reactivating themselves in 'Printers-Local Host'. They show up as a 'Printer installed' dialog box on my screen.</p> <p>In Printer Properties, Policies, I have repeatedly un-ticked 'Enabled' and 'Accepting Jobs'. A couple minutes to hours later, they are reactivated. There are three printers, probably located in the office for this RV park, on the local network, so they show up on my PC as a Notification regularly.</p> <p>I was thinking of printing to them a notice that they are usable by random RV park transients, which could result in depleted resources, and perhaps they are stealing bandwidth from the Wifi signal, but first...before I do that or contact the office...</p> <p>Is there a way to shut off these volunteer printers on my PC? Why doesn't my repeatedly resetting them by un-ticking 'Enabled' &amp; 'Accepting Jobs' in Policies do anything? What are those settings for if the printer is allowed to reinstate itself (and not from rebooting...they just repeatedly reinstate all on their own)? I think this is the interesting question. Seems like a bug to me. But it is a network policy thing so maybe there's a setting I don't know about? Does anyone know how to shut these off?</p> <p>Searching this forum shows that it's not a CUPS issue but the solution shown for Ubuntu 14.04 is rather dated and beyond my skills as it requires editing an obscure file &amp; seems it would affect something else other then just the display of the unwanted printers.</p> <p>Here's what that old post says, &quot;I can confirm this problem. If you are on a network with self-announcing printers, on 14.04, (some of?) those printers show automatically up in the print dialog (at least of Xubuntu and Kubuntu). Stopping cups-browsed prevents cups from adding those printers, but still, they show up in the print dialog. So yes, this is not a cups problem. The problem is resolved by stopping avahi-deamon, which is not optimal. We need a solution which keeps avahi-deamon alive, but stops the print dialog from displaying those printers. – azimut Dec 9, 2014 at 11:01&quot;</p>
464356
null
null
2024-03-22T17:40:28.673
Network Printers
[ "networking", "printing" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T17:42:43.807", "id": "2646444", "postId": "1508309", "score": "3", "text": "no it is not dated. It is correct. disable avahi-daemon. that services add printers,", "userDisplayName": null, "userId": "15811" }, { "creationDate": "2024-03-23T18:45:51.98...
null
[]
null
null
null
null
null
1508311
1
null
2024-03-22T17:46:49.717
-2
27
<p>I accidentally installed ubuntu on my main C drive and i have no idea how to get windows back onto it.. I've tried a bootable windows usb drive and as well have a empty usb drive for the windows installation but the drives wont show up at all..</p> <p>F9 or F12 wont work either whenever trying to factory reset</p>
1777156
1777156
2024-03-22T17:50:16.863
2024-03-22T17:50:16.863
Stuck On Ubuntu ASUS ROG STRIX
[ "asus" ]
0
6
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T17:53:40.010", "id": "2646445", "postId": "1508311", "score": "2", "text": "That is a windows problem. I seem to remember you can load disk drivers during windows usb boot. Maybe you need to do that. But you really need to ask Windows users.", "userDisplayName"...
null
[]
null
null
null
null
null
1508313
1
null
2024-03-22T18:05:23.967
-1
35
<p>I have been using MystIQ video converter with great success in Ubuntu 20.04, but it seems to have problems with MPV files. There is no audio mostly. Some MPV files are OK, but mostly they get converted to MP4 and have no audio. Do you have any ideas?</p>
661173
158442
2024-03-23T08:00:51.397
2024-03-23T08:00:51.397
MystIIQ video converter having problems with mpv files
[ "20.04", "mp4", "video-conversion" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508314
1
1508408
2024-03-22T18:13:58.873
-1
72
<p>I'm trying to lock down an Ubuntu 20.04 image by removing vulnerable packages we don't use. I've run a Nessus Advanced Network Scan with the SSH login credentials and it found a number of issues, for instance &quot;Ubuntu 18.04 LTS / 20.04 LTS / 22.04 LTS : Vim vulnerabilities (USN-6026-1)&quot; (<a href="https://ubuntu.com/security/notices/USN-6026-1" rel="nofollow noreferrer">https://ubuntu.com/security/notices/USN-6026-1</a>). So I removed <code>vim</code> using:</p> <pre><code>sudo apt-get purge vim </code></pre> <p>rebooted the device and reran the scan. But I'm still getting the same issue. The security notice <a href="https://ubuntu.com/security/notices/USN-6026-1" rel="nofollow noreferrer">https://ubuntu.com/security/notices/USN-6026-1</a> only mentions <code>vim</code>, it doesn't give the name of any other packages that need to be removed. How can I resolve this?</p> <p><code>vim</code> isn't the only package I'm having this problem with, I also see it for others (ceph, cups-filters, libreoffice, etc).</p>
59832
null
null
2024-03-23T23:51:20.260
Nessus continues to warn me about vulnerable packages that have been removed
[ "20.04", "purge", "nessus" ]
1
5
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T18:25:19.957", "id": "2646450", "postId": "1508314", "score": "2", "text": "This is probably a question for nessus devs. Most so called security scanners have false positives, which is obviously the case here. File a bug report, or contact someone at nessus.whatever...
{ "accepted": true, "body": "<p>I can't figure out how to do this in the UI, but if I export the report as a PDF then under the issue:</p>\n<blockquote>\n<p>Ubuntu 18.04 LTS / 20.04 LTS / 22.04 LTS : Vim vulnerabilities (USN-6026-1)</p>\n</blockquote>\n<p>there's a subsection &quot;Assets&quot; with:</p>\n<blockquote>\n<ul>\n<li>Installed package : xxd_2:8.1.2269-1ubuntu5.11</li>\n<li>Fixed package: xxd_2:8.1.2269-1ubuntu5.14</li>\n</ul>\n</blockquote>\n<p>Removing xxd removes the <code>vim</code> issues from the next scan.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-23T23:51:20.260", "id": "1508408", "lastActivityDate": "2024-03-23T23:51:20.260", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "59832", "parentId": "1508314", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I can't figure out how to do this in the UI, but if I export the report as a PDF then under the issue:</p>\n<blockquote>\n<p>Ubuntu 18.04 LTS / 20.04 LTS / 22.04 LTS : Vim vulnerabilities (USN-6026-1)</p>\n</blockquote>\n<p>there's a subsection &quot;Assets&quot; with:</p>\n<...
null
null
null
null
null
1508315
1
null
2024-03-22T18:29:36.197
-1
47
<p>I am trying to play movies and series on Amazon Prime videos and Netflix, but the quality is low compared to Windows. My laptop is the Asus Vivobook s15 OLED bape Edition model.</p> <p>Graphics card: Intel Iris Xe Graphics<br /> Processor: Intel Core i9-13900H</p> <p>In Windows it gives me an excellent reproduction but, in Ubuntu it does not have the same performance. How can I improve this?</p> <p>Video quality in Windows:</p> <p><a href="https://i.stack.imgur.com/Jb6UG.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Jb6UG.png" alt="quality in Windows" /></a></p> <p>Video quality in Ubuntu:</p> <p><a href="https://i.stack.imgur.com/nm0MT.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/nm0MT.png" alt="quality in Ubuntu" /></a></p>
1777137
94914
2024-03-23T07:37:08.323
2024-03-23T07:37:08.323
Streaming websites do not give me the same image quality on Ubuntu as on Windows, how can I fix this?
[ "drivers", "graphics", "video" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T18:38:13.497", "id": "2646454", "postId": "1508315", "score": "3", "text": "What is \"I feel that the quality is low\"? Do you actually know? Can you tell us?", "userDisplayName": null, "userId": "20054" }, { "creationDate": "2024-03-22T19:05:21.220"...
null
[]
null
null
null
null
null
1508316
1
null
2024-03-22T18:31:48.870
-1
35
<p>Based on Sandi's response in the post on the link below, is there a way I can see all the versions that are available whether it is CentOS,Ubuntu, etc? For example if I'm looking for a specific version? Asking since I'm not able to navigate to the subfolders in dl.google.com. I just get a 404 Not Found error?</p> <blockquote> <p>You can download the latest version of Google Chrome from their official &gt; website. For this, you can use the command-line with wget:</p> </blockquote> <blockquote> <p>wget <a href="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" rel="nofollow noreferrer">https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb</a></p> </blockquote> <p><a href="https://askubuntu.com/questions/1461513/help-with-installing-the-chrome-web-browser-22-04-2-lts/1508301?noredirect=1#comment2646448_1508301">Help with installing the Chrome web browser (22.04.2 LTS)</a></p>
1222454
null
null
2024-03-22T18:31:48.870
Downloading a specific version of google-chrome-stable from dl.google.com
[ "google-chrome", "downloads", "versions", "wget" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T18:40:07.907", "id": "2646455", "postId": "1508316", "score": "0", "text": "Possibly related: https://askubuntu.com/questions/1495456/how-to-check-available-versions-in-google-debian-repository", "userDisplayName": null, "userId": "1749634" }, { "cre...
null
[]
null
null
null
null
null
1508321
1
null
2024-03-22T19:41:17.510
0
72
<p>I am running ubuntu 22.04.3 on Honor Magicbook 15. I have been experiencing random crashes latelty and was trying to look into them. I decided to start with checking my drivers. I wanted to check if my drivers were up up-to-date. Stumbled upon this post: <a href="https://askubuntu.com/questions/543325/how-to-download-all-required-ubuntu-drivers">How to download all required Ubuntu drivers</a>. Following top answer's instructions I ran:</p> <pre><code>sudo ubuntu-drivers install sudo reboot </code></pre> <p>Afterwards, it looked like my laptop crashed or something went wrong. After a reboot I cannot connect to any Wi-Fi network. They are simple not displayed in &quot;Networks&quot; tab in bottom right corner.</p> <p>Here are some things I have checked and believe could be useful: <strong>iwconfig</strong> output:</p> <pre><code>lo no wireless extensions. docker0 no wireless extensions. </code></pre> <p><strong>rfkill list all</strong>:</p> <pre><code>0: hci0: Bluetooth Soft blocked: yes Hard blocked: no </code></pre> <p><strong>lswh</strong> (only copied entries I found weird):</p> <pre><code>*-network UNCLAIMED description: Network controller product: Atheros QCNFA765 vendor: Qualcomm physical id: 0 bus info: pci@0000:01:00.0 version: 01 width: 64 bits clock: 33MHz capabilities: cap_list configuration: latency=0 resources: memory:d0000000-d01fffff *-multimedia:1 UNCLAIMED description: Multimedia controller product: Raven/Raven2/FireFlight/Renoir Audio Processor vendor: Advanced Micro Devices, Inc. [AMD] physical id: 0.5 bus info: pci@0000:03:00.5 version: 01 width: 32 bits clock: 33MHz capabilities: cap_list configuration: latency=0 resources: memory:d0580000-d05bffff </code></pre> <p><strong>lspci | grep -i net</strong></p> <pre><code>01:00.0 Network controller: Qualcomm Atheros QCNFA765 (rev 01) </code></pre> <p><strong>lsmod | grep ath</strong></p> <pre><code>ath11k_pci 32768 0 ath11k 860160 1 ath11k_pci qmi_helpers 32768 1 ath11k mac80211 1720320 1 ath11k cfg80211 1318912 2 ath11k,mac80211 mhi 106496 1 ath11k_pci </code></pre> <p><strong>sudo dmesg | grep ath11k</strong></p> <pre><code>[ 10.674942] ath11k_pci 0000:01:00.0: BAR 0: assigned [mem 0xd0000000-0xd01fffff 64bit] [ 10.674969] ath11k_pci 0000:01:00.0: enabling device (0000 -&gt; 0002) [ 10.675742] ath11k_pci 0000:01:00.0: MSI vectors: 32 [ 10.675751] ath11k_pci 0000:01:00.0: wcn6855 hw2.1 [ 39.952577] ath11k_pci 0000:01:00.0: failed to power up mhi: -110 [ 39.952584] ath11k_pci 0000:01:00.0: failed to start mhi: -110 [ 39.952591] ath11k_pci 0000:01:00.0: failed to power up :-110 [ 39.968380] ath11k_pci 0000:01:00.0: failed to create soc core: -110 [ 39.968390] ath11k_pci 0000:01:00.0: failed to init core: -110 [ 40.165512] ath11k_pci: probe of 0000:01:00.0 failed with error -110 </code></pre> <p>Any help would be greatly appreciated! Also, I can provide any additional information regarding this issue.</p>
1777171
null
null
2024-03-23T07:27:46.750
Qualcomm Atheros QCNFA765 Module stopped working properly after attempted driver update
[ "drivers", "atheros" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>After hours of hitting the wall, I have finally figured it out.</p>\n<p>Important note! I was completely unaware of what I was doing and why. I was simply replicating solutions I found online from people having issues close enough to mine.</p>\n<p>My laptop doesn't have port ...
null
null
null
null
null
1508323
1
null
2024-03-22T20:19:57.497
0
26
<p>All the systems that experience problems during big folder transfers are running <strong>Xubuntu 22.04.4</strong>. One is using Kernel <em>6.5.0-26-generic</em> and is equipped with 16 GB of RAM and two are using Kernel <em>5.15.0-101-generic</em> and are equipped with 4 GB of RAM.</p> <p>I attempted to copy a huge folder from an external USB drive to the internal drive on the 16 GB system using <code>thunar</code> and when the transfer reached approximately 10%, the transfer speed dropped dramatically and I was forced to cancel it since nothing was practically being transferred any more. It took quite a long time for the system to actually cancel the transfer. I had to split the transfer to many smaller chunks in order to complete all of it successfully. After that, nothing was working normally. The <em><strong>Applications menu</strong></em> was taking too long to appear, apps were taking too long to start, etc. I had to reboot that system for things to go back to normal.</p> <p>The other two systems exhibit similar problems when receiving big folders through <code>samba</code>. The folders are copied correctly but everything else takes forever to start afterwards on them. Every big copy uses all their available memory.</p> <p>Can <code>nocache</code> actually do something about this problem? If it can, can it be used in conjunction with <code>rsync</code>?</p> <p>How can we solve the problem on the two 4 GB systems that act as file and folder receivers through <code>samba</code> and <code>nocache</code> cannot be used on them since the <em>copy</em> command is given on the file/folder sending system.</p> <p>Thank you.</p>
362910
null
null
2024-03-22T20:19:57.497
File caching creates problems when big folders are transferred
[ "xubuntu", "samba", "rsync", "cache" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508330
1
null
2024-03-22T22:21:40.160
-1
35
<p>I set up a flash drive with Ubuntu using rufus , I have disabled windows but locker and I have disabled safe boot , however it appears that my bios does not recognize the flash drive plugged in as a viable boot device . Most advice I have seen on this topic is for individuals who have already installed their other is but I can't even get my bios to recognize the installer . Initially I thought the issue was with the dongle I'm using as my laptop has no traditional USB ports , but I found a video where someone uses a very similar dongle .</p>
1777190
null
null
2024-03-22T22:21:40.160
My bios does not appear to recognize the UBS with a Ubuntu install imparted on it
[ "system-installation" ]
0
5
CC BY-SA 4.0
[ { "creationDate": "2024-03-22T22:51:01.593", "id": "2646490", "postId": "1508330", "score": "2", "text": "What do you mean by 'not appear to recognize ,,,' ? Can you select the USB in boot-order in bios setup ?", "userDisplayName": null, "userId": "614422" }, { "creationDate": "2...
null
[]
null
null
null
null
null
1508333
1
null
2024-03-23T00:27:00.220
0
19
<p>I have a question. Does dosfsck -a log the errors it found? Like, the specifics of the error?</p> <p>Because, since it's doing it all automatically, it doesn't let the user have input, so I wondered if it logs it all somewhere.</p> <p>If it doesn't log it, can I make it log what it finds using dosfsck -a?</p>
1688606
null
null
2024-03-23T00:27:00.220
Does dosfsck -a log errors it found?
[ "command-line", "20.04", "filesystem", "fat32" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508334
1
null
2024-03-23T01:18:13.457
0
15
<p>Can you include the &quot;/.Trash-999&quot; from external media in the Trash folder on Ubuntu? Like, the trash from all media and the system Trash shows up in Trash, similar to Windows Trash?</p>
1688606
null
null
2024-03-23T01:18:13.457
Can you include .Trash-999 from other media in Trash?
[ "20.04", "nautilus", "files", "usb-drive", "sd-card" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508336
1
null
2024-03-23T02:08:18.330
1
92
<p>I get this response:</p> <pre><code>$ nvcc nvcc: command not found </code></pre> <p>this is in my bashrc file:</p> <pre><code>export PATH=&quot;/usr/local/cuda-12.4/bin:$PATH&quot; export LD_LIBRARY_PATH=&quot;/usr/local/cuda-12.4/lib64:$LD_LIBRARY_PATH&quot; </code></pre> <p>I did install Cuda 14.2</p> <p>Ubuntu Server 22.04</p>
1052119
884673
2024-03-23T09:10:19.573
2024-03-23T09:10:19.573
When i try to get the : nvcc --version I get this error:
[ "nvidia", "22.04", "cuda", "gpu" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T03:51:19.347", "id": "2646508", "postId": "1508336", "score": "1", "text": "Assuming you made a typo on Cuda 14.2, PATH and LD_LIBRARY_PATH modifications are made in .profile", "userDisplayName": null, "userId": "82196" } ]
null
[ { "accepted": null, "body": "<p>It sounds like you are concerned about a problem with your <code>$PATH</code> but it's worth checking the command is available somewhere on your system first.</p>\n<p>First of all, check that <code>nvcc</code> is installed. From a search on Ubuntu packages, you can confirm it...
null
null
null
null
null
1508339
1
null
2024-03-23T03:36:23.153
0
42
<p>I have a problem when installing PNETLab in Ubuntu 18.04 container. I see openvswitch is failed to start. Even if I reinstall, the result is the same. Is there any adjusment on the network configuration side in the guest or host? thanks</p> <p>Here the information of openvswitch-switch package</p> <pre><code># apt install openvswitch -y openvswitch-switch.service - Open vSwitch Loaded: loaded (/lib/systemd/system/openvswitch-switch.service; enabled; vendor preset: enabled) Active: inactive (dead) Mar 23 02:33:57 pnetlab01 systemd[1]: Dependency failed for OpenvSwitch. Mar 23 02:33:57 pnetlab01 systemd[1]: openvswitch-switch.service: Job openvswitch-switch.service/start failed with result 'dependency'. Mar 23 02:39:31 pnetlab01 systemd[1]: Dependency failed for Open vSwitch. Mar 23 02:39:31 pnetlab01 systemd[1]: openvswitch-switch.service: Job openvswitch-switch.service/start failed with result 'dependency'. Mar 23 02:49:48 pnetlab01 systemd[1]: Dependency failed for Open vSwitch. Mar 23 02:49:48 pnetlab01 systemd[1]: openvswitch-switch.service: Job openvswitch-switch.service/start failed with result 'dependency'. Mar 23 03:02:13 pnetlab01 systemd[1]: Dependency failed for Open vSwitch. Mar 23 03:02:13 pnetlab01 systemd[1]: openvswitch-switch.service: Job openvswitch-switch.service/start failed with result 'dependency'. dpkg: error processing package openvswitch-switch (--configure): installed openvswitch-switch package post-installation script subprocess returned error exit status 1 dpkg: dependency problems prevent configuration of pnetlab: pnetlab depends on openvswitch-switch; however: Package openvswitch-switch is not configured yet. dpkg: error processing package pnetlab (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: openvswitch-switch pnetlab E: Sub-process /usr/bin/dpkg returned an error code (1) root@pnetlab01:~# journalctl -xe -- -- Unit ovs-vswitchd.service has begun starting up. Mar 23 03:02:14 pnetlab01 ovs-ctl[77974]: modprobe: FATAL: Module openvswitch not found in directory /lib/modules/6.5.11-8-pve Mar 23 03:02:14 pnetlab01 ovs-ctl[77974]: * Inserting openvswitch module Mar 23 03:02:14 pnetlab01 ovs-ctl[77974]: * not removing bridge module because bridges exist (docker0) Mar 23 03:02:14 pnetlab01 systemd[1]: ovs-vswitchd.service: Control process exited, code=exited status=1 Mar 23 03:02:14 pnetlab01 systemd[1]: ovs-vswitchd.service: Failed with result 'exit-code'. Mar 23 03:02:14 pnetlab01 systemd[1]: Failed to start Open vSwitch Forwarding Unit. </code></pre>
1777215
null
null
2024-03-23T03:36:23.153
Openvswitch failed to start when installing Pnetlab
[ "proxmox" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T04:39:19.820", "id": "2646510", "postId": "1508339", "score": "2", "text": "[Ubuntu 18.04 LTS reached *End of Standard Support* last year](https://fridge.ubuntu.com/2023/06/17/extended-security-maintenance-for-ubuntu-18-04-lts-began-on-may-31-2023/), and is thus off...
null
[]
null
null
null
null
null
1508340
1
null
2024-03-23T05:22:38.880
-1
38
<p>I am running Ubuntu 22.04 LTS on a 9500hx SBC, everything is up to date and upgraded so let's get right into the issue.</p> <p>I am adding a menu entry for Batocera through Ubuntu Grub (NOT using Grub-customizer nor any other third-party tools); however, I am receiving an error message: Device not found.</p> <p>I attempted to use Batocera's walkthrough which stated to simply use Grub.d/50_Batocera and that sudo update-grub will grab the new custom entry which is provided by batocera as follows:</p> <pre><code>#!/bin/bash cat &lt;&lt; EOF menuentry &quot;batocera.linux&quot; { search --set=root --label BATOCERA linux /boot/linux label=BATOCERA console=tty3 quiet loglevel=0 vt.global_cursor_default=0 initrd /boot/initrd.gz } EOF&quot; </code></pre> <p>However, as most of you can already see, this is missing the Exec tail code AND the CAT &lt;&lt; EOF will cause an error message with unrecognized syntax. The Spock in me is like &quot;...Highly illogical Captain&quot;. So I cut the code to Just the following:</p> <pre><code>#!/bin/bash menuentry &quot;batocera.linux&quot; { search --set=root --label BATOCERA linux /boot/linux label=BATOCERA console=tty3 quiet loglevel=0 vt.global_cursor_default=0 initrd /boot/initrd.gz } </code></pre> <p>However, I received the error no device found BATOCERA; upon returning to Ubuntu I confirmed the Volumes label is indeed BATOCERA as it was a default installation and no custom names nor relabeling occurred. My Dr.Mccoy sense tingling &quot;I'm just a country doctor, not a Linux Wizard!!&quot; but I consulted with my inner neck-beard and instead decided to use the UUDI and be done with, Code as Follows:</p> <pre><code>menuentry &quot;batocera.linux&quot; { search --no-floppy --fs-uuid --set=root ####-#### linux /boot/linux root=UUID=####-#### console=tty3 quiet loglevel=0 initrd /boot/initrd.gz } </code></pre> <p>I removed the Label specification as Grub did not find the volumes label initially; However, I received the SAME error message Error: No such Device: ####-####. i am now sort of at a loss.</p> <p>I reviewed the Boot/linux location and found that my permissions are frozen at <code>-rw-r--r--</code> so I thought perhaps I was missing Execute so I <code>sudo chown USER:GROUP -R /Directory/to/BATOCERA</code> (-R means Recursive to ensure all subsidiary folders and files receive the same ownership updates) and then <code>sudo chmod -R 741 /Directory/to/BATOCERA</code> (New Linux users see notes below for context on permissions). But I am still receiving the same Error message and I have noted that my permissions to the <code>/boot/linux</code> folder within Batocera have not changed and are still 644 instead of 741; however, the community does not seem to be having this issue so I am not sure what's going on. Scotty on my shoulder screaming &quot;I'm given all she's got cap'in! I Can'ny give'ya any more!&quot;</p> <p>But then my Goerdi Laforge kicked in and I tried for a third attempt; I used the Existing Grub.d/40_Custom entry again with Both the Label code AND UUID only to receive the same error messages! And I'm witnessing the Borg &quot;Resistance is futile&quot; moment. . .</p> <p>So finally, after seething with the fury of a Sith lord watching a peaceful republic and not having unlimited power nor control over the senate, I decided to add the entry directly into the <code>Grub.cfg</code> like an absolute deranged madman on a savage Friday night tear.</p> <p>I see my GAMES drive (aka BATOCERA AKA Batorcera.linux) and I click the entry...... Error: No Such Device: UUID.... the rage in me bordered on pure elation of ecstasy and belligerently indiscriminate hate that only the Hulk could truly understand. Using all of my will not to destroy my monitor and PC I revert to Dr.Banner and rethink my strategy... my Gandalf has no power here</p> <p>Any Assistance from the Counsel of Ricks would be greatly appreciated!</p> <p>(For new Linux users the total number 7 is the sum of the following permissions: Read(r)=4 Write(w)=2 Execute(x)=1 Total =7. The first number is the root, the second number is the user, and the third number is others so 741 means RWX for root, RW for users, and X for all others. this is a numerical value for the Written format which is as follows -rw-r--r-- meaning the Root user can Read(r) and Write(w) but not Execute as there is a - instead of an x; the user can Read(r) but not Write(w) nor Execute(x) as both are replaced with the - values, and all others can only Read(r) but not Write(w) nor Execute(x) for the same reason previously discussed)</p>
1774593
1450948
2024-03-23T06:12:00.567
2024-03-23T06:12:00.567
Dual boot Ubuntu and Batorcera
[ "boot", "dual-boot", "grub2", "bash", "permissions" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T05:40:23.953", "id": "2646516", "postId": "1508340", "score": "0", "text": "Thank you for the Reply User535733 but as i already stated i double checked the Label and UUIDs... they are correct, label is batocera and my UUID is accurate; unless you're suggesting i swi...
null
[]
null
null
null
null
null
1508341
1
null
2024-03-23T05:49:19.557
0
43
<p><strong>Ubuntu Server 23.10</strong></p> <p>My server was working perfectly fine, until one day I woke up to it having no internet.</p> <p>The server has a static IP address, and I can use it locally, however when I try to run <code>ping google.com</code>, it outputs <code>ping: google.com: Temporary failure in name resolution</code>. <code>ping 8.8.8.8</code> works.</p>
1777230
null
null
2024-03-23T05:49:19.557
Ubuntu Has No Internet :/
[ "networking", "server", "23.10" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T06:29:04.483", "id": "2646519", "postId": "1508341", "score": "1", "text": "Your DNS isn't working correctly. You could try updating the DNS nameserver (could use `1.1.1.1`). Here are some instructions: https://askubuntu.com/questions/211757/how-do-i-set-a-static-dn...
null
[]
null
null
null
null
null
1508345
1
null
2024-03-23T07:20:00.213
0
21
<p>DMAR: Failed to find the handle for ACPI object When I boot it shows like this for few minutes, but it boots into the system. Still I want to resolve this issue.</p> <p>Before booting:</p> <p><a href="https://i.stack.imgur.com/iyfGp.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/iyfGp.jpg" alt="enter image description here" /></a></p> <pre class="lang-none prettyprint-override"><code>x86/cpu: disabled by BIOS DMAR: Failed to find the handle for ACPI object </code></pre>
1777244
94914
2024-03-23T08:59:14.653
2024-03-23T08:59:14.653
When I boot up Kubuntu, It shows "x86:\cpu disabled by BIOS. DMAR: Failed to find the handle for ACPI object"
[ "boot", "kubuntu" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508347
1
null
2024-03-23T07:30:28.170
0
32
<p>I think I have a code red with this one - it's frozen at the worst possible point where the boot options menu has been disabled, and before it has registered the power button.</p> <p><a href="https://i.imgur.com/8qmbqV4.jpeg" rel="nofollow noreferrer">https://i.imgur.com/8qmbqV4.jpeg</a></p> <p>I've tried holding down the power button, but as aforementioned, it does nothing. It has seemingly frozen at a point where it cannot be interrupted. I can hear the fans whirring, and I think my only hope is to wait for it to run out of battery.</p> <p>Yes, I dualboot Windows because I need to use some Windows-specific software. If anyone has some black magic hotkeys, please share them. I am using Ubuntu 23.10.</p> <p>EDIT: Ok it's getting a little toasty... Will there be some lower-level safety feature that shuts it off it if gets too hot? I'm nervous that I'll have to open it up and disconnect the power source or something.</p> <p>EDIT2: it's ok, it ran out of power just now and it seems to be working alright.</p>
1777245
1777245
2024-03-23T08:40:44.603
2024-03-23T08:42:27.990
SOLVED - Completely frozen on bootscreen (unresponsive)
[ "dual-boot", "freeze", "23.10" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Nevermind, it's ok :) it ran out of power and, at least, Windows is working fine.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2024-03-23T12:54:54.020", "id": "2646553", "postId": "1508351", "score": "0", ...
null
null
null
null
null
1508349
1
null
2024-03-23T08:17:25.627
0
19
<p>I've run into a problem where the Files app in Ubuntu doesn't show, and even all of my folders and files are hidden from the display screen; even searching in the search box doesn't show them. I tried to <code>ls</code> if the file and folder exist, and it does, but when I tried to download a file, the files app opened to save a file, which means it does exist. Could anyone help me with this?</p> <p>What I did before the issue: I ran into a boot issue (due to the installation of the fuse in 23.10), so as instructed in the solution, I clicked <code>Ctrl</code> + <code>Alt</code> + <code>F3</code> and from there, I did below:</p> <pre class="lang-bash prettyprint-override"><code>sudo apt purge fuse sudo apt-purge gdm3 sudo apt install gdm3 </code></pre> <p>This method worked, and I rebooted, but currently I'm unable to see the files, apps, and other files and folders. I believe the issue happened because of <code>gdm3</code> since it's the display manager, so could anyone please help me? Thank you for your time; I really appreciate it.</p>
1743534
null
null
2024-03-23T08:17:25.627
Files app and all files and folders are not showing up in 23.10 version after reboot
[ "gdm", "23.10" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508353
1
null
2024-03-23T08:51:40.187
0
25
<p>I am encountering issues with my Ubuntu 20.04 server running on Oracle, as I have forgotten the root password. Unfortunately, I am unable to access the GRUB menu to initiate password recovery. Could you please provide guidance on how to reset the root password under these circumstances?</p> <p>Additionally, I mistakenly closed the firewall, which is now preventing me from accessing the aapanel panel. Is there a way to modify the firewall settings without requiring root privileges?</p> <p>Your assistance in resolving these issues would be greatly appreciated.</p> <p>Thank you.</p>
1777256
null
null
2024-03-23T08:51:40.187
Assistance Needed: Recovering Root Password and Accessing Firewall Settings on Ubuntu 20.04 Server
[ "networking", "server", "password", "firewall" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T09:21:30.893", "id": "2646529", "postId": "1508353", "score": "2", "text": "Does this answer your question? [How to recover the root password on ubuntu server](https://askubuntu.com/questions/395196/how-to-recover-the-root-password-on-ubuntu-server)", "userDispl...
null
[]
null
null
null
null
null
1508356
1
null
2024-03-23T09:55:46.540
-1
25
<p>Accidentally deleted <code>source.list</code> in wsl ubuntu while following some tutorial and now what ever i do i cant install anything on it, i tried to paste in a new copy of <code>source.list</code> as stated in this comment <code>https://unix.stackexchange.com/a/458739</code></p> <p><code>here is what i get when i use sudo apt-get update</code></p> <pre><code>W: http://download.opensuse.org/repositories/Ubuntu:/debbuild/Ubuntu_20.04/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. W: GPG error: http://archive.ubuntu.com/ubuntu xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32 E: The repository 'http://archive.ubuntu.com/ubuntu xenial InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://archive.ubuntu.com/ubuntu xenial-updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32 E: The repository 'http://archive.ubuntu.com/ubuntu xenial-updates InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://security.ubuntu.com/ubuntu xenial-security InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32 E: The repository 'http://security.ubuntu.com/ubuntu xenial-security InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://archive.ubuntu.com/ubuntu xenial-backports InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32 E: The repository 'http://archive.ubuntu.com/ubuntu xenial-backports InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: http://deb.playonlinux.com/dists/trusty/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. </code></pre>
1777266
614422
2024-03-23T12:43:13.613
2024-03-23T12:57:07.840
Accidentally deleted source.list in wsl ubuntu
[ "apt", "package-management", "updates", "windows-subsystem-for-linux" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T10:13:08.667", "id": "2646532", "postId": "1508356", "score": "0", "text": "You haven't provided any release details, which is rather critical as the sources need to match your installed system. Your pasted link on where you got sources, plus what you pasted however...
null
[]
null
null
2024-03-23T11:38:24.063
null
null
1508360
1
1508366
2024-03-23T10:44:47.710
-1
158
<p>If possible, what command should be used to run the programs?</p>
1777079
null
null
2024-03-23T11:44:33.443
Is it possible to run the desired program in the terminal with the command?
[ "autorun" ]
1
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T10:59:28.000", "id": "2646538", "postId": "1508360", "score": "1", "text": "Yes ... What is the desired program ?", "userDisplayName": null, "userId": "614422" }, { "creationDate": "2024-03-23T11:05:09.773", "id": "2646539", "postId": "150836...
{ "accepted": true, "body": "<p>For terminal programs the command to run the program is usually the same as the package name of the program. For example, the package name of Vim is vim (with a lowercase v), and the command to start Vim is also <code>vim</code> (also with a lowercase v).</p>\n<p>For launching GUI applications you don't need to know the package name of the app because you can launch the application by clicking its icon in the Dash.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-23T11:44:33.443", "id": "1508366", "lastActivityDate": "2024-03-23T11:44:33.443", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "94914", "parentId": "1508360", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>For terminal programs the command to run the program is usually the same as the package name of the program. For example, the package name of Vim is vim (with a lowercase v), and the command to start Vim is also <code>vim</code> (also with a lowercase v).</p>\n<p>For launchin...
null
null
null
null
null
1508362
1
null
2024-03-23T11:11:39.673
0
78
<p>I want to get to ubuntu recovery mode and I don't know how to get to grub menu. I am using ubuntu 22. I tried to hold or press many keys such as esc or shift left/right. I switched on the computer and pressed one of the keys and nothing happed.</p>
1754494
null
null
2024-03-23T11:45:26.247
How to get to grub menu
[ "grub2", "recovery-mode" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T13:14:09.753", "id": "2646555", "postId": "1508362", "score": "0", "text": "Did you try to change the value of `GRUB_DEFAULT=0` `0` to `5` in `/etc/default/grub` and then `update-grub`?", "userDisplayName": null, "userId": "1206611" }, { "creationDat...
null
[]
null
null
null
null
null
1508363
1
null
2024-03-23T11:20:00.883
0
38
<p>My Ubuntu 20.04 was working all fine, but all of a sudden I am not able to connect to my wifi as it is keeps on asking me for the wifi password again and again.</p> <p>I tried to remove the wifi password in my phone and make it public, and the open wifi was possible to connect, but I can't remove the password of my ISP wifi modem.</p> <p>I tried so many fixes in different answers of this website, but I had no luck.</p> <p>This is the image of the pop-up.</p> <p><a href="https://i.stack.imgur.com/GwDbB.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/GwDbB.png" alt="This is the image of the pop up" /></a></p>
1777282
94914
2024-03-23T12:07:06.100
2024-03-23T12:07:06.100
Wifi stopped getting connected in Ubuntu 20.04
[ "networking", "20.04", "wireless", "password", "authentication" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T12:42:05.243", "id": "2646552", "postId": "1508363", "score": "0", "text": "Are you sure you typed the password correctly? Check caps lock and num lock? Reboot both devices?", "userDisplayName": null, "userId": "1256089" }, { "creationDate": "2024-...
null
[]
null
null
null
null
null
1508364
1
null
2024-03-23T11:25:34.193
0
109
<p>I recently updated my laptop to <strong>Ubuntu 23.10 (with kernel 6.5.0-26-generic).</strong></p> <p>I have a bluetooth headphones that used to connect perfectly to my laptop without any problems, but since I update my system to the new kernel, I can't connect my bluetooth headphones to the computer. It just keeps trying to connect infinitely and can't.</p> <p>The headphones connect well with other devices, so the problem comes from the update. What could be happening? How do I solve it?</p> <p>running lsusb command: .... Bus 001 Device 004: ID 0bda:b00c Realtek Semiconductor Corp. Bluetooth Radio ....</p> <p>Thanks for the support</p>
1777284
1777284
2024-03-24T11:54:50.173
2024-03-25T13:47:08.027
Ubuntu can't connect a bluetooth headphones after a update
[ "kernel", "bluetooth", "23.10", "bluez", "bluetooth-speaker" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T11:29:40.927", "id": "2646656", "postId": "1508364", "score": "0", "text": "Can you use Grub menu, advanced options to boot into older kernel?", "userDisplayName": null, "userId": "300665" }, { "creationDate": "2024-03-24T12:09:56.203", "id": "26...
null
[ { "accepted": null, "body": "<p>It seems to work with kernel 6.5.0.21, (booting into this old kernel via GRUB Advanced options).</p>\n<pre class=\"lang-none prettyprint-override\"><code>$ dpkg -l | grep 6.5.0-26-generic: \npi linux-headers-6.5.0-26-generic 6.5.0-26.26 ...
null
null
null
null
null
1508365
1
null
2024-03-23T11:37:10.750
0
94
<p>I installed Ubuntu yesterday (March 22, 2024) on an HP G62 laptop. Now I can't access the internet because I can't access Wi-Fi. The laptop's internal Wi-Fi is broken and I am using a local market Wi-Fi adapter. I tried to install different drivers and look up different solutions, but none of them is working because my device is different from what commonly people use.</p> <p>My device ID (the top one device 013):</p> <p><a href="https://i.stack.imgur.com/7HQKy.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/7HQKy.jpg" alt="enter image description here" /></a></p> <p>I don't have any wired connection to the laptop and I can't have any wired connection to the laptop, so the laptop is without internet now, but there is Windows 10 on that laptop too and I can dual boot to Windows and the Wi-Fi adapter works there.</p>
1777285
94914
2024-03-23T12:16:22.160
2024-03-23T12:37:39.813
Wi-Fi driver problem
[ "networking", "drivers", "wireless" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T13:55:53.397", "id": "2646560", "postId": "1508365", "score": "0", "text": "try ``iwconfig'' command to see if interface name", "userDisplayName": null, "userId": "1372403" } ]
null
[ { "accepted": null, "body": "<p>Googling &quot;350b:9101 linux&quot; gives no good results. Similarly searching for &quot;ZTop&quot; finds windows drivers but not linux drivers.</p>\n<p>Very likely this device is (currently?) unsupported in linux.</p>\n<p>Your options are:</p>\n<ul>\n<li>wait for a driver ...
null
null
null
null
null
1508374
1
null
2024-03-23T15:17:58.910
0
19
<p>Nikon NX Studio works!.. but crop window is offset to upper left. How to get crop window directly over image? <a href="https://i.stack.imgur.com/oIIMl.jpg" rel="nofollow noreferrer">image of nikon nx studio with crop window offset to the upper left. I needs to be over the image itself.</a></p>
1776631
null
null
2024-03-23T15:17:58.910
Nikon NX Studio works!.. but crop window is offset to upper left. How to get crop window directly over image?
[ "22.04", "wine", "editor", "photo" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508376
1
null
2024-03-23T15:51:51.840
1
23
<p>I have created a LUKS encrypted pen drive with the gnome-disks tool, but a time ago I have accidentally formatted the disk, losing the partition.</p> <p>I tried to recuperate the partition stored on sda1 with:</p> <pre><code>$ sudo hexdump -C /dev/sda1 | grep LUKS </code></pre> <p>the command returned it:</p> <pre><code>90aa9ee0 4c 55 4b 53 f3 9b 59 86 5c 21 d4 80 34 40 19 19 |LUKS..Y.\!..4@..| 1301d5940 00 63 72 79 70 74 6f 5f 4c 55 4b 53 00 44 45 56 |.crypto_LUKS.DEV| 19b9a7940 00 63 72 79 70 74 6f 5f 4c 55 4b 53 00 44 45 56 |.crypto_LUKS.DEV| </code></pre> <p>Then I tried to mount the partition with:</p> <pre><code>$ losetup -a | grep sda1 /dev/loop14: []: (/dev/sda1), position 2427100896 $ sudo cryptsetup luksOpen /dev/loop14 luksrecover The device /dev/loop14 it is not a valid LUKS device. </code></pre> <p>As showed, it's saying that the device mounted can't be recognized and decrypted as a LUKS device. Thus, the question is: If it's possible,how can I repair the deleted partition and get my data back?</p>
1777319
null
null
2024-03-23T15:51:51.840
How to recover a deleted LUKS partition
[ "boot", "partitioning", "mount", "encryption", "luks" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T16:33:49.357", "id": "2646569", "postId": "1508376", "score": "2", "text": "Can you tag the question with your Ubuntu version?", "userDisplayName": null, "userId": "884673" } ]
null
[]
null
null
null
null
null
1508377
1
null
2024-03-23T15:58:08.870
0
26
<p>I am new to the Ubuntu/Linux world and I'm loving it! Recently, I learned how to create my first virtual machine in VMware, but I had a really hard time getting the VM tools to work through the terminal command. After completing the setup, I found out that I am unable to perform bidirectional actions through the shared folders because I do not have user access. The shared folders do not acknowledge me as the administrator. I was wondering if anyone could offer any scripts to use in the terminal to help me correct this issue.</p> <p><a href="https://i.stack.imgur.com/Haygd.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Haygd.png" alt="enter image description here" /></a></p>
1777323
94914
2024-03-23T17:10:27.170
2024-03-23T17:10:27.170
Change owner / user access
[ "permissions", "vmware", "shared-folders" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508380
1
null
2024-03-23T16:38:55.730
-1
9
<p>I use Ubuntu 20.04 and my computer was running MongoDB normally Suddenly, I become unable to run MongoDB by using <code>systemctl</code> or <code>service</code> command despite not chaning anything related to MongoDB</p> <pre><code>$ systemctl status mongod Unit mongod.service could not be found. </code></pre> <p>The same thing also happens if I replace <code>mongod</code> with <code>mongodb</code> on the above</p> <p>However, I can run the <code>mongod --version</code></p> <pre><code>$ mongod --version db version v3.6.8 </code></pre> <p>Another problem is the <code>mongo</code> command (client) As suggested, I tried to run <code>sudo apt install mongodb-clients</code> But I got this error:</p> <pre><code>dpkg: error processing archive /var/cache/apt/archives/mongo-tools_3.6.3-0ubuntu1_amd64.deb (--unpack): trying to overwrite '/usr/bin/bsondump', which is also in package mongodb-database-tools 100.7.2 dpkg-deb: error: paste subprocess was killed by signal (Broken pipe) Selecting previously unselected package mongodb-clients. Preparing to unpack .../mongodb-clients_1%3a3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3_amd64.deb ... Unpacking mongodb-clients (1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3) ... Errors were encountered while processing: /var/cache/apt/archives/mongo-tools_3.6.3-0ubuntu1_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) </code></pre> <p>My questions are:</p> <ul> <li>What should I do so that I can start MongoDB with systemctl</li> <li>How to fix the installation of the MongoDB client</li> </ul> <p>I've tried to purge and re-install Mongodb, but still get the same error. I probably messed up the Mongdb version while trying to fix the problems, so you can also suggest me how to remove everything related to Mongodb (including the installation, repository key, etc.), so that I can have a clean and working installation. (I'm still able to run <code>mongod</code> command after apt purge mongo* which is quite weird)</p> <p>Or is there anything that I need to do to verify that my 'systemctl' works fine?</p> <p>Please suggest me how to fix it. I just need to have MongoDB run on my computer (preferably version 3.x or 4.x). I don't want to re-install my computer</p>
515284
515284
2024-03-23T16:48:50.777
2024-03-23T16:48:50.777
Fixing Mongodb Installation on Ubuntu without reinstalling OS
[ "apt", "package-management", "software-installation", "mongodb" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
2024-03-23T16:57:37.933
null
null
1508382
1
null
2024-03-23T17:18:19.653
-1
31
<p>I want mount using well-known way</p> <pre><code>gio mount smb://&lt;user&gt;:&lt;password&gt;@&lt;server&gt;/&lt;share&gt;/ </code></pre> <p>In my case</p> <pre><code>gio mount &quot;smb://WORKGROUP;myuser:+B@e}F)q8tra@@192.168.1.199/&quot; </code></pre> <p>I get warning Authentication Required Enter password for “192.168.1.199”:</p> <p>It is because of my password <code>+B@e}F)q8tra@</code> I try convert it using <a href="https://www.urlencoder.org/" rel="nofollow noreferrer">this converter</a> to <code>%2BB%40e%7DF%29q8tra%40</code> but without success... I try add symbol <code>\</code> with different combinations without success.</p> <p>I read <a href="https://askubuntu.com/questions/1021643/how-to-specify-a-password-when-mounting-a-smb-share-with-gio/1027175#1027175">topic</a>. I only found dirty hack <a href="https://askubuntu.com/questions/1021643/how-to-specify-a-password-when-mounting-a-smb-share-with-gio">here</a></p> <pre><code>echo &quot;+B@e}F)q8tra@&quot; | gio mount &quot;smb://WORKGROUP;myuser@192.168.1.199/&quot; </code></pre> <p>With this hack works.</p> <p>Ho do without hack?</p>
1087530
1087530
2024-03-23T17:23:53.273
2024-03-23T17:23:53.273
gio mount password with special characters
[ "mount", "samba", "password" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508385
1
null
2024-03-23T18:17:08.440
2
27
<p>In Windows 11, I can select to have a random slideshow of pictures in the lock screen. I can select a folder, and it takes all pictures from there and randomnly shows then in the lock screen. Is it possible in Ubuntu latest LTS?</p>
1773344
null
null
2024-03-23T18:17:08.440
Lock Screen + Photos Slideshow?
[ "lock-screen", "photoshop", "slideshow" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T22:08:36.930", "id": "2646595", "postId": "1508385", "score": "0", "text": "I think your best bet will be to install [XScreensaver](https://www.jwz.org/xscreensaver) following notes like the ones here: https://askubuntu.com/a/293014/1691066", "userDisplayName": ...
null
[]
null
null
null
null
null
1508388
1
null
2024-03-23T18:59:23.230
-1
21
<p>Using Ubuntu 22.04 with GS Connect Gnome extension, I can send files to my Android 14 phone but can't send files of any size from phone to laptop. The apps are up to date on both devices. I've tried reinstalling on both devices and the firewall is set up correctly. Also, the phone fails mount via GS Connect. Can anyone suggest a solution?</p>
983744
null
null
2024-03-23T18:59:23.230
GSConnect file share failure
[ "kde-connect" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508390
1
null
2024-03-23T19:16:34.330
-1
32
<p>So, I reset my PC from Ubuntu 22.04 to Kubuntu 23.10 and forgot to backup the Apache2 HTML files. Is there any way to recover these after a format?</p>
624707
null
null
2024-03-24T08:01:50.673
Recover deleted ext4 after reinstall
[ "22.04", "data-recovery", "23.10" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T19:21:31.530", "id": "2646585", "postId": "1508390", "score": "4", "text": "Nope, you need a backup. tools like testdisk only work if you do nothing after deleting; any other action (like format + install) is 1 action too much, Take the time to redo your system: c...
null
[ { "accepted": null, "body": "<p>Schematic layout of a just created system disk:</p>\n<p><code>&lt;partition table&gt;</code><br />\n<code>&lt;table of contents&gt;</code><br />\n<code>&lt;First file&gt;</code><br />\n<code>&lt;second file&gt;</code><br />\n<code>...</code><br />\n<code>&lt;file n&gt;</code>...
null
null
null
null
null
1508395
1
null
2024-03-23T20:23:27.990
0
111
<p>My laptop has become unusable, please help.</p> <p>I tried installing Ubuntu for the first time on a USB stick to run from any computer.</p> <p>Here are the steps I took:</p> <ol> <li>downloaded Ubuntu from web on Windows and transferred to USB1 using Rufus</li> <li>boot into Ubuntu test from live USB1</li> <li>checked that Windows EFI partition (separate SSD) was flagged as msftdata (the guide I followed stated it should be changed from EFI to mfstdata, but it was already this way)</li> <li>ran install ubuntu to USB2 (clean drive, 332MB EFI partition and rest of 16GB Ext4, mount point ’/’</li> <li>after successful install changed main OS EFI partition flag to EFI (I suspect this might be the issue, as it was msftdata when I started?)</li> <li>restarted computer</li> </ol> <p>This is the situation now:</p> <ul> <li>when USB2 with newly installed Ubuntu is inserted it boots(?) but gets stuck on the loading screen (Ubuntu logo), however I can enter Ubuntu recovery mode</li> <li>can’t access Ubuntu downloaded with Rufus on from USB1 (to that way see what might be wrong)</li> <li>cant boot into Windows 10 (OS on my SSD), removed the drive from the computer and all other issues persist. Does this mean my BIOS is damaged? Is there any way to fix that (laptop is Samsung NP530U3C)</li> <li>stuck in restart loop (can’t enter BIOS or Recovery Mode)</li> <li>Edit: unplugged the CMOS battery, but problems persists. Only way to exit restart loop seems to be using USB2.</li> </ul> <p>Let me know if more information is needed. Unfortunately my knowledge is none when it comes to recovery.</p> <p>Thank you for the help! Even if I can just get Windows back running I’m more than happy.</p> <p>Output of sudo parted -ls:</p> <pre><code>root@LA-5303C:*# sudo parted -1s Model: ATA C250BX100SSD1 (scsi) Disk /dev/sda: 250GB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type Filesys Flags 1 32,8KB 249GB 249GB primary ntfs 2 249GB 250GB 609MB primary ntfs Model: ATA SanDisk SSD 1100 (scsi) Disk /dev/sdb: 24,0G Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type Filesys Flags 1 1049KB 20,8GB 20,8GB primary 2 20,8GB 24GB 3221MB primary irst Model: Kingston DataTraveler 3.0 (scsi) Disk: /dev/sdc: 15,5GB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type Filesys Flags 1 1049kB 332MB 331MB primary fat32 boot,esp 2 332MB 15,5GB 15,1GB primary ext4 </code></pre>
1777355
1777355
2024-03-26T12:24:47.563
2024-03-26T12:24:47.563
Restart loop after Ubuntu install on USB
[ "dual-boot", "uefi", "usb-drive", "boot-repair", "recovery-mode" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T22:47:39.333", "id": "2646602", "postId": "1508395", "score": "1", "text": "Adding the esp flag to a partition that originally didn't have is is certainly wrong. Maybe you now have two EFI partitions, or maybe you system is really a legacy setup (no EFI partition)....
null
[]
null
null
null
null
null
1508399
1
null
2024-03-23T22:00:56.030
-3
45
<p>Where can I find a repository for Precise Pangolin (12.04LTS)?</p> <p>I am not asking a question about this specific version of Ubuntu. I just want to know where I can download it, If it's still available.</p>
1777373
767056
2024-03-24T03:36:02.150
2024-03-24T03:36:02.150
Finding Precise Pangolin (12.04) repository
[ "12.04", "repository", "disk-image" ]
1
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T22:05:07.510", "id": "2646594", "postId": "1508399", "score": "3", "text": "Welcome to Ask Ubuntu. Why are you looking for looking for almost 12 year old version? It has reached the end of its life and is not maintained anymore.", "userDisplayName": null, "u...
null
[ { "accepted": null, "body": "<p>The url for EOL repositories is <a href=\"https://old-releases.ubuntu.com/releases/\" rel=\"nofollow noreferrer\">https://old-releases.ubuntu.com/releases/</a></p>\n<p>The direct link for Precise Pangolin (12.04.5 LTS) is: <a href=\"https://old-releases.ubuntu.com/releases/pr...
null
null
2024-03-24T00:09:43.073
null
null
1508401
1
null
2024-03-23T22:13:29.963
0
37
<p>I'm currently facing an issue with the sound on my Ubuntu system and could really use some assistance in troubleshooting it. My sound output device is stuck in a &quot;SUSPENDED&quot; state and is identified as &quot;auto_null,&quot; which seems to be a dummy output. This occurs even though my sound hardware is connected properly.</p> <p>Steps Taken So Far:</p> <ul> <li>Restarted PulseAudio using the command <code>pulseaudio -k</code>.</li> <li>Checked ALSA mixer (not running).</li> <li>Ensured my Ubuntu system is up to date with the latest updates.</li> </ul> <p>System Details:</p>
1777380
158442
2024-03-24T01:54:46.393
2024-03-24T01:54:46.393
Sound Issue - Dummy Output/Suspended State
[ "sound", "suspend", "pulseaudio", "alsa" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T22:30:18.910", "id": "2646598", "postId": "1508401", "score": "0", "text": "What hardware are you using? Are you able to provide your ubuntu and kernel versions?", "userDisplayName": null, "userId": "884673" } ]
null
[]
null
null
null
null
null
1508404
1
null
2024-03-23T22:28:59.577
0
32
<p>I have this error when I try to start caffeine</p> <p>/usr/bin/caffeine-indicator:29: DeprecationWarning: pkg_resources is deprecated as an API. See <a href="https://setuptools.pypa.io/en/latest/pkg_resources.html" rel="nofollow noreferrer">https://setuptools.pypa.io/en/latest/pkg_resources.html</a> import pkg_resources</p> <p>Anyone know how can I solved? Thanks</p>
1777382
null
null
2024-03-23T22:28:59.577
caffeine-indicator error
[ "caffeine" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T23:45:43.887", "id": "2646607", "postId": "1508404", "score": "0", "text": "Probably from htm: https://setuptools.pypa.io/en/latest/pkg_resources.html", "userDisplayName": null, "userId": "25618" } ]
null
[]
null
null
null
null
null
1508405
1
null
2024-03-23T22:32:31.323
-1
31
<p>How do I get the Motherboard Wifi Working on Linux Ubuntu 22.04.4 LTS It is enabled in the bios but nowhere in settings for WiFi</p>
1777383
null
null
2024-03-23T22:32:31.323
Asus Prime B660 motherboard WiFi not working
[ "asus" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T22:38:34.077", "id": "2646599", "postId": "1508405", "score": "2", "text": "Does this answer your question? [Installing wifi drivers for Ubuntu (Asus)](https://askubuntu.com/questions/1452546/installing-wifi-drivers-for-ubuntu-asus)", "userDisplayName": null, ...
null
[]
null
null
2024-03-25T00:11:03.280
null
null
1508406
1
null
2024-03-23T22:57:40.347
-3
48
<p>I am using Mantic Minotaur and the display is completely desaturated. Please help me return the display to what it was under previous versions with normal level of color.</p> <p><a href="https://i.stack.imgur.com/4TUnc.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/4TUnc.jpg" alt="enter image description here" /></a></p>
1777386
94914
2024-03-24T00:17:50.433
2024-03-24T00:17:50.433
Display is monochrone - Using Mantic Minotaur in both Wayland and X11
[ "display", "23.10" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-30T00:30:38.937", "id": "2647757", "postId": "1508406", "score": "0", "text": "SO I have provided a description of the problem, if no body wants to help, fine.", "userDisplayName": null, "userId": "1777386" }, { "creationDate": "2024-03-30T02:13:24.617"...
null
[]
null
null
null
null
null
1508407
1
null
2024-03-23T23:15:20.803
-1
47
<p>I downloaded the .deb file of several programs. When I double click the file and open it with the software installer, I click install and after a few moments the window automatically closes and the software doesn't install. I did this with several programs. please guide me.</p>
1777389
null
null
2024-03-23T23:15:20.803
Problem installing the software
[ "22.04", "deb" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-23T23:30:15.903", "id": "2646606", "postId": "1508407", "score": "5", "text": "Does this answer your question? [How do I install a .deb file via the command line?](https://askubuntu.com/questions/40779/how-do-i-install-a-deb-file-via-the-command-line) and [How to down...
null
[]
null
null
2024-03-25T02:11:59.593
null
null
1508410
1
null
2024-03-24T00:48:09.217
0
36
<p>Is Grub compatible with my Raspberry Pi 5 running Ubuntu 23.1 Gnome 45.2?</p>
1772564
336615
2024-03-28T20:45:16.897
2024-03-28T20:45:16.897
Does Ubuntu for Raspberry Pi support GRUB?
[ "boot" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T01:03:30.380", "id": "2646613", "postId": "1508410", "score": "2", "text": "Why do you need grub? Do you want to dual boot?", "userDisplayName": null, "userId": "124466" }, { "creationDate": "2024-03-24T04:30:43.750", "id": "2646628", "postId...
null
[]
null
null
null
null
null
1508412
1
null
2024-03-24T01:03:45.167
0
49
<p>I'm not sure when it happened, but the Dock no longer appears in Settings nor is it hoverable if I move the cursor to the bottom of the screen.</p> <p><a href="https://i.stack.imgur.com/MKgvx.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/MKgvx.png" alt="screenshot of settings missing Ubuntu Desktop or Dock settings" /></a></p> <p>If I show all applications, the Dock appears and I can click on it to launch apps.</p> <p><a href="https://i.stack.imgur.com/yLz77.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/yLz77.jpg" alt="dock screenshot" /></a></p> <p>I have checked if the extension is enabled, and it is not. However, enabling it does nothing:</p> <pre><code>➜ ~ gnome-extensions enable ubuntu-dock@ubuntu.com ➜ ~ gnome-extensions list --enabled ➜ ~ # nothing is listed </code></pre> <p>Tailing the logs, it says it was enabled successfully:</p> <pre><code>Mar 23 17:46:47 me dbus-daemon[15136]: [session uid=1000 pid=15136] Activating service name='org.gnome.Shell.Extensions' requested by ':1.150' (uid=1000 pid=24616 comm=&quot;gnome-extensions enable ubuntu-dock@ubuntu.com&quot; label=&quot;unconfined&quot;) Mar 23 17:46:47 me dbus-daemon[15136]: [session uid=1000 pid=15136] Successfully activated service 'org.gnome.Shell.Extensions' </code></pre> <h2>Troubleshooting Attempts</h2> <ol> <li>I have tried removing and installing <code>gnome-shell-extension-ubuntu-dock</code> to no avail.</li> </ol> <pre><code>➜ ~ sudo apt purge gnome-shell-extension-ubuntu-dock ➜ ~ sudo apt install --reinstall ubuntu-desktop </code></pre> <ol start="2"> <li><p>I have tried creating a new User and seeing if it was a User-specific configuration, and that did not work.</p> </li> <li><p>I have tried launching the control center with the following:</p> </li> </ol> <pre><code>➜ ~ XDG_CURRENT_DESKTOP=ubuntu:GNOME gnome-control-center 18:01:30.9573 cc-ubuntu-panel[28342]: WARNING: Extension ding@rastersoft.com is not available or invalid (state 99) 18:01:30.9575 cc-ubuntu-panel[28342]: WARNING: Extension ubuntu-dock@ubuntu.com is not enabled (state 6) 18:01:30.9575 cc-ubuntu-panel[28342]: WARNING: Extension tiling-assistant@ubuntu.com is not available or invalid (state 99) </code></pre> <p>This does bring back the Ubuntu Desktop settings, but changing them has no effect. In the logs when it starts, it says the <code>ubuntu-dock@ubuntu.com</code> extension is not enabled.</p> <p><a href="https://i.stack.imgur.com/0eOPy.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/0eOPy.png" alt="Screenshot of Desktop back" /></a></p> <ol start="4"> <li>I have checked the Tweaks app, and there are no options for modifying the Dock. I do not (as far as I am aware) have any Tweaks installed.</li> </ol>
1102249
389216
2024-03-24T05:15:37.940
2024-03-24T05:15:37.940
Ubuntu 23.10 - Dock not hoverable and not listed in settings
[ "gnome", "23.10" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-29T23:50:32.813", "id": "2647748", "postId": "1508412", "score": "0", "text": "Same issue here. Did you find a solution?", "userDisplayName": null, "userId": "545471" }, { "creationDate": "2024-03-31T00:23:59.047", "id": "2647942", "postId": "15...
null
[]
null
null
null
null
null
1508414
1
null
2024-03-24T01:45:44.160
-1
27
<p>The first time I connected my new Webcam C270i to Ubuntu 22.04.4 LTS it was detected and worked for a while with this configuration</p> <pre><code>$ lsusb | grep Logitech Bus 003 Device 007: ID 046d:0825 Logitech, Inc. Webcam C270 </code></pre> <p>The next time I restarted the computer it is detected with other configuration and it is not working anymore.</p> <pre><code>$ lsusb | grep Logitech Bus 003 Device 012: ID 046d:080c Logitech, Inc. dmesg usb 3-1.3: new high-speed USB device number 12 using xhci_hcd usb 3-1.3: New USB device found, idVendor=046d, idProduct=080c, bcdDevice= 0.10 usb 3-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0 usb 3-1.3: Found UVC 1.00 device &lt;unnamed&gt; (046d:080c) </code></pre> <p>My question is: Is there a way I can force the configuration back to the first one( the one that worked)</p>
573625
25618
2024-03-24T15:26:55.283
2024-03-24T15:26:55.283
Webcam Logitech C270i
[ "webcam", "logitech" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T16:46:04.580", "id": "2646696", "postId": "1508414", "score": "0", "text": "See [this thread in Ubuntu Forum](https://ubuntuforums.org/showthread.php?t=1958610) from 2012. their solution was to return the webcam and get a new one. Also see [this Q&A](https://askubun...
null
[]
null
null
null
null
null
1508416
1
null
2024-03-24T02:02:44.007
0
65
<p>The directory is 100% full. Is there any way to do this without using a bootable USB drive?</p> <p><a href="https://i.stack.imgur.com/0tvQ1.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/0tvQ1.png" alt="what gparted shows" /></a></p> <p>As you can see from the above image of GParted the drive does have some free unallocated space.</p> <p>or alternatively make room in the directory. My <code>/home</code> directory is already mounted on a different drive.</p> <p>I am also dual booting Windows 11 and it is installed on the same drive. It shouldn't cause any issues though.</p>
1777398
94914
2024-03-24T02:50:34.040
2024-03-24T17:46:50.137
I want to expand my root (/) partition on Ubuntu 20.04
[ "dual-boot", "20.04", "partitioning", "gparted" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T09:36:33.803", "id": "2646643", "postId": "1508416", "score": "2", "text": "Does this answer your question? [How can I resize an ext root partition at runtime?](https://askubuntu.com/questions/24027/how-can-i-resize-an-ext-root-partition-at-runtime)", "userDispl...
null
[ { "accepted": null, "body": "<p>Is there any way to expand root without using a bootable USB drive? Yes there is. See my question and answer here. <a href=\"https://askubuntu.com/questions/1314402/how-to-modify-partitions-without-a-live-usb-cd\">How to modify partitions without a live USB/CD</a> This approa...
null
null
null
null
null
1508417
1
null
2024-03-24T02:03:25.163
-1
39
<pre class="lang-none prettyprint-override"><code>$ wsl --version WSL version: 2.1.5.0 Kernel version: 5.15.146.1-2 WSLg version: 1.0.60 MSRDC version: 1.2.5105 Direct3D version: 1.611.1-81528511 DXCore version: 10.0.25131.1002-220531-1700.rs-onecore-base2-hyp Windows version: 10.0.22631.3371 </code></pre> <p>Windows 11 Version 23H2 (OS Build 22631.3371)</p> <p>I'm having problems with sound to and from snap apps.</p> <p>If I install WSL Ubuntu 22.04 from Microsoft Store the sound to/from snaps works right (apps tested are Firefox and my own guitarfinetune). Also if I upgrade the distribution to Ubuntu 23.10 the sound to/from snap apps keeps working.</p> <p>but if I install <code>sudo apt install -y update-manager</code> no sound gets through to/from snap apps. In apps not installed as snap the sound works fine.</p> <p>It seems to be if <code>wireplumber</code> is installed that the sound to/from snap apps is broken!</p> <p>How do I repair the sound system to/from snap apps?</p>
1588885
1588885
2024-03-24T17:22:15.980
2024-03-24T17:22:15.980
No audio to/from snaps after update
[ "sound", "snap", "23.10", "wireplumber" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508418
1
null
2024-03-24T02:11:47.133
-1
15
<p>I have a Acer Predator laptop G9-791-73ZW running Ubuntu 23.10.</p> <p>When I resume from a suspend I come back to this screen:</p> <p><a href="https://i.stack.imgur.com/U6Qyz.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/U6Qyz.jpg" alt="Screen that comes back after resuming from suspend" /></a></p> <p>The computer will tend to hang here until I press ALT-F1 then ALT-F2 and it will come back to the login screen. However, it will not accept any keyboard or mouse (trackpad or bluetooth mouse) input and I can't log in. I have to do a hard power off and reboot to get back into the system.</p> <p><a href="https://i.stack.imgur.com/Pzmxv.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Pzmxv.jpg" alt="screen after pressing ALT-F1/ALT-F2" /></a></p> <p>I'm looking for any suggestions on how to fix this, thanks.</p>
1663270
null
null
2024-03-24T02:11:47.133
Laptop hangs on resume from suspend (Acer Predator Ubuntu 23.10)
[ "suspend", "23.10", "resume" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508419
1
null
2024-03-24T02:13:24.030
0
82
<p>I have two systems running Ubuntu 22.04 with Firefox 124.0.1 64 bits installed via deb (not snap). One system displays the font (presumably Verdana) on a particular website correctly while the other used to, but now displays the font as monospace (which is ugly).</p> <p>Is it possibly one system or Firefox has corrupted fonts? Is there a way to fix this? I remember when I installed the snap Firefox initially I had this exact problem where the snap Firefox displayed the monospace font for this site. I have confirmed though that the snap Firefox is not currently installed.</p> <p>Using Firefox's developer tools I get console messages like..</p> <pre><code>Request for font &quot;Times New Roman&quot; blocked at visibility level 2 (requires 3) </code></pre> <p>I think there is a security setting maybe that I've changed that is causing this.</p>
206820
206820
2024-03-24T23:24:45.967
2024-03-24T23:40:25.573
Firefox is displaying wrong font for particular web site
[ "firefox", "fonts" ]
1
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T10:45:50.977", "id": "2646652", "postId": "1508419", "score": "1", "text": "If a website prescribes a font that is not installed on the system, the browser substitutes the font by something that is installed. You can find out through the Firefox developer tools whic...
null
[ { "accepted": null, "body": "<p>Some fonts were not being displayed because I had changed a setting in <code>Privacy &amp; Security</code>. I had custom settings under <code>Enhanced Tracking Protection</code>. Blocking <code>Suspected Fingerprinters</code> was preventing access to the necessary fonts. I...
null
null
null
null
null
1508421
1
null
2024-03-24T03:21:36.800
-1
29
<p>I ran out of storage recently on my Ubuntu machine, and updated partitions so I have about ~1gb left with a bootable USB. The computer still won't boot but I'm getting the errors on a black screen:</p> <p>/dev/nvme1n1p4: clean, 1350504/53469184 files, 203267760/213867187 blocks</p> <p>[ 3.938383] iwlwifi 0000:00:14.3 WRT: Invalid buffer destination</p>
1777416
null
null
2024-03-24T03:21:36.800
Computer won't boot, iwlwifi error
[ "boot" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508422
1
null
2024-03-24T03:38:30.000
-1
26
<p>I am running Onion services on Ubuntu Ubuntu 22.04.4 LTS on an old iMac with 10.0.0.8 ipaddress. I also installed nginx and can access the static page from my laptop so clearly the nginx setup is correct. I can access the static page locally and across the LAN. HTTP://10.0.0.8</p> <p>I installed Tor using the directions from the official tor website.</p> <p>I edited these two files HiddenServiceDir /var/lib/tor/hidden_service/ HiddenServicePort 80 127.0.0.1:80</p> <p>The local admin user on the iMac is &quot;imac&quot;, imac user is in the group debian-tor. However I can't seem to use</p> <p>When I run the tor status this is the output. Everything looks good.</p> <pre><code>imac@imac-iMac:~$ sudo service tor status tor.service - Anonymizing overlay network for TCP (multi-instance-master) Loaded: loaded (/lib/systemd/system/tor.service; enabled; vendor preset: enabled) Active: active (exited) since Sat 2024-03-23 23:10:12 EDT; 9s ago Process: 3643 ExecStart=/bin/true (code=exited, status=0/SUCCESS) Main PID: 3643 (code=exited, status=0/SUCCESS) CPU: 1ms Mar 23 23:10:12 imac-iMac systemd[1]: Starting Anonymizing overlay network for TCP (multi-instance-master)... Mar 23 23:10:12 imac-iMac systemd[1]: Finished Anonymizing overlay network for TCP (multi-instance-master). </code></pre> <p>When I try to access the site via onion service tor address created in the host file the tor browser returns this error. <a href="https://jhj2pdlhtahsxcest4zoy7b6l2pvtk3r5bdioeqpte4s5dxdeee6ffad.onion/" rel="nofollow noreferrer">https://jhj2pdlhtahsxcest4zoy7b6l2pvtk3r5bdioeqpte4s5dxdeee6ffad.onion/</a></p> <pre><code>&quot;The requested onion service descriptor can't be found on the hashring and therefore the service is not reachable by the client.&quot; </code></pre> <p>I just feel like I am doing something stupid. I disabled UFW. Is it possible that XFinity is blocking something?</p>
1777347
null
null
2024-03-24T03:38:30.000
Can not get onion services to serve tor website
[ "tor" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508423
1
null
2024-03-24T04:04:21.460
3
65
<p>I'm experiencing an issue on my Ubuntu system where the CPU usage consistently shows 100% utilization in system monitoring tools like top or htop. However, when I inspect the running processes, I can't seem to identify any particular process consuming a significant amount of CPU resources.</p> <p>I've tried using commands like top, htop, and ps to list the running processes, but none of them indicate any process responsible for the high CPU usage. Additionally, I've checked for any background tasks or services, but haven't found anything unusual.</p> <p>Could anyone suggest possible reasons for this behavior and how I might identify the cause of the high CPU usage in this scenario?</p> <p>Distributor ID: Ubuntu Description: Ubuntu 20.04.6 LTS Release: 20.04 Codename: focal</p> <p>Results of top:</p> <p><img src="https://i.stack.imgur.com/dm1Qd.jpg" alt="top" /></p> <p>Results of htop:</p> <p><img src="https://i.stack.imgur.com/UYqEK.jpg" alt="htop" /></p> <p>Results of iotop:</p> <p><img src="https://i.stack.imgur.com/zgYY8.jpg" alt="iotop" /></p> <pre class="lang-none prettyprint-override"><code>top - 11:44:24 up 7:42, 2 users, load average: 64.00, 64.00, 64.00 Tasks: 655 total, 1 running, 654 sleeping, 0 stopped, 0 zombie %Cpu(s): 99.9 us, 0.1 sy, 0.0 ni, 0.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st MiB Mem : 64294.3 total, 58049.2 free, 4826.7 used, 1418.5 buff/cache MiB Swap: 0.0 total, 0.0 free, 0.0 used. 58782.7 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 2471 root 20 0 6083740 99296 65304 S 1.0 0.2 4:00.85 kubelet 959 root 19 -1 135856 68372 67180 S 0.3 0.1 0:08.48 systemd-journal 1534 root 20 0 760560 40344 30188 S 0.3 0.1 1:11.12 kube-proxy 5509 root 20 0 9896 4556 3224 R 0.3 0.0 0:09.18 top 1 root 20 0 169868 13532 8500 S 0.0 0.0 0:06.53 systemd 2 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kthreadd 3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp 4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par_gp 6 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0H-events_highpri 8 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_percpu_wq 9 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/0 10 root 20 0 0 0 0 I 0.0 0.0 0:02.63 rcu_sched 11 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migration/0 12 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/0 13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:1-rcu_par_gp 14 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0 15 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1 16 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/1 17 root rt 0 0 0 0 S 0.0 0.0 0:00.39 migration/1 18 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/1 20 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0H-kblockd 21 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2 22 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/2 23 root rt 0 0 0 0 S 0.0 0.0 0:00.39 migration/2 24 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/2 26 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/2:0H-kblockd 27 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3 28 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/3 29 root rt 0 0 0 0 S 0.0 0.0 0:00.39 migration/3 30 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/3 32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0H-kblockd 33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4 34 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/4 35 root rt 0 0 0 0 S 0.0 0.0 0:00.39 migration/4 36 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/4 37 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0-mm_percpu_wq 38 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0H-events_highpri </code></pre> <pre><code> 1 [||||||||||||||||||||||||100.0%] 17 [||||||||||||||||||||||||100.0%] 33 [||||||||||||||||||||||||100.0%] 49 [||||||||||||||||||||||||100.0%] 2 [||||||||||||||||||||||||100.0%] 18 [||||||||||||||||||||||||100.0%] 34 [||||||||||||||||||||||||100.0%] 50 [||||||||||||||||||||||||100.0%] 3 [||||||||||||||||||||||||100.0%] 19 [||||||||||||||||||||||||100.0%] 35 [||||||||||||||||||||||||100.0%] 51 [||||||||||||||||||||||||100.0%] 4 [||||||||||||||||||||||||100.0%] 20 [||||||||||||||||||||||||100.0%] 36 [||||||||||||||||||||||||100.0%] 52 [||||||||||||||||||||||||100.0%] 5 [||||||||||||||||||||||||100.0%] 21 [||||||||||||||||||||||||100.0%] 37 [||||||||||||||||||||||||100.0%] 53 [||||||||||||||||||||||||100.0%] 6 [||||||||||||||||||||||||100.0%] 22 [||||||||||||||||||||||||100.0%] 38 [||||||||||||||||||||||||100.0%] 54 [||||||||||||||||||||||||100.0%] 7 [||||||||||||||||||||||||100.0%] 23 [||||||||||||||||||||||||100.0%] 39 [||||||||||||||||||||||||100.0%] 55 [||||||||||||||||||||||||100.0%] 8 [||||||||||||||||||||||||100.0%] 24 [||||||||||||||||||||||||100.0%] 40 [||||||||||||||||||||||||100.0%] 56 [||||||||||||||||||||||||100.0%] 9 [||||||||||||||||||||||||100.0%] 25 [||||||||||||||||||||||||100.0%] 41 [||||||||||||||||||||||||100.0%] 57 [||||||||||||||||||||||||100.0%] 10 [||||||||||||||||||||||||100.0%] 26 [||||||||||||||||||||||||100.0%] 42 [||||||||||||||||||||||||100.0%] 58 [||||||||||||||||||||||||100.0%] 11 [||||||||||||||||||||||||100.0%] 27 [||||||||||||||||||||||||100.0%] 43 [||||||||||||||||||||||||100.0%] 59 [||||||||||||||||||||||||100.0%] 12 [||||||||||||||||||||||||100.0%] 28 [||||||||||||||||||||||||100.0%] 44 [||||||||||||||||||||||||100.0%] 60 [||||||||||||||||||||||||100.0%] 13 [||||||||||||||||||||||||100.0%] 29 [||||||||||||||||||||||||100.0%] 45 [||||||||||||||||||||||||100.0%] 61 [||||||||||||||||||||||||100.0%] 14 [||||||||||||||||||||||||100.0%] 30 [||||||||||||||||||||||||100.0%] 46 [||||||||||||||||||||||||100.0%] 62 [||||||||||||||||||||||||100.0%] 15 [||||||||||||||||||||||||100.0%] 31 [||||||||||||||||||||||||100.0%] 47 [||||||||||||||||||||||||100.0%] 63 [||||||||||||||||||||||||100.0%] 16 [||||||||||||||||||||||||100.0%] 32 [||||||||||||||||||||||||100.0%] 48 [||||||||||||||||||||||||100.0%] 64 [||||||||||||||||||||||||100.0%] Mem[||||||||| 4.72G/62.8G] Tasks: 48, 609 kthr; 1 running Swp[ 0K/0K] Load average: 64.03 64.01 64.00 Uptime: 07:43:48 PID USER PRI NI VIRT RES SHR S CPU% MEM% TIME+ Command 5618 root 20 0 8640 4576 3332 R 2.0 0.0 0:00.10 htop 2471 root 20 0 5941M 97764 65304 S 0.7 0.1 4:01.61 /usr/bin/kubelet --config=/var/lib/kubelet/config.yaml --container-runtime-endpoint=unix:///r 5509 root 20 0 9896 4556 3224 S 0.7 0.0 0:09.49 top 90 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/13 1582 root 20 0 5942M 86312 54484 S 0.0 0.1 2:50.38 /usr/bin/containerd-bin/containerd 1534 root 20 0 742M 40344 30188 S 0.0 0.1 1:11.38 /usr/bin/kube-proxy --config=/var/lib/kube-proxy/kube-proxy-config.yaml 1 root 20 0 165M 13532 8500 S 0.0 0.0 0:06.53 /sbin/init maybe-ubiquity 2 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kthreadd 3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp 4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par_gp 6 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0H-events_highpri 8 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_percpu_wq 9 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/0 10 root 20 0 0 0 0 I 0.0 0.0 0:02.64 rcu_sched 11 root RT 0 0 0 0 S 0.0 0.0 0:00.09 migration/0 12 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/0 13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:1-rcu_par_gp 14 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0 15 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1 16 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_inject/1 17 root RT 0 0 0 0 S 0.0 0.0 0:00.39 migration/1 </code></pre> <pre><code>Total DISK READ: 0.00 B/s | Total DISK WRITE: 111.91 K/s Current DISK READ: 0.00 B/s | Current DISK WRITE: 220.21 K/s TID PRIO USER DISK READ DISK WRITE SWAPIN IO&gt; COMMAND 871 be/3 root 0.00 B/s 7.22 K/s 0.00 % 3.50 % [jbd2/dm-1-8] 959 be/3 root 0.00 B/s 101.08 K/s 0.00 % 0.03 % systemd-journald 4378 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.01 % [kworker/u128:1-events_power_efficient] 1598 be/4 root 0.00 B/s 3.61 K/s 0.00 % 0.00 % nginx: worker process 1 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % init maybe-ubiquity 2 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kthreadd] 3 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [rcu_gp] 4 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [rcu_par_gp] 6 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/0:0H-events_highpri] 8 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [mm_percpu_wq] 9 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/0] 10 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [rcu_sched] 11 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/0] 12 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/0] 13 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/0:1-rcu_par_gp] 14 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/0] 15 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/1] 16 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/1] 17 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/1] 18 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/1] 20 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/1:0H-kblockd] 21 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/2] 22 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/2] 23 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/2] 24 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/2] 26 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/2:0H-kblockd] 27 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/3] 28 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/3] 29 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/3] 30 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/3] 32 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/3:0H-kblockd] 33 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/4] 34 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/4] 35 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/4] 36 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/4] 37 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/4:0-mm_percpu_wq] 38 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/4:0H-events_highpri] 39 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [cpuhp/5] 40 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [idle_inject/5] </code></pre>
1777418
1777418
2024-03-24T17:29:18.633
2024-03-24T17:29:18.633
Ubuntu system showing 100% CPU usage with no identifiable processes consuming CPU resources
[ "cpu", "kubernetes" ]
0
5
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T16:34:35.163", "id": "2646695", "postId": "1508423", "score": "0", "text": "Interesting. It seems likely that this is an issue related to Kubernetes. I would suggest adding that tag. What are your processor makes and models?", "userDisplayName": null, "userI...
null
[]
null
null
null
null
null
1508424
1
null
2024-03-24T04:07:18.320
-1
14
<p>I am trying to deploy a VM with ubuntu desktop.</p> <p>My host is a headless Debian Bookworm with libvirt + qemu as the hypervisor.</p> <p>I tried the steps below with Jammy and Noble latest cloud images from <a href="https://cloud-images.ubuntu.com/" rel="nofollow noreferrer">here</a>. I am using the cloud images as it seems the quickest way to deploy a VM. All seems very reproducible.</p> <ol> <li>Install the virtual machine with cloud init to create a user. user-data is as basic as I could do it to make it work:</li> </ol> <pre><code>#cloud-config users: - name: &quot;testuser&quot; plain_text_passwd: &quot;testpassword&quot; lock-passwd: false shell: /bin/bash groups: sudo sudo: &quot;ALL=(ALL) NOPASSWD:ALL&quot; </code></pre> <ol start="2"> <li>I connect to the VM from my workstation using virt-viewer and virt-manager.</li> <li>Login. All works well!</li> <li>Update the VM</li> </ol> <pre><code>sudo apt update &amp;&amp; sudo apt upgrade -y </code></pre> <ol start="5"> <li>Reboot</li> <li>Install Gnome Desktop</li> </ol> <pre><code>sudo apt install ubuntu-gnome-desktop </code></pre> <ol start="7"> <li>Reboot</li> <li>System hangs with a blinking cursor :(</li> </ol> <hr /> <p>What am I missing? I can use tty2 to login to the terminal and view other things. <code>gdm3</code> is running and enabled running <code>xinit</code> makes tty2 hang with a blinking cursor too.</p> <p>I'm sure I'm missing something simple, but don't know what :/</p>
1691846
null
null
2024-03-24T04:07:18.320
cloud image hangs with blinking cursor when installing gnome desktop
[ "gnome", "virtualization", "desktop-environments", "kvm-virtualization", "qemu" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-26T02:02:17.330", "id": "2646941", "postId": "1508424", "score": "0", "text": "I don't understand why am I getting downvoted. I genuenly have this problem, yet I am unable to find a solution. If you are downvoting at least write a comment.", "userDisplayName": null...
null
[]
null
null
null
null
null
1508425
1
null
2024-03-24T04:22:29.183
-1
16
<p>Obviously I could use my mouse and open a new window by right clicking but I was hoping there is a way to set a keyboard shortcut to do so. For example, right now I am typing in firefox, it would be nice to have a keyboard shortcut to open a new firefox window. I could do this in both windows and on Mac, surely I can do it on Ubuntu 23.10 ? I have found in settings the keyboard shortcuts for resizing the windows but none for opening a new window</p>
1777425
1777425
2024-03-24T04:23:12.330
2024-03-28T10:16:29.513
Set keyboard shortcut to open a new window of the current program
[ "keyboard", "shortcut-keys" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T05:55:55.347", "id": "2646630", "postId": "1508425", "score": "1", "text": "If I understand what you're trying to do, this is application dependent. In Firefox, it's Ctrl+n", "userDisplayName": null, "userId": "884673" } ]
null
[ { "accepted": null, "body": "<p>Opening new windows of applications is controlled by each individual application. There is no system wide shortcut, provided by the desktop environment, for this.</p>\n<p>For Firefox in particular, the shortcut key <kbd>Ctrl</kbd>+<kbd>N</kbd> will open a new window. This con...
null
null
null
null
null
1508427
1
null
2024-03-24T05:09:52.767
-1
22
<p>Not sure what is amiss here, and I've not been able to find anyone writing about this problem. My Seagate Backup Plus Slim worked fine for Timeshift backups as recently as a few minutes ago. Was following these instructions: <a href="https://vorta.borgbase.com/usage/local/" rel="nofollow noreferrer">https://vorta.borgbase.com/usage/local/</a> On Vorta's &quot;Intialize New Backup Repository&quot; screen, I chose the Seagate HD as the local repository, entered and confirmed password, clicked &quot;Add&quot;, and got the, &quot;Unable to add your repository&quot; message. I don't know where to go from here.</p>
1647025
null
null
2024-03-24T05:09:52.767
Trying to use Vorta to back up to Seagate external hard drive and getting "Unable to add your repository" message
[ "backup" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T08:04:24.827", "id": "2646634", "postId": "1508427", "score": "1", "text": "did you read [this Github post])https://github.com/borgbase/vorta/discussions/796) about the same issue with a response from the maintainer? Perhaps resurrect the topic there?", "userDis...
null
[]
null
null
null
null
null
1508430
1
null
2024-03-24T06:48:43.890
0
47
<p>Acer Aspire E5-573-70MD, received an upgrade from 6.5.0-25-generic to 6.5.0-26-generic, now will not resume from suspend. On pressing a key to wake computer, instead of the regular tty1 login screen it shows a non-responsive screen in tty2. I have to go to another tty and reboot from there to get back to a login screen. Also get an occasional message &quot;Authentication is required to create a color-managed device&quot;, which is a new behaviour.</p> <hr /> <p>And after booting into the previous kernel a few times, then going back to 6.5.0-25-generic, the problem has gone away. Clearly, at my advanced age I am never going to understand how computers work, I'll just take the win and assume it was either voodoo or magic. 8-D</p>
72849
72849
2024-03-26T06:22:13.540
2024-03-26T06:22:13.540
Ubuntu 22.04 no longer recovering from suspend after kernel update
[ "kernel", "22.04", "suspend" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508435
1
null
2024-03-24T09:17:36.673
-4
33
<p>I have an issue in adding my monitor resolution.</p> <p><a href="https://i.stack.imgur.com/cHScy.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/cHScy.jpg" alt="enter image description here" /></a></p>
1777457
94914
2024-03-24T09:28:42.093
2024-03-24T09:28:42.093
Issue in adding my monitor resolution
[ "display-resolution" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T09:49:07.847", "id": "2646646", "postId": "1508435", "score": "2", "text": "Ask Ubuntu is a Q&A site. I don't see a question here. Read [ask] then [edit] accordingly and don't forget to include your Distro/version/", "userDisplayName": null, "userId": "30767...
null
[]
null
null
null
null
null
1508440
1
null
2024-03-24T11:09:55.303
0
41
<p>Is there any difference between ubuntu server and ubuntu live server? I've downloaded ubuntu server from <a href="https://ubuntu.com/download/server" rel="nofollow noreferrer">https://ubuntu.com/download/server</a> and I realized the file named &quot;ubuntu-23.10-<strong>live</strong>-server-amd64.iso&quot;. I'm a bit new to ubuntu server so I'm not sure if <strong>live server</strong> is the right version.</p>
1777469
null
null
2024-03-24T12:26:41.827
Is there any difference between ubuntu server and ubuntu live server?
[ "server" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>The ubuntu-23.10-live-server-amd64.iso file that you downloaded is an ISO image for making a bootable Ubuntu Server 23.10 USB for installing Ubuntu Server 23.10. Instructions for making bootable Ubuntu USB installation media are provided at <a href=\"https://askubuntu.com/q/6...
null
null
null
null
null
1508442
1
null
2024-03-24T11:23:18.673
-2
36
<p>I need some help installing Ubuntu. Sadly there are some issues with this board. I can't access the BIOS menu normally. I needed to change the BIOS options in the ROM and flash it. I already disabled Secure Boot and some other things, however I can install Windows without any problems. Access to UEFI is possible. This is the way I flashed the BIOS. I made a bootable USB using Rufus or balenaEtcher. Now to my problem:</p> <p>With F7 selecting UEFI:USB stick I'm getting this error so quickly I needed to film it and watched it so I could see what was going on:</p> <pre><code>error: file '/boot/' not found error: can't find command 'grub_platform' </code></pre> <p>But it enters the GNU GRUB menu. If I now want to try install it, the USB stick blinks 3 times showing access then stops and I'm getting a black screen.</p> <p>I tried to pass some more options with &quot;e&quot; on the grub like <code>debug=on</code>. Now I'm getting: <code>Booting a commandlist</code> The USB Stick flashes 3 times and it freezes the same behavior.</p> <p>How can I debug such an error?</p>
1777464
94914
2024-03-24T12:14:58.977
2024-03-24T12:14:58.977
Installing Ubuntu on an SBC
[ "boot", "uefi", "sbc" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T12:04:43.230", "id": "2646661", "postId": "1508442", "score": "1", "text": "read [ask] then [edit] your question accordingly. As it stands, it's unanswerable", "userDisplayName": null, "userId": "307670" } ]
null
[]
null
null
null
null
null
1508444
1
null
2024-03-24T11:55:27.490
1
22
<p>I have been experiencing this issue ever since I've been using it in VMware. I confirmed that I installed open-vm-tools and open-vm-tools-desktop by running</p> <pre><code>$ systemctl status vimtoolsd </code></pre> <p>I even tried to change some settings in /etc/default/grub but no luck.</p> <p>I just can get full res at boot</p>
1777475
null
null
2024-03-24T11:55:27.490
Screen Resolution is not at 1920x1080 During Boot and First Lockscreen but fixes after login on my Ubuntu guess OS
[ "display-resolution", "vmware" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T12:18:00.753", "id": "2646663", "postId": "1508444", "score": "0", "text": "Which version of Ubuntu are you using?", "userDisplayName": null, "userId": "68186" }, { "creationDate": "2024-03-24T12:39:57.110", "id": "2646666", "postId": "150844...
null
[]
null
null
null
null
null
1508445
1
null
2024-03-24T12:21:21.763
1
24
<p>I have an already partition disked with grub installed and configured. I manually maintain the configuration.</p> <p>I need to install Ubuntu 22.04 server but can find no option to not install grub. The installation wipes out my hand crafted grub configuration.</p> <p>So how can I get it to not install grub?</p>
1181478
null
null
2024-03-24T12:21:21.763
How can I install Ubuntu 22.04 server without installing grub?
[ "server", "grub2" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T13:48:45.640", "id": "2646675", "postId": "1508445", "score": "0", "text": "the older Ubiquity installer had `sudo ubiquity -b` from live mode's terminal. But server & newest desktops now use Subiquity. Do not know if equivalent works or not. https://askubuntu.com/q...
null
[]
null
null
null
null
null
1508446
1
null
2024-03-24T12:38:56.457
0
31
<p>I have a Canon Pixma printer/scanner; upon first USB connection to my Ubuntu 22.04 laptop, I did not need to do anything special to print.</p> <p>However, when I tried to scan, <code>xsane</code> says &quot;no devices available&quot;; and:</p> <pre class="lang-none prettyprint-override"><code>$ scanimage -L No scanners were identified. If you were expecting something different, check that the scanner is plugged in, turned on and detected by the sane-find-scanner tool (if appropriate). Please read the documentation which came with this software (README, FAQ, manpages). </code></pre> <p>And <code>simple-scan</code> (Document Scanner) writes: &quot;Additional Software Needed&quot; &quot;You need to install driver software for your scanner&quot;, where &quot;install driver software&quot; notes: &quot;You appear to have a Canon scanner, which is supported by the <a href="http://www.sane-project.org/man/sane-pixma.5.html" rel="nofollow noreferrer">Pixma SANE backend</a>. Please check if your scanner is supported by SANE ...&quot;</p> <p>However, I do have:</p> <pre class="lang-none prettyprint-override"><code>$ ls -la /usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.1.1 -rw-r--r-- 1 root root 256344 Mar 27 2022 /usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.1.1 </code></pre> <p>What could be the problem here?</p>
529858
null
null
2024-03-24T12:47:30.130
Ubuntu 22.04 cannot scan with Canon Pixma
[ "22.04", "scanner" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Figured this out while running:</p>\n<pre class=\"lang-none prettyprint-override\"><code>$ sane-find-scanner\n\n # sane-find-scanner will now attempt to detect your scanner. If the\n # result is different from what you expected, first make sure your\n # scanner is powered ...
null
null
null
null
null
1508449
1
null
2024-03-24T12:44:33.053
0
22
<p>Recently I installed Ubuntu 22.04 on a 500GB SSD in my laptop (running in legacy mode) so that I could dual boot my laptop and switch between both OSs and do work quickly. Now I have a dual boot setup of Windows 10 with Ubuntu 22.04. I have added one entry for Ubuntu through EasyBCD and the default boot is set to Windows 10.</p> <p>When I power on my laptop first selecting OS option shown when I click on Windows then the boot works normally, but when I click on Ubuntu it takes too long to start, more than 5 minutes. Afterwards it shows the grub boot menu, and when I select Ubuntu again it once again takes a long time to start and shows this message.</p> <pre class="lang-none prettyprint-override"><code>[0.3019381 platform MSFT0101:00: failed to claim resource 1: (men 6xfed10000 -exfed40fff] E 0.3019541 ACPI MSFT0101:00: platform device creation failed: -16 </code></pre> <p>and after some time it will start Ubuntu. Once Ubuntu gets started then it works fine. Technically here I don't need the grub bootloader because I already set an entry for Ubuntu through EasyBCD. Also can I uninstall the grub bootloader without creating an issue?</p>
1777479
94914
2024-03-24T15:29:56.453
2024-03-24T15:29:56.453
Dual boot with Ubuntu 22.04 takes too long to start
[ "boot", "dual-boot", "grub2", "22.04", "easybcd" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T13:38:15.157", "id": "2646674", "postId": "1508449", "score": "0", "text": "Is that 22.04? What brand/model system? If so old (over 10 years) to require BIOS/MBR configuration, better to use lightweight flavor. https://ubuntu.com/download/flavours\nLight weight flav...
null
[]
null
null
null
null
null
1508452
1
null
2024-03-24T13:15:32.460
-1
47
<p>i tried making 99progressbar in the directory /etc/apt/apt.conf.d/ and added this line of code</p> <pre><code>Dpkg::Progress-Fancy &quot;::█&quot;; </code></pre> <p>at this point I'm just guessing lol</p> <pre><code>BEFORE [######################] EFTER [███████████████████████] </code></pre>
1777475
null
null
2024-03-24T19:38:33.570
How can i replace apt progress bar. I want to Put some special characters to make it look more like a progress bar
[ "apt" ]
1
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T14:13:22.610", "id": "2646678", "postId": "1508452", "score": "0", "text": "Which distro and version of Linux are you using?", "userDisplayName": null, "userId": "68186" }, { "creationDate": "2024-03-24T14:20:11.003", "id": "2646679", "postId...
null
[ { "accepted": null, "body": "<p>if you don't mind using a third party client you can use nala because nala is a commandline frontend for the APT package manager <a href=\"https://i.stack.imgur.com/PL9jF.png\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/PL9jF.png\" alt=\"sudo nala upgra...
null
null
null
null
null
1508453
1
null
2024-03-24T13:29:27.603
0
36
<p>I am getting this error whenever try to update my computer &quot;An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: <a href="https://download.virtualbox.org/virtualbox/debian" rel="nofollow noreferrer">https://download.virtualbox.org/virtualbox/debian</a> jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A2F683C52980AECF &quot;</p>
1777492
94914
2024-03-24T13:37:00.350
2024-03-24T19:25:29.070
Virtualbox error when updating my computer
[ "apt", "virtualbox" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T13:36:16.470", "id": "2646673", "postId": "1508453", "score": "1", "text": "Does this answer your question? [How do I fix the GPG error \"NO\\_PUBKEY\"?](https://askubuntu.com/questions/13065/how-do-i-fix-the-gpg-error-no-pubkey)", "userDisplayName": null, "...
null
[ { "accepted": null, "body": "<p>remove that repo, Open the Software &amp; Updates application Other Software then press remove, because virtualbox is in the native repos since focal</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", ...
null
null
null
null
null
1508455
1
null
2024-03-24T14:17:50.043
0
14
<p>On my HP Victus Ryzen laptop with AMD 6500 graphics with Ubuntu 22.04 I can't change screen brightness. When I press the fuctions key a popup appears, but screen brightness is still default. I tried this:</p> <p>GRUB_CMDLINE_LINUX=&quot;acpi_osi=Linux acpi_backlight=vendor&quot;</p> <p>But after that by pressing function keys literally nothing happens, even the popup doesn't show. Please help.</p>
1777495
null
null
2024-03-24T14:17:50.043
About Brightness adjustement
[ "grub2" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508457
1
null
2024-03-24T14:22:03.557
0
59
<p>I encrypted an external USB-HDD and it works like a charm, I can decrypt using the password when manually mounting or even automatically decrypt with using the proper settings to do so with using the enclosure I used to encrypt.</p> <p>This can be perfectly done in the original USB-SATA enclosure I used to encrypt the HDD.</p> <p>I have also reinstalled Ubuntu and even installed a newer Ubuntu version and the USB-HDD can be unlocked with ease when I use the original enclosure.</p> <p>But, when I try to reproduce the decryption on a different enclosure (case), both with using the same OS I used to encrypt or a newer version of the Ubuntu OS, either <code>gnome-disks</code> and <code>gparted</code> detects the connected USB-HDD has an unrecognized partition and shows no data.</p> <p>I don't know if the encryption is token based with using a hardware related key or something, but all I have tried so far (like: <a href="https://askubuntu.com/questions/1035777/decrypt-luks-partition-without-losing-data">Decrypt LUKS partition without losing data</a>) didn't work for me.</p> <h2>Update</h2> <p>The solutions provided in the comments works for unlocking the HDD when it is inside the original enclosure which was originally used to encrypt the data.</p> <p>I succeeded mounting and unlocking the USB-HDD with using the recomendations from the comments below but only when using the original enclosure.</p> <p>The problem remains when I try to move the HDD to a different USB-HDD case.</p> <p>This is what I get in the terminal</p> <pre><code>geppettvs@AORUS:~$ udisksctl unlock -b /dev/sdb Object /org/freedesktop/UDisks2/block_devices/sdb is not an encrypted device. geppettvs@AORUS:~$ </code></pre> <p>And this is how I see the HDD in <code>gnome-disks</code></p> <p><a href="https://i.stack.imgur.com/J7RsA.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/J7RsA.png" alt="enter image description here" /></a></p> <p>I am not sure if the case I used to encrypt the disk is part of the items used for encryption and it has a dependence, since I can only use the original USB-HDD case to unlock it.</p>
9598
9598
2024-03-27T17:45:20.527
2024-03-27T17:45:20.527
Can I decrypt an encrypted USB-HDD using a USB enclosure case, other than the one used for encrypting?
[ "partitioning", "usb", "hard-drive", "encryption", "gparted" ]
0
9
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T15:06:37.193", "id": "2646683", "postId": "1508457", "score": "0", "text": "Yes you can. My guess is that your second computer might be missing the package necessary to do the decryption. I'm afraid I don't know the package off the top of my head. Perhaps someone...
null
[]
null
null
null
null
null
1508458
1
null
2024-03-24T14:34:33.007
0
16
<p>0</p> <p>I can not type in shorthand code snippets always only .js and .ts extraction files and sometimes auto import .js or .ts extraction files doesn't work, even html tag auto suggest does not show auto emmite.</p> <p>on the other hand, .jsx or .tsx extraction file auto import and snippet work well.</p> <p>How can I fix this issue?</p> <p>I tried update AstroNvim and other copule of things. I do into .jsx snippets,auto import, auto html emmite so one i can do into .js or .ts file as well.</p>
1549257
null
null
2024-03-24T14:34:33.007
In AstroNvim .js extraction files autoimport and snippet sometimes do not work
[ "neovim" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508459
1
null
2024-03-24T14:50:25.887
0
20
<p>In Ubuntu while using icons moving with cursor. What about the issue.</p> <p>I have reinstalled 22.04.3 LTS and latest version also. I’m having issue.</p> <p>I’m unable find the resolution of this issue.</p>
1777498
null
null
2024-03-24T15:05:33.447
Icons are moving with cursor
[ "icons" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>It may be associated with this option in <code>Settings &gt; Accessibility &gt; Pointing &amp; Clicking &gt; Click Assist</code></p>\n<p>Ensure that this option is turned <code>off</code></p>\n<p><a href=\"https://i.stack.imgur.com/X1gNb.png\" rel=\"nofollow noreferrer\"><img...
null
null
null
null
null
1508464
1
null
2024-03-24T15:48:28.163
0
34
<p>Is there is recent release for GNOME TWEAKS that is compatible-support Ubuntu 23.1 running Gnome 45 ? Installed GNOME TWEAKS 42.beta. Went ok... BUT cannot use new downloaded 'Themes' etc . Message : Shell user-themes extension not enable in TWEAKS-APPEARANCE menu with exclamation mars and EMPTY field..</p> <p>Someone can help ?</p> <p>Thanks in advance for for help.</p>
1772564
null
null
2024-03-24T16:25:38.910
Ubuntu 23.1 - Gnome 45.2 - GNOME TWEAKS 42.beta (Release GNOME TWEAKS 45 available ?)
[ "gnome-tweaks" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T19:23:20.587", "id": "2646717", "postId": "1508464", "score": "0", "text": "HI ! Thanks for your rapid answer. I am a beginner....Ubuntu...so . Any idea when this package will be avaailable ?", "userDisplayName": null, "userId": "1772564" }, { "cr...
null
[ { "accepted": null, "body": "<p>Beta versions of software including Gnome Tweaks are intended for developers and beta testers and not intended to installed on live systems. You can try to riun it on bare metal but there are inherent risks in doing so.</p>\n<p>The conventual wisdom is if you are not a develo...
null
null
null
null
null
1508466
1
null
2024-03-24T16:46:53.357
-1
56
<p>My laptop stopped working in the middle of me using it. I tried restarting and it sits at the Gateway logo for a while and then end up on a blue APTIO SETUP -AMI screen which I can't get beyond. It has an option to recover Windows, but does nothing when I press Enter. In the past I had a desktop that I was able to install Ubuntu on when Windows stopped working so I thought maybe that could work now too or at least tell me if it's a PC problem or a Windows problem.</p> <p>I created a bootable USB, but when I try to install Ubuntu it gets hung up on the <em>Installation type</em> screen. There are no devices listed in the box. And when I click install now I get a pop-up <em>No root file system defined</em>, correct from partition menu. I quit the install menu and tried GParted, but it only shows me the USB not my hard drive. I think it's telling me the hard drive died, maybe? Do you have any guidance about whether I can repair this or if I need to buy a new PC? *update -I bought a new ssd hard drive, put it in but still not showing up...I must be missing something.</p>
1777509
1777509
2024-03-24T23:11:06.563
2024-03-24T23:11:06.563
Laptop wont boot up
[ "boot", "partitioning", "startup" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T16:55:09.930", "id": "2646697", "postId": "1508466", "score": "1", "text": "If your hard drive is not detected by Gparted and the Ubuntu installer, it is dead. Get a new SSD and restore your data from backup. In any case, this is not an Ubuntu problem.", "userDi...
null
[]
null
null
null
null
null
1508467
1
null
2024-03-24T16:57:16.447
0
29
<p>I did all the installation steps and when I try to use the GPU I see this message.</p> <p>Ubuntu: 23.10</p> <pre class="lang-none prettyprint-override"><code>2024-03-24 20:22:51.323957: I tensorflow/core/platform/cpu_feature_guard.cc:182] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations. To enable the following instructions: SSE4.1 SSE4.2 AVX AVX2 AVX_VNNI FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags. </code></pre>
1777522
94914
2024-03-24T17:07:44.720
2024-03-24T17:07:44.720
TensorFlow does not recognize my GPU
[ "nvidia", "gpu", "23.10", "tensorflow" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508469
1
null
2024-03-24T17:16:50.830
0
13
<p>I ran into this issue on my 4K screen where the flatpack version of JOSM would scale and the version I downloaded from their recommended repository wouldn't scale.</p> <p>I was able to change the scaling of JOSM if I ran <code>GPK_SCALING=2 josm</code> from the command line. But I wanted to be able to not have to start my application from the command line. On Ubuntu 22.04 was able to resolve my issue by adding the following to <code>/etc/default/josm</code>:</p> <p><code>JAVA_OPTS=&quot;-Dsun.java2d.uiScale=2&quot;</code></p>
1032641
null
null
2024-03-24T21:20:26.543
How do I get JOSM to scale on HiDPi screen?
[ "22.04" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I was able to change the scaling of JOSM if I ran GPK_SCALING=2 josm from the command line, but I wanted to be able to not have to start my application from the command line. In Ubuntu 22.04 I was able to resolve my issue by adding the following to <code>/etc/default/josm</co...
null
null
null
null
null
1508472
1
null
2024-03-24T17:23:46.610
-3
47
<p>Why does the 500GB HDD appear here while in Other Locations it's not coming out?</p> <p><a href="https://i.stack.imgur.com/sxQNq.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/sxQNq.png" alt="enter image description here" /></a></p> <p><a href="https://i.stack.imgur.com/O5jWn.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/O5jWn.png" alt="enter image description here" /></a></p>
1777526
94914
2024-03-24T21:47:11.283
2024-03-25T07:29:59.703
Partition windows does not exit
[ "partitioning", "hard-drive" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T17:51:04.573", "id": "2646708", "postId": "1508472", "score": "0", "text": "Did you run Ubuntu with an USB stick or where did you install Ubuntu? or did you have installed Windows and Ubuntu on the 240GB SSD? or if you are only interested in the 500GB hard disk and ...
null
[ { "accepted": null, "body": "<p>It simply seems the 500 GB disk is formatted with a filesystem and/or encryption that Ubuntu does not recognize.</p>\n<p>So disk manager can see there is a partition, but the contents are not accessible from Ubuntu.</p>\n", "commentCount": "0", "comments": [], "co...
null
null
null
null
null
1508476
1
null
2024-03-24T18:36:34.887
0
44
<p>Could you please tell me if my machine is compatible with Ubuntu 22.04 based on the specifications below?</p> <p>Processor: Intel® Core™ i7-1260P RAM: 16 GB LPDDR5-5200MHz Storage: 512 GB SSD Graphics Card: Intel Iris Xe Graphics System type: 64-bit, x64</p> <p>If you need any additional information, I'd be happy to let you know.</p> <p>Thank you in advance for your help.</p> <p>Sincerely, Bryan</p>
1777536
null
null
2024-03-24T18:46:24.363
Compatibility of Lenovo with Ubuntu
[ "lenovo" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T18:45:45.700", "id": "2646711", "postId": "1508476", "score": "0", "text": "Welcome to Ask Ubuntu. Would you add the model? people who have same one may give best feedback. Just a hint, when looking for new hardware support, check https://ubuntu.com/certified and h...
null
[ { "accepted": null, "body": "<p>it's a 64 bit computer with 512gb of space and 16gb of ram, any *unix os will work with that, ubuntu especially, you have enough space to install apps and 16gb of ram is plenty for ubuntu</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2024...
null
null
null
null
null
1508480
1
null
2024-03-24T18:54:01.500
0
33
<p>How to solve this issue as shown in the link?</p> <p><a href="https://i.stack.imgur.com/RPhI5.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/RPhI5.png" alt="enter image description here" /></a></p> <p>I already ran the <code>sudo apt update --fix-missing</code> command, but it did not resolve the issue.</p>
1777543
94914
2024-03-24T21:44:28.613
2024-03-24T23:57:29.503
Failed upgrade: troubleshooting 'sudo apt ugrade'
[ "apt", "server", "20.04", "updates", "update-manager" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>try changing your mirrors, don't use the esm repos if you don't have a subscription with ubuntu, change the repos to the defaults Open the Software &amp; Updates application, then click on the “Download From” drop down box. Click the “Select best server” button to let Ubuntu ...
null
null
2024-03-24T23:56:47.513
null
null
1508489
1
null
2024-03-24T20:16:47.063
0
120
<p>I am trying to compile glibc 2.31 on Ubuntu 22.04 LTS.</p> <p>I followed a <a href="https://askubuntu.com/questions/1345342/how-to-install-glibc-2-32-when-i-already-have-glibc2-31?newreg=634416f06af04e82b5a0a1cf8d571e11">this answer</a> as a template, which was incredibly helpful.</p> <p>My issue is that there are undefined references when I run make:</p> <pre><code>... make[2]: Entering directory '/home/user/glibc/glibc-2.31/support' gcc -Wl,-rpath-link=/home/user/glibc/glibc-2.31-build:/home/user/glibc/glibc-2.31-build/math:/home/user/glibc/glibc-2.31-build/elf:/home/user/glibc/glibc-2.31-build/dlfcn:/home/user/glibc/glibc-2.31-build/nss:/home/user/glibc/glibc-2.31-build/nis:/home/user/glibc/glibc-2.31-build/rt:/home/user/glibc/glibc-2.31-build/resolv:/home/user/glibc/glibc-2.31-build/mathvec:/home/user/glibc/glibc-2.31-build/support:/home/user/glibc/glibc-2.31-build/crypt:/home/user/glibc/glibc-2.31-build/nptl -pie -Wl,-O1 -nostdlib -nostartfiles -o /home/user/glibc/glibc-2.31-build/support/test-container -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both /home/user/glibc/glibc-2.31-build/csu/Scrt1.o /home/user/glibc/glibc-2.31-build/csu/crti.o `gcc --print-file-name=crtbeginS.o` /home/user/glibc/glibc-2.31-build/support/test-container.o /home/user/glibc/glibc-2.31-build/support/libsupport_nonshared.a -Wl,-dynamic-linker=/home/user/glibc/glibc-2.31-install/lib/ld-linux-x86-64.so.2 /home/user/glibc/glibc-2.31-build/libc.so.6 /home/user/glibc/glibc-2.31-build/libc_nonshared.a -Wl,--as-needed /home/user/glibc/glibc-2.31-build/elf/ld.so -Wl,--no-as-needed -lgcc `gcc --print-file-name=crtendS.o` /home/user/glibc/glibc-2.31-build/csu/crtn.o gcc -Wl,-rpath-link=/home/user/glibc/glibc-2.31-build:/home/user/glibc/glibc-2.31-build/math:/home/user/glibc/glibc-2.31-build/elf:/home/user/glibc/glibc-2.31-build/dlfcn:/home/user/glibc/glibc-2.31-build/nss:/home/user/glibc/glibc-2.31-build/nis:/home/user/glibc/glibc-2.31-build/rt:/home/user/glibc/glibc-2.31-build/resolv:/home/user/glibc/glibc-2.31-build/mathvec:/home/user/glibc/glibc-2.31-build/support:/home/user/glibc/glibc-2.31-build/crypt:/home/user/glibc/glibc-2.31-build/nptl -pie -Wl,-O1 -nostdlib -nostartfiles -o /home/user/glibc/glibc-2.31-build/support/shell-container -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both /home/user/glibc/glibc-2.31-build/csu/Scrt1.o /home/user/glibc/glibc-2.31-build/csu/crti.o `gcc --print-file-name=crtbeginS.o` /home/user/glibc/glibc-2.31-build/support/shell-container.o /home/user/glibc/glibc-2.31-build/support/libsupport_nonshared.a -Wl,-dynamic-linker=/home/user/glibc/glibc-2.31-install/lib/ld-linux-x86-64.so.2 /home/user/glibc/glibc-2.31-build/libc.so.6 /home/user/glibc/glibc-2.31-build/libc_nonshared.a -Wl,--as-needed /home/user/glibc/glibc-2.31-build/elf/ld.so -Wl,--no-as-needed -lgcc `gcc --print-file-name=crtendS.o` /home/user/glibc/glibc-2.31-build/csu/crtn.o gcc -Wl,-rpath-link=/home/user/glibc/glibc-2.31-build:/home/user/glibc/glibc-2.31-build/math:/home/user/glibc/glibc-2.31-build/elf:/home/user/glibc/glibc-2.31-build/dlfcn:/home/user/glibc/glibc-2.31-build/nss:/home/user/glibc/glibc-2.31-build/nis:/home/user/glibc/glibc-2.31-build/rt:/home/user/glibc/glibc-2.31-build/resolv:/home/user/glibc/glibc-2.31-build/mathvec:/home/user/glibc/glibc-2.31-build/support:/home/user/glibc/glibc-2.31-build/crypt:/home/user/glibc/glibc-2.31-build/nptl -pie -Wl,-O1 -nostdlib -nostartfiles -o /home/user/glibc/glibc-2.31-build/support/echo-container -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both /home/user/glibc/glibc-2.31-build/csu/Scrt1.o /home/user/glibc/glibc-2.31-build/csu/crti.o `gcc --print-file-name=crtbeginS.o` /home/user/glibc/glibc-2.31-build/support/echo-container.o /home/user/glibc/glibc-2.31-build/support/libsupport_nonshared.a -Wl,-dynamic-linker=/home/user/glibc/glibc-2.31-install/lib/ld-linux-x86-64.so.2 /home/user/glibc/glibc-2.31-build/libc.so.6 /home/user/glibc/glibc-2.31-build/libc_nonshared.a -Wl,--as-needed /home/user/glibc/glibc-2.31-build/elf/ld.so -Wl,--no-as-needed -lgcc `gcc --print-file-name=crtendS.o` /home/user/glibc/glibc-2.31-build/csu/crtn.o gcc -Wl,-rpath-link=/home/user/glibc/glibc-2.31-build:/home/user/glibc/glibc-2.31-build/math:/home/user/glibc/glibc-2.31-build/elf:/home/user/glibc/glibc-2.31-build/dlfcn:/home/user/glibc/glibc-2.31-build/nss:/home/user/glibc/glibc-2.31-build/nis:/home/user/glibc/glibc-2.31-build/rt:/home/user/glibc/glibc-2.31-build/resolv:/home/user/glibc/glibc-2.31-build/mathvec:/home/user/glibc/glibc-2.31-build/support:/home/user/glibc/glibc-2.31-build/crypt:/home/user/glibc/glibc-2.31-build/nptl -pie -Wl,-O1 -nostdlib -nostartfiles -o /home/user/glibc/glibc-2.31-build/support/true-container -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both /home/user/glibc/glibc-2.31-build/csu/Scrt1.o /home/user/glibc/glibc-2.31-build/csu/crti.o `gcc --print-file-name=crtbeginS.o` /home/user/glibc/glibc-2.31-build/support/true-container.o /home/user/glibc/glibc-2.31-build/support/libsupport_nonshared.a -Wl,-dynamic-linker=/home/user/glibc/glibc-2.31-install/lib/ld-linux-x86-64.so.2 /home/user/glibc/glibc-2.31-build/libc.so.6 /home/user/glibc/glibc-2.31-build/libc_nonshared.a -Wl,--as-needed /home/user/glibc/glibc-2.31-build/elf/ld.so -Wl,--no-as-needed -lgcc `gcc --print-file-name=crtendS.o` /home/user/glibc/glibc-2.31-build/csu/crtn.o gcc -Wl,-rpath-link=/home/user/glibc/glibc-2.31-build:/home/user/glibc/glibc-2.31-build/math:/home/user/glibc/glibc-2.31-build/elf:/home/user/glibc/glibc-2.31-build/dlfcn:/home/user/glibc/glibc-2.31-build/nss:/home/user/glibc/glibc-2.31-build/nis:/home/user/glibc/glibc-2.31-build/rt:/home/user/glibc/glibc-2.31-build/resolv:/home/user/glibc/glibc-2.31-build/mathvec:/home/user/glibc/glibc-2.31-build/support:/home/user/glibc/glibc-2.31-build/crypt:/home/user/glibc/glibc-2.31-build/nptl -pie -Wl,-O1 -nostdlib -nostartfiles -o /home/user/glibc/glibc-2.31-build/support/links-dso-program -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both /home/user/glibc/glibc-2.31-build/csu/Scrt1.o /home/user/glibc/glibc-2.31-build/csu/crti.o `gcc --print-file-name=crtbeginS.o` /home/user/glibc/glibc-2.31-build/support/links-dso-program.o -lstdc++ -lgcc -lgcc_s -Wl,-dynamic-linker=/home/user/glibc/glibc-2.31-install/lib/ld-linux-x86-64.so.2 /home/user/glibc/glibc-2.31-build/libc.so.6 /home/user/glibc/glibc-2.31-build/libc_nonshared.a -Wl,--as-needed /home/user/glibc/glibc-2.31-build/elf/ld.so -Wl,--no-as-needed -lgcc `gcc --print-file-name=crtendS.o` /home/user/glibc/glibc-2.31-build/csu/crtn.o /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `fstat64@GLIBC_2.33' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_key_create@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_rwlock_unlock@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_detach@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_setspecific@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/libgcc_s.so.1: undefined reference to `_dl_find_object@GLIBC_2.35' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `__libc_single_threaded@GLIBC_2.32' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_join@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_rwlock_wrlock@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_getspecific@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_key_delete@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `lstat@GLIBC_2.33' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `stat@GLIBC_2.33' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_once@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_rwlock_rdlock@GLIBC_2.34' /home/user/binutils/binutils-2.32-install/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/8/libstdc++.so: undefined reference to `pthread_create@GLIBC_2.34' collect2: error: ld returned 1 exit status make[2]: *** [../Rules:215: /home/user/glibc/glibc-2.31-build/support/links-dso-program] Error 1 make[2]: Leaving directory '/home/user/glibc/glibc-2.31/support' make[1]: *** [Makefile:470: support/others] Error 2 make[1]: Leaving directory '/home/user/glibc/glibc-2.31' make: *** [Makefile:9: all] Error 2 </code></pre> <p>Originally, I tried with:</p> <pre><code>gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 GNU ld (GNU Binutils for Ubuntu) 2.38 </code></pre> <p>But, after failure I tried (and failed the same way) with:</p> <pre><code>gcc (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0 GNU ld (GNU Binutils for Ubuntu) 2.38 </code></pre> <p>This procedure fails with glibc 2.31 and 2.32, but works for glibc 2.35.</p> <p>Lastly, I actually read the INSTALL document, and I see that:</p> <pre><code>* GCC 6.2 or newer GCC 6.2 or higher is required. In general it is recommended to use the newest version of the compiler that is known to work for building the GNU C Library, as newer compilers usually produce better code. As of release time, GCC 9.2.1 is the newest compiler verified to work to build the GNU C Library. For multi-arch support it is recommended to use a GCC which has been built with support for GNU indirect functions. This ensures that correct debugging information is generated for functions selected by IFUNC resolvers. This support can either be enabled by configuring GCC with '--enable-gnu-indirect-function', or by enabling it by default by setting 'default_gnu_indirect_function' variable for a particular architecture in the GCC source file 'gcc/config.gcc'. You can use whatever compiler you like to compile programs that use the GNU C Library. Check the FAQ for any special compiler issues on particular platforms. * GNU 'binutils' 2.25 or later You must use GNU 'binutils' (as and ld) to build the GNU C Library. No other assembler or linker has the necessary functionality at the moment. As of release time, GNU 'binutils' 2.32 is the newest verified to work to build the GNU C Library. </code></pre> <p>So, I built binutils 2.32 following the excellent advice of the accepted answer to <a href="https://askubuntu.com/questions/1446863/trying-to-install-gcc-8-and-g-8-on-ubuntu-22-04">this question</a>.</p> <p>Then, I put that version of binutils at the top of my PATH variable, yielding the following results:</p> <pre><code>gcc --version gcc (Ubuntu 8.4.0-3ubuntu2) 8.4.0 ld --version GNU ld (GNU Binutils) 2.32 as --version GNU assembler (GNU Binutils) 2.32 </code></pre> <p>And still, I get the same errors for undefined references... I am lost.</p> <p>Any help would be appreciated. Thanks in advance.</p>
1777547
1777547
2024-03-24T20:18:17.610
2024-03-26T10:18:23.420
How to install glibc 2.31 from source on Ubuntu 22.04
[ "22.04", "compiling", "gcc", "glibc", "binutils" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508490
1
null
2024-03-24T20:17:19.860
0
145
<p>Ubuntu Server on Raspberry Pi 5 is not connecting to the internet.</p> <p>Images of the errors:</p> <p><a href="https://i.stack.imgur.com/OvJ2I.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/OvJ2I.jpg" alt="enter image description here" /></a></p> <p><a href="https://i.stack.imgur.com/z6Ji0.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/z6Ji0.jpg" alt="enter image description here" /></a></p> <p><a href="https://i.stack.imgur.com/ovBEx.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ovBEx.jpg" alt="enter image description here" /></a></p> <p>I tried reinstalling it at least 5 times: <a href="https://askubuntu.com/questions/1479120/ubuntu-server-on-pi-won-t-connect-to-internet">Ubuntu server on Pi won’t connect to Internet</a></p> <p>more insight hope this helps</p> <p>KRAYTONIAN — 03/24/2024 8:34 PM @randomUser1 Ubuntu Server 23.10 on Raspberry Pi 5 wlan0 is domrant but I want to get rid of the continous brcmfmac: erros</p> <p>additional info bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2041727</p> <p>forums.raspberrypi.com/viewtopic.php?t=367466 Image Image Image</p> <p>helpfuluser1 — 03/24/2024 9:09 PM Despite retaining the same Infineon CYW43455 802.11ac + BT5/BLE combo chip as the Pi4 (which had issues back then, too), it looks like the Raspberry Pi foundation has it communicating with the new Broadcom BCM2712 SoC via an updated SDIO interface in order to leverage DDR50 mode for faster throughput, and that could be causing the reported problems (you're far from the only person reporting this).</p> <p>Best I can tell, the new RP1-C0 I/O chip is out of the loop on this one as far as possible causes.</p> <p>TL;DR, the only people who can diagnose the root cause and fix this will be Broadcom, Canonical since you're trying to use Ubuntu Server 23.10 with it, and the Raspberry Pi Foundation.</p> <p>We lack the necessary magic wands to fix this.</p> <p>KRAYTONIAN — Today at 9:24 AM thanks</p> <p>helpfuluser1 — Today at 9:30 AM Wish I had a better answer, but it's affecting not just Ubuntu, but also Arch users, so there's something going on. I didn't encounter this with Ubuntu _<em>desktop</em> 22.04.whatever-version back in January (same with the ARM64 version of Kali for it), but that's not the same as 23.10, so it could be kernel changes/driver breaking. It's wild that it's spamming an error about the broadcom driver, even though you've disabled that interface. I have so many other things to work on right now (I've got like a month long project to try and crank out ASAP) so won't have any time in trying to see if I could replicate it, and if so, fumble my way into some kernel update/driver recompile that &quot;fixes&quot; it.</p> <p>KRAYTONIAN — Today at 9:32 AM @HelpfulUser1 you are super quick thanks for your insights can I show you some stuff and you let me know what you think? helpfuluser1 — Today at 9:33 AM It'l probably end up being like a hotfix from Canonical or a blogpost + fix from the Raspberry Pi folks. No prob!</p> <p>HelpfulUser1— Today at 9:34 AM Depends on what the &quot;stuff&quot; is, and how much of it I need to look through, since I'm scrambling to get this project done for Name1, as well as the usual course support If it's something I need to stop what I'm doing for a couple of hours, then I may need to say &quot;Gimme a couple hours, or a day or two, and maybe then I can look at it&quot; (I'm not joking when I saw it'll take a solid month minimum to get this done, and that's if I can sprint through it all that fast) KRAYTONIAN — Today at 9:35 AM <a href="https://forums.raspberrypi.com/viewtopic.php?t=367466" rel="nofollow noreferrer">https://forums.raspberrypi.com/viewtopic.php?t=367466</a></p> <p>This is my post on ask ubuntu: <a href="https://askubuntu.com/questions/1508490/ubuntu-server-on-raspberry-pi-5-is-not-connecting-to-the-internet">Ubuntu Server on Raspberry Pi 5 is not connecting to the internet</a></p> <p>forums.rpi: <a href="https://forums.raspberrypi.com/viewtopic.php?p=2206266#p2206266" rel="nofollow noreferrer">https://forums.raspberrypi.com/viewtopic.php?p=2206266#p2206266</a> Ask Ubuntu Ubuntu Server on Raspberry Pi 5 is not connecting to the internet Ubuntu Server on Raspberry Pi 5 is not connecting to the internet. Images of the errors: I tried reinstalling it at least 5 times: Ubuntu server on Pi won’t connect to Internet Image</p> <p>KRAYTONIAN — Today at 9:36 AM I did not realize you are part of the staff. thanks you for any help you could provide</p> <p>helpfuluser1— Today at 9:42 AM I had previously looked through the Arch thread and Raspberry Pi threads you posted, as well as looked at your screenshots (same one you posted on the ubuntu forums), and did a little digging on my own, which is how I discovered that folks with Pi4's were also encountering similar issues with Ubuntu/Arch and that driver, and that the Pi4 and Pi5's share the exact same Infineon chip, despite having differeing Broadcom SoCs (the main &quot;CPU&quot; or &quot;Application Processor&quot; as The RPI foundaton calls it). The thing is, they eventually fixed it for the Pi4s, but it looks like a recent issue with Pi5.</p> <p>I also checked the pcb traces, datasheet, schematics, and even a X-ray some dude took of his Pi5, and was able to rule out that new RP1 I/O controller chip as being the culprit, since 1) It's not affecting all distros and versions and 2) The new broadcom SoC bypasses that RP1-C0 chip to directly connect to the infineon combo chip.</p> <p>I still think it's something in the kernel that's changed between the last stable Ubuntu, Kali, and &quot;Rapsbian/PiOS releases I tried in January vs Ubuntu 23.10 and Arch in March 2024 (which is when I noticed the most recent complaints that mentioned that broadcom driver and &quot;Pi5&quot;), to be honest. I don't think that even IF I had tons of free time to try and scour every forum post and github/gitlab issue ticket out there, that I'd necessarily be able to find a solution any faster than Canonical, Broadcom, and RPi foundation, to be honest. I'm just befuddled that it's spamming that message, even if you disable that built-in wlan0 interface If you've got a spare SD card, you could try imaging an older Ubuntu release, swap out the SD card, power your Pi5 back up, and see if the same thing occurs.</p> <p>helpfuluser1 — Today at 9:50 AM (That would be my first move: confirm whether an older Ubuntu release is unaffected, as well as newer Kali and PiOS releases to see if they exhibit the same behavior. After that, it would be an attempt to upgrade the kernel, as well as checking any relevant forums and github/gitlab repo issue tickets. )</p>
1777545
1777545
2024-03-26T18:29:28.050
2024-03-26T18:29:28.050
Ubuntu Server on Raspberry Pi 5 is not connecting to the internet
[ "networking", "server", "ethernet", "raspberrypi", "23.10" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-03-25T02:32:06.103", "id": "2646764", "postId": "1508490", "score": "0", "text": "Thanks for the edit here are some helpful links I could not make out what i need to do.\n\nhttps://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2041727\nhttps://forums.raspberrypi.com/v...
null
[]
null
null
null
null
null
1508493
1
null
2024-03-24T20:31:42.003
0
29
<p>I'm having problems having set up ethernet connection for my newly installed Ubuntu after switching from Windows, thats what I get after trying to install realtek r8125 drivers in terminal after typing:</p> <blockquote> <p>sudo ./autorun.sh</p> </blockquote> <blockquote> <p>Check old driver and unload it. rmmod r8125 Build the module and install warning: the compiler differs from the one used to build the kernel The kernel was built by: x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0 You are using: gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0 Skipping BTF generation for /home/megatron/Desktop/r8125-9.012.04/src/r8125.ko due to unavailability of vmlinux Warning: modules_install: missing 'System.map' file. Skipping depmod. DEPMOD 6.5.0-26-generic load module r8125 Updating initramfs. Please wait. update-initramfs: Generating /boot/initrd.img-6.5.0-26-generic Completed.</p> </blockquote> <p>Can someone please give me some idea of what I'm doing wrong?</p>
1777556
null
null
2024-03-24T20:31:42.003
B550 Gaming X V2 No Ethernet connection Ubuntu 22.04.4 LTS
[ "drivers" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1508494
1
1508757
2024-03-24T20:51:20.567
0
72
<p>Edited for more context. The suggested links to fix the issue focus on removing the broken package. If I try to remove the <code>sysvinit-utils</code> package I get the output as indicated below (the long list of dependencies of <code>lsb-base</code>) and the remove fails. So the suggested link does not resolve it, I have tried the several additional options like removing the package with dpkg directly and the same happens. <strong>So I'm stuck in a loop</strong>.</p> <p><a href="https://askubuntu.com/questions/124845/eerror-pkgproblemresolverresolve-generated-breaks-this-may-be-caused-by-hel">Suggested duplicate link</a> This link does not fix it, please look at the content of my request and you will see that this is a &quot;simple&quot; non-essential package that would need to be removed. It does not fix my issue, hence the reason I opened this request.</p> <p>I wanted to update smartmontools to 7.4 in Ubuntu 22.04 (It is not for ubu22, version 7.4 is not available) so I installed the latest version using dpkg and then several dependencies were needed so I installed also the latest version of sysvinit-utils (3.08-6ubuntu2, again not for ubu22), then the dependency of libc6 and I do not want to do that due to additional dependencies. So in trying to revert the changes I run into the following issue:</p> <p>Now when I want to run apt upgrade I get this:</p> <pre><code>sudo apt upgrade [sudo] password for niels: Reading package lists... Done Building dependency tree... Done Reading state information... Done You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: sysvinit-utils : Depends: libc6 (&gt;= 2.38) but 2.35-0ubuntu3.6 is installed E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). </code></pre> <p>So I run it and get:</p> <pre><code>sudo apt --fix-broken install Reading package lists... Done Building dependency tree... Done Reading state information... Done Correcting dependencies... failed. The following packages have unmet dependencies: sysvinit-utils : Depends: libc6 (&gt;= 2.38) but 2.35-0ubuntu3.6 is installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages. E: Unable to correct dependencies </code></pre> <p>I can't downgrade the sysvinit-utils to the previous version:</p> <pre><code>sudo apt install sysvinit-utils=3.01-1ubuntu1 [sudo] password for niels: Sorry, try again. [sudo] password for niels: Reading package lists... Done Building dependency tree... Done Reading state information... Done You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: acpid : Depends: lsb-base (&gt;= 3.2-14) ---snip--- unattended-upgrades : Depends: lsb-base x11-common : Depends: lsb-base (&gt;= 1.3-9ubuntu2) E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). </code></pre> <p>I've tried to do what is suggested here and I keep getting back to the same issue: <a href="https://askubuntu.com/questions/138284/how-to-downgrade-a-package-via-apt-get">How to downgrade a package via apt-get?</a></p> <p>Any suggestions on how to fix this?</p>
1777551
1777551
2024-03-25T16:05:09.130
2024-03-27T13:54:27.450
Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages, specific package can not be removed
[ "apt", "updates" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Fixed it.</p>\n<p>Removed the partially installed <code>smartmontools</code> package, installed <code>lsb-base</code> package, then downloaded <code>sysvinit-utils_3.01-1ubuntu1_amd64.deb</code>, installed it and back to normal.</p>\n<p>I can update/upgrade.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-27T13:54:27.450", "id": "1508757", "lastActivityDate": "2024-03-27T13:54:27.450", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1777551", "parentId": "1508494", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Fixed it.</p>\n<p>Removed the partially installed <code>smartmontools</code> package, installed <code>lsb-base</code> package, then downloaded <code>sysvinit-utils_3.01-1ubuntu1_amd64.deb</code>, installed it and back to normal.</p>\n<p>I can update/upgrade.</p>\n", "comm...
null
null
null
null
null
1508495
1
null
2024-03-24T21:15:15.963
0
52
<p>i got an issue when running the Dockfile: here are the codes:</p> <pre><code>COPY UpdateServer/FT.Ubuntu*x64*.sh /root/app/ # Where we are going to place the files we need WORKDIR /root/app # Execute the setup RUN ./$(find FT.Ubuntu*x64*.sh) -s </code></pre> <p>and then got error <code>RUN ./$(find FT.Ubuntu*x64*.sh) -s</code></p> <pre><code>exit code:126 </code></pre> <p>i have tried so many ways,but couldn't figure out. not sure what is wrong with it</p>
1777560
158442
2024-03-25T02:08:37.480
2024-03-25T02:08:37.480
.sh file execution: permission denied exit code 126
[ "permissions", "docker" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>The <a href=\"https://manpages.org/bash\" rel=\"nofollow noreferrer\">bash manual</a> explains it:</p>\n<blockquote>\n<p>If a command is not found, the child process created to execute it returns a status of 127. If a command is found but is not executable, the return status ...
null
null
null
null
null
1508496
1
1508505
2024-03-24T21:29:54.900
0
64
<p>I have a situation where a .~lock file exists on my laptop when I know the file was closed. Here's how: On my desktop, I edit a Libreoffice Writer file. Once I've finished, I sync the folder (using rsync -auv) with my external drive [one-way: files copied from desktop to USB drive but not vice versa] and then sync the external drive with my laptop [again, one-way - from USB to laptop only] - that's how I keep up to date records on my laptop.</p> <p>Occasionally I've done that sync when a document has been open. I've made no more changes and closed it, but obviously the .~lock file is in the folder that then syncs with the external drive then the laptop - so the lock file copies over to the laptop via the external drive. Often a few weeks later, when I open the folder on my laptop, the .~lock file is there and Libreoffice says the file is locked for editing by me on a different computer. I am certain that the file is not open on the other computer (and I won't have made any edits after copying it over, so I'm confident the version on my laptop is the current version), it's just that I synced it when the file was still open.</p> <p>Obviously the solution is to ensure that all files are closed before I sync, but if I forget - and for the few files when I have previously done this - what's the best solution? Is it safe just to delete the .~lock file? Does that file contain anything other than a flag to tell the system that the file is (potentially) open on another system / by another user and so editing it will cause conflicts?</p> <p>Many thanks.</p>
801777
null
null
2024-03-24T23:52:36.793
Can I safely delete .~lock... files for Libreoffice documents that I know are now closed?
[ "files", "libreoffice", "rsync", "lock" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<h2>Yes, that is completely safe.</h2>\n<p>The only function of the <code>~lock</code> file is to prevent two users on the same system (or even one user from two different systems) from modifying the same document at the same time. So if you know you are the only user involved, removing the lock is of no consequence.</p>\n<p>I opened such a lock file to see what's inside: my username, the name of the host, a date/time, and the path to the Libreoffice configuration file in use at the time. Nothing worth keeping, in other words.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2024-03-25T10:35:58.617", "id": "2646824", "postId": "1508505", "score": "0", "text": "Thanks - that's helpful. I also looked at the contents of the file after posting the Q and thought it seemed harmless - the main reason for asking is because so often there are unintended consequences (eg you could imagine the Libreoffice file having a flag telling it to look for a lock file and trouble ensuing if it can't find it. I'm sure you're right but I'll do some experimenting - with an unimportant document I'll create for the purpose - and will post back if it causes unexpected issues. Thanks again.", "userDisplayName": null, "userId": "801777" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2024-03-24T23:52:36.793", "id": "1508505", "lastActivityDate": "2024-03-24T23:52:36.793", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "149708", "parentId": "1508496", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<h2>Yes, that is completely safe.</h2>\n<p>The only function of the <code>~lock</code> file is to prevent two users on the same system (or even one user from two different systems) from modifying the same document at the same time. So if you know you are the only user involved, ...
null
null
null
null
null
1508500
1
null
2024-03-24T21:58:01.727
0
41
<p>I have a <strong>ssd</strong> with very important data in my workstation.</p> <p>It has <strong>a ext4 and a ntfs partition.</strong></p> <p>This morning, the ext4 partition (sda1) <strong>didn't mount, and the filesystem was listed as &quot;unknown&quot;</strong> in the Disks application. running <code>file -s /dev/sda1</code> returns &quot;<strong>no read permissions</strong>&quot;; Overall assessment is marked as &quot;Disk is OK, one bad sector&quot;, but attempting to perform any <strong>smart self-test returns the error &quot;sk_disk_open: input/output error (udisks-error-quark, 0)&quot;</strong>.</p> <p>Now the ntfs partition is also listed as unknown.</p> <p>Please help. I don't know what to do!</p> <hr /> <p>Additional info:</p> <p>The disk is a <strong>Samsung 870 Evo</strong>.</p> <p>It has important files and a Windows virtual machine that has been glitchy lately.</p> <p>There was also a power failure recently. Not sure if it's related.</p> <p>System specs:</p> <pre><code>System: Kernel: 6.5.0-21-generic x86_64 bits: 64 compiler: N/A Desktop: Cinnamon 5.2.7 tk: GTK 3.24.33 vt: 2 dm: GDM3 42.0 Distro: Ubuntu 22.04.4 LTS (Jammy Jellyfish) Machine: Type: Desktop System: MSI product: MS-7885 v: 1.0 serial: &lt;superuser required&gt; Mobo: MSI model: X99A SLI PLUS(MS-7885) v: 1.0 serial: &lt;superuser required&gt; UEFI-[Legacy]: American Megatrends v: 1.E0 date: 06/15/2018 Drives: Local Storage: total: 3.18 TiB used: 1.63 TiB (51.1%) ID-1: /dev/nvme0n1 vendor: Samsung model: SSD 980 PRO 1TB size: 931.51 GiB speed: 63.2 Gb/s lanes: 4 type: SSD serial: &lt;filter&gt; rev: 3B2QGXA7 temp: 42.9 C scheme: MBR ID-2: /dev/sdb vendor: Western Digital model: WD2003FZEX-00SRLA0 size: 1.82 TiB speed: 6.0 Gb/s type: HDD rpm: 7200 serial: &lt;filter&gt; rev: 1A01 scheme: GPT ID-3: /dev/sdc vendor: Samsung model: SSD 860 EVO 500GB size: 465.76 GiB speed: 6.0 Gb/s type: SSD serial: &lt;filter&gt; rev: 4B6Q scheme: MBR Partition: ID-1: / size: 301.86 GiB used: 137.26 GiB (45.5%) fs: ext4 dev: /dev/sdc2 ID-2: /mnt/hdd size: 1.82 TiB used: 1.2 TiB (66.2%) fs: ntfs dev: /dev/sdb2 ID-3: /mnt/mint size: 795.67 GiB used: 295.74 GiB (37.2%) fs: ext4 dev: /dev/nvme0n1p2 ID-4: /mnt/nas size: 10.46 TiB used: 7.31 TiB (69.9%) fs: cifs dev: /dev/Aether Swap: ID-1: swap-1 type: partition size: 30.52 GiB used: 0 KiB (0.0%) priority: -2 dev: /dev/sdc3 </code></pre> <p>edit:</p> <pre><code>vapor@neon:~$ sudo fdisk -l /dev/sd? [sudo] password for vapor: fdisk: cannot open /dev/sda: No such file or directory Disk /dev/sdb: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors Disk model: WDC WD2003FZEX-0 Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: 0E6D35B6-9595-4967-A9D4-F0C206EF08D7 Device Start End Sectors Size Type /dev/sdb1 34 262177 262144 128M Microsoft reserved /dev/sdb2 264192 3907028991 3906764800 1.8T Microsoft basic data Partition 1 does not start on physical sector boundary. Disk /dev/sdc: 465.76 GiB, 500107862016 bytes, 976773168 sectors Disk model: Samsung SSD 860 Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0xaea8f6b3 Device Boot Start End Sectors Size Id Type /dev/sdc1 * 2048 268437503 268435456 128G 7 HPFS/NTFS/exFAT /dev/sdc2 268437504 912771071 644333568 307.2G 83 Linux /dev/sdc3 912773120 976773167 64000048 30.5G 82 Linux swap / Solaris </code></pre>
990521
990521
2024-03-25T00:20:38.500
2024-03-25T00:20:38.500
Unresponsive storage ssd
[ "partitioning", "mount", "hard-drive", "filesystem", "ssd" ]
0
7
CC BY-SA 4.0
[ { "creationDate": "2024-03-24T22:04:14.753", "id": "2646738", "postId": "1508500", "score": "0", "text": "Sounds like your SSD is dead. RIP.", "userDisplayName": null, "userId": "68186" }, { "creationDate": "2024-03-24T22:10:43.340", "id": "2646740", "postId": "1508500", ...
null
[]
null
null
null
null
null