porkinz | hi. quick question. how do i ensure that password is always required to sudo su -? after setting a root pw, i tried to update /etc/sudoers and add PASSWD: ALL at the end of the lines, but it's still letting me sudo without a password. | 00:39 |
---|---|---|
leftyfb | porkinz: ok, lets go through this 1 step at a time. First, why are you setting a root password? Why not just use "sudo su"? | 00:40 |
porkinz | leftyfb: am using sudo su, but want to get a password prompt whenever using it. this is for an AWS VM, so in the worst case scenario where someone gets ahold of my private key and gains access to the server, all the important files are still encrypted by some keys that are only visible to root, so i don't want someone to simply sudo into root without having to also know its password | 00:43 |
leftyfb | porkinz: ok, step #1, disable the root password, that is not relevant to what you are trying to accomplish. https://help.ubuntu.com/community/RootSudo#Re-disabling_your_root_account | 00:44 |
leftyfb | porkinz: next, remove whatever you have added to the sudoers file and add this line towards the top with the rest of the Defaults: Defaults timestamp_timeout=0 | 00:46 |
leftyfb | porkinz: this will make it so every time you call sudo for anything you'll be asked for your users password (not root's, that's not how sudo works) | 00:46 |
leftyfb | porkinz: your sudoers file should look like this https://pastebin.ubuntu.com/p/4Hc59CBqtk/ If you've added anything and think you still need it, feel free to share it here so we can determine if it's necessary for your end goal | 00:49 |
porkinz | leftyfb: thanks. giving this a shot right now | 00:49 |
leftyfb | porkinz: hint: login with a different terminal and sudo su ... keep that logged in and work in a different terminal just in case you make a mistake with sudoers | 00:51 |
porkinz | leftyfb: ran sudo passwd -dl root to disable root, then updated the sudoers file per your recommendation, but it still lets me right into root after i exit and sudo su - | 00:55 |
leftyfb | porkinz: (while logged in a root in a different terminal/window) log out and log back in and then try | 00:56 |
porkinz | leftyfb: did that with no luck | 00:56 |
porkinz | leftyfb: exited all the way out to my local prompt and ssh'ed in again, then sudo su - and it let me in with no pw | 00:57 |
leftyfb | porkinz: cat /etc/os-release | nc termbin.com 9999 | 01:00 |
porkinz | leftyfb: termbin.com/mmwa | 01:01 |
leftyfb | porkinz: sudo cat /etc/sudoers | nc termbin.com 9999 | 01:02 |
porkinz | leftyfb: termbin.com/qpz7 | 01:04 |
leftyfb | porkinz: I know it's commented out, but lets remove that ubuntu line completely. This really should work. It's working fine on my test machine | 01:07 |
=== M4he is now known as mahe | ||
porkinz | leftyfb: removed and exited all the way out, but no change | 01:07 |
porkinz | was able to even login on another computer and still sudo in | 01:08 |
porkinz | i checked the groups to see if i added the ubuntu uer to root through usermod, but that doesn't look to be the case | 01:09 |
leftyfb | porkinz: wait, do this... login via ssh. Then type "sudo ls /" it should ask for a password. Then "sudo ls /tmp/" | 01:09 |
porkinz | did not ask for a password on either of those commands | 01:11 |
leftyfb | porkinz: echo $USER | 01:11 |
porkinz | ubuntu | 01:11 |
leftyfb | porkinz: something isn't right here, this should just work. What is it about this machine or the testing process are you leaving out? | 01:12 |
porkinz | leftyfb: i ran a bunch of other commands when trying to get WinSCP to access some privlidged content. i think that i ran something like usermod -aG root sysadmin | 01:14 |
porkinz | if i looks at the groups that ubuntu user is a part of "adm" comes up. wondering if that is whats going on? | 01:14 |
leftyfb | porkinz: sysadmin is not a default group | 01:15 |
leftyfb | porkinz: I would spin up another AWS VM and test this on a fresh install. If it works, then maybe move everything to the new one ... or remember all the random commands you typed and undo whatever they did | 01:16 |
porkinz | leftyfb | 01:17 |
porkinz | thanks, will give that a try and report back | 01:18 |
guiverc | I upgraded an 16.04/xenial box to 20.04 (re-install; something-else no-format).. thus system dirs got wiped & my added fonts in /usr/share/fonts are gone.. I restored most; but not one I used obviously.. anyone know what config/xml file has my altered xfce (desktop/menu/panel etc) font? | 01:35 |
=== infectiious is now known as Infectiious | ||
rfm | guiverc, no idea but probably under ~/.config somewhere. You could "find ~/.config -type f -print | xargs grep <the font name>" | 02:07 |
guiverc | rfm, thanks, I was trying grep searches for 'font' & didn't find it.. I want to know font name (see if I'm willing to install that font; I don't want to restore the whole directory I believe it was in) | 02:10 |
leftyfb | guiverc: I would create a new user and login as the new user and see if you have any issues | 02:11 |
guiverc | leftyfb, yeah that'd work I believe; also restoring the whole font dir & then logout, login would allow me to work normally I believe (& find what I'm asking for) restored (there are heaps I've not restroed); asked in case someone knew a file that had what I'm convinced is just a font-name I'm missing | 02:13 |
guiverc | thanks leftyfb :) | 02:21 |
parclytaxel | Hello? | 02:27 |
porkinz | leftyfb: the problem ended up being that cloud-init created an entry in a file under /etc/sudoers.d that gave ubuntu ALL with nopasswd rights. | 02:29 |
parclytaxel | (sorry was tweaking some things on my local client) | 02:29 |
leftyfb | porkinz: ah, I should have thought about sudoers.d/ | 02:29 |
leftyfb | porkinz: sudo apt remove --purge cloud-init | 02:29 |
parclytaxel | So, has my LiberaChat registration gone well? | 02:30 |
LjL | parclytaxel, you don't seem identified at this time | 02:30 |
leftyfb | parclytaxel: please go to #libera for help with IRC | 02:30 |
parclytaxel | oh sorry | 02:32 |
parclytaxel | I should be identified now | 02:32 |
leftyfb | parclytaxel: you're not, please go #libera for help with IRC related issues | 02:32 |
LjL | actually they are | 02:33 |
LjL | but you can talk here whether or not you're identified, anyway | 02:34 |
porkinz | leftyfb: what is the purpose of purging cloud-init instead of just commenting out the line in the offending file. i'm afraid to remove it since everything else is running smoothly | 02:37 |
leftyfb | porkinz: if you have to ask, then you're not utilizing it. It's meant for system bringup with preconfigued options or to manage some settings remotely, mainly at an enterprise level. Beyond that, it just gets in the way | 02:38 |
porkinz | leftyfb: good to know. will remove it and see what happens.. | 02:39 |
cluelessperson | despite being thoroughly disabled, ubuntu's built in on screen keyboard won't stay away | 02:47 |
cluelessperson | it keeps popping up randomly. | 02:47 |
=== catman370 is now known as catman | ||
=== catman is now known as catman370 | ||
gneeriiloeepdeer | I want to use 'locate' to find all jpg files inside a directory. I cd'ed to the directory and executed 'locate .jpg', but it showed results from all directories of my computer. | 05:02 |
gneeriiloeepdeer | how do I do this right? | 05:02 |
Unit193 | `find -name '*.jpg'` instead? | 05:02 |
ubot3 | "'*.jpg'`" is not a valid release: bionic, bionic-backports, bionic-proposed, experimental, fasttrack, focal, focal-backports, focal-proposed, groovy, groovy-backports, groovy-proposed, hirsute, hirsute-backports, hirsute-proposed, partner, stable, stable-backports, testing, unstable | 05:02 |
gneeriiloeepdeer | how come find is better than locate? | 05:09 |
Unit193 | It's not, it just does what you'd like in this case better. find will list files in the current directory and recurse, locate searches the system. | 05:11 |
Unit193 | locate can be faster since it's backed by a db. | 05:12 |
juceliofloresta | gneeriiloeepdeer you can read man locate and man updatedb to see that locate is to a another usecase than find. | 05:26 |
gneeriiloeepdeer | thank you | 05:27 |
juceliofloresta | sorry if I wasn't be respectful in my aweser, I trying to help you. 🌹 | 05:29 |
=== juceliofloresta is now known as jucelio | ||
=== jucelio is now known as juceliofloresta | ||
gneeriiloeepdeer | 🌹 that's a cool ascii | 06:11 |
gneeriiloeepdeer | arose | 06:11 |
cbreak | it's not even remotely ASCII | 06:54 |
=== o is now known as niko | ||
=== slyon is now known as slyon_ | ||
=== slyon_ is now known as slyon__ | ||
=== slyon__ is now known as slyon | ||
=== fheimes is now known as fheimes_ | ||
=== fheimes_ is now known as fheimes | ||
=== fheimes is now known as fheimes_ | ||
=== fheimes_ is now known as fheimes__ | ||
=== fheimes__ is now known as fheimes | ||
=== frenchguych is now known as yannickmauray | ||
=== yannickmauray is now known as frenchguych | ||
xikkub | buffer hide | 09:48 |
Conna | hmm | 09:48 |
xikkub | buffer hide | 09:50 |
xikkub | sorry about that | 09:53 |
pinnerup | A question of fallback fonts: After upgrading to hirsute, I see a strange phenomenon with font fallback for Arabic text. Generally, Arabic is displayed fine, but if an Arabic word contains a ٱ, that word (or the rest of the word) will render in FreeMono, which is, sadly, a horrible font for Arabic. Even if I've plenty of decent Arabic fonts ... | 10:43 |
pinnerup | ... installed that contain ٱ. Can I change this somehow? | 10:43 |
cbreak | I can't really help you, but out of interest: does this happen in all programs the same? For example in web browsers, in the terminal, in file names? | 10:50 |
pinnerup | Hmm, it seems to function differently for different programs, and even for different text fields within the same program. | 11:03 |
ThinkT510 | do those programs have separate font settings? | 11:05 |
=== ubuntu-budgie is now known as ubuntu-budgie_ | ||
pinnerup | For instance, if in Chrome I do a Google search for the phrase "أَعُوذُ بِٱللَّٰهِ مِنَ ٱلشَّيْطَانِ ٱلرَّجِيمِ", on the Google results page, it'll show the entire phrase in the search field at the top in FreeMono, but in the Chrome address bar, it'll show the address for the search page, which ... | 11:07 |
pinnerup | ... includes the same phrase, and here the words "أَعُوذُ" and "مِنَ" (notably words not containing the ٱ character) in a "proper" font, using FreeMono for the rest. | 11:07 |
ThinkT510 | does firefox do the same? | 11:08 |
pinnerup | ThinkT510: No, Firefox seems to display it all in a proper font. | 11:10 |
pinnerup | Weird. | 11:10 |
ogra | pinnerup, there was a longish discussion on the discourse community hub recently around better support for arabic fonts, perhaps there are some suggestions in it for you https://discourse.ubuntu.com/t/request-better-arabic-font-for-ubuntu-20-04/14573 | 11:10 |
pinnerup | ogra: Thanks for the tip. | 11:11 |
ogra | (note that this is a looooong thread 🙂 ) | 11:11 |
ThinkT510 | does chrome have an equivalant for about:config? perhaps there is some obscure font setting to change | 11:12 |
greyblue9 | chrome:flags is the closest thing i know of | 11:13 |
cbreak | pinnerup: here on 21.04, the character looks like an orange | with a hat. | 11:21 |
cbreak | at least in HexChat | 11:21 |
cbreak | weird... | 11:22 |
pinnerup | Orange? :D | 11:22 |
cbreak | unless I select it... then it shows totally different text. | 11:22 |
cbreak | wonder if that's some kind of confusion with the LTR / RTL switching | 11:22 |
greyblue9 | 👀 | 11:22 |
cbreak | pinnerup: https://postimg.cc/bDJ24sv6 | 11:25 |
cbreak | maybe some artefact of sub-pixel anti-aliasing | 11:26 |
cbreak | yeah | 11:26 |
urth | https://pasteboard.co/K4qR8eOA.png | 11:34 |
urth | quassel doesn't like it either | 11:34 |
ThinkT510 | looks fine in fira code | 11:37 |
pinnerup | It seems to be fixed (at least for Chrome and Anki) if I create a /etc/fonts/conf.d/99-arabic.conf file with the contents as per the link ogra gace. | 11:37 |
pinnerup | s/gace/gave/ | 11:37 |
pinnerup | cbreak: Thanks. It's good to see that the character acts up on your computer as well. At least it's not just a problem with my install :) | 11:38 |
pinnerup | urth: It seems to render properly in your screenshot? | 11:40 |
urth | the font renders but the margin/padding is wrong | 11:42 |
sentiment | hello everyone. I removed pulseaudio because of a problem I had with duplex stereo sound in other words I could not record sound. | 11:55 |
sentiment | so i've installed pipe-wire and pipewire-pulse and the same problem persists. | 11:55 |
sentiment | https://ubuntuforums.org/showthread.php?t=2462882 | 11:55 |
sentiment | ^ this problem, still with pipewire. | 11:56 |
tatertots | sentiment: replaced the culprit with something else..and your problem(s) persists eh?.....maybe your culprit wasn't the culprit after all | 11:59 |
sentiment | not sure what that is supposed to mean | 12:00 |
tatertots | sentiment: how many different GNU/Linux distributions have you tested with? Grand total? | 12:00 |
sentiment | did you read that link above? | 12:01 |
tatertots | so you've only tested Ubuntu | 12:01 |
sentiment | I'm willing to spend money if that might speed up the support process. where can I get such support? | 12:01 |
sentiment | It's been over two days now and this is frustrating. | 12:01 |
sentiment | tatertots: I have arch as well, but it only has ALSA | 12:02 |
sentiment | So it doesn't suffer from this problem. | 12:03 |
tatertots | If you have the same problem(s) with "multiple" GNU/Linux distributions, it's very likely no software will address your problem(s) | 12:03 |
sentiment | did you read that link where I said the recording works so long as it's pure ALSA? | 12:03 |
sentiment | are you willing to accept money for a better focused help? | 12:04 |
felco | i not an audio/video guy, but i read that you have a custom kernel for such workloads | 12:05 |
tatertots | Once everything soft/hard has been ruled out...some problem(s) are problems in human perception...and those kind of problems will never be address with hard/soft wares | 12:05 |
felco | but i dont remember what it is called | 12:05 |
sentiment | tatertots: you're not being helpful. | 12:06 |
tatertots | truth is bitter and hard to swallow sometimes | 12:07 |
sentiment | I'd rather ignore you and wait for someone else who can help, paid or not. | 12:07 |
sentiment | as it is, you're wasting my time and energy and I SHOULD ask you for money, not other way around. | 12:07 |
felco | sentiment maybe you can try to compile arecord with pulse support? | 12:09 |
felco | rollback to alsa maybe painful | 12:10 |
sentiment | felco: please read my last post on that thread. | 12:10 |
sentiment | I can't record via whatever application. | 12:10 |
sentiment | Also PLEASE look at the first image in the OP. | 12:11 |
felco | thats wierd | 12:11 |
sentiment | (unavailable) | 12:11 |
felco | yeah, I saw that | 12:11 |
sentiment | felco: it is | 12:11 |
felco | i cant help debug that, sorry | 12:11 |
sentiment | I have a question. | 12:12 |
sentiment | Does ASLA manipulate firmware on the sound card too? | 12:12 |
tatertots | whats the syntax for the bot to show information on packages ? | 12:12 |
tatertots | is it !packagename | 12:12 |
sentiment | For the lack of a better guess, I suspect this happened after I installed Arch. | 12:13 |
sentiment | Could it be related felco? | 12:13 |
felco | wait, are you arch or ubuntu? | 12:14 |
sentiment | right now Ubuntu | 12:14 |
felco | if your reinstalled ubuntu, thats not the case | 12:14 |
sentiment | No, I installed Arch after Ubuntu. | 12:14 |
sentiment | and I dual boot between the two. | 12:14 |
felco | yeah I understand, but I dont think that could ever happen | 12:15 |
sentiment | yeah well, I thought maybe the firmware has been changed somehow but then, pure ALSA works on Ubuntu too. So it was pointless. | 12:15 |
felco | I mean, under normal circustances not will mess the soundcard itself | 12:15 |
sentiment | I feel like ALSA does not talk the mic input to the audio server . | 12:16 |
sentiment | Where's the config for that? asoundrc? | 12:16 |
felco | maybe you can find better help in a community thats works with those stuff, like vlc | 12:16 |
sentiment | but this is pure recording issues, not playback. | 12:17 |
felco | i know, but you need better understanding of the underlyning stuff | 12:17 |
sentiment | I should add that the volume meter in the mic input panel of pulseaudio moves when I talk. But it doesn't "show" the mic input to other applications. | 12:17 |
sentiment | how could that happen? | 12:17 |
felco | this is a guess, but you have tried to mix everything? | 12:18 |
felco | mic and line in? | 12:18 |
felco | usually you have a switch that mix everything on alsamixer | 12:18 |
sentiment | not intentionally. I haven't done that no. | 12:18 |
sentiment | hmm | 12:18 |
felco | just to try if you get any input | 12:18 |
sentiment | you men stereo mix? it's off. | 12:18 |
ThinkT510 | tatertots: just !info | 12:19 |
felco | i dont remember what its called | 12:19 |
sentiment | the issue is just that: pulseaudio or pipewire do no expose the mic input to other programs. | 12:20 |
sentiment | as said, the mic input meter moves in the PA panel. | 12:20 |
sentiment | somehow someone knowledgeable about such stuff would be able to resolve it given those hints. | 12:21 |
felco | yes, i guess | 12:21 |
sentiment | Hints: | 12:21 |
sentiment | PA mi level moves. | 12:21 |
sentiment | arecord works without PA running. | 12:21 |
sentiment | other apps do not see the mic port at all. | 12:21 |
gordonjcp | sentiment: PA takes over everything to do with sound and provides its own interfacs | 12:23 |
gordonjcp | *interfaces | 12:23 |
gordonjcp | sentiment: you'll need to use something that can talk to PA's own magic method to record audio | 12:23 |
gordonjcp | it's literally the worst of all possible worlds | 12:24 |
gordonjcp | I honestly don't know why every distro uses it | 12:24 |
sentiment | used to work though. | 12:24 |
gordonjcp | pulseaudio is fundamentally broken | 12:24 |
sentiment | because there was no alternative arguably? | 12:24 |
mort | Is there a nice way to download libraries for cross-compilation? E.g I'm on x86_64, but I want libz built for aarch64 to use with aarch64-linux-gnu-gcc | 12:24 |
felco | i liked alsa better, but then i dont have any specials needs towards sound stuff | 12:25 |
sentiment | me too, no special needs either. | 12:25 |
felco | i mean, control wise | 12:25 |
sentiment | what does this line mean to you? in the output of pactl ----> analog-input-front-mic: Front Microphone (type: Mic, priority: 8500, availability group: Legacy 1, not available) | 12:26 |
sentiment | it says not available at the end | 12:26 |
sentiment | why? | 12:26 |
felco | sentiment maybe you can try livecd ubuntu i see if it works out-of-the-box there, if so, you may go deeper troubleshooting or else change your distro | 12:26 |
ogra | mort, try https://wiki.debian.org/Multiarch/HOWTO ... | 12:26 |
felco | sentiment maybe it sees the mic as diconnected, which would be bad start | 12:27 |
sentiment | why would it though, given those hints above. | 12:27 |
sentiment | this is rather confusing . :/ | 12:27 |
felco | yeah I know, you may like debian | 12:28 |
felco | worth a shot | 12:28 |
sentiment | why though? | 12:28 |
felco | it is pretty much similar to ubuntu and it may work outofthebox | 12:28 |
sentiment | I thought downstream distros are better streamlined? | 12:29 |
felco | well.. distros are usally very personal choice | 12:29 |
sentiment | also "it MAY work" doesn't cut it for me unfortunately. | 12:29 |
ogra | sentiment, have you tried using pavucontrol ? it gives you a lot more options to manage pulse setups | 12:29 |
felco | in the end, you can pretty much build whatever you want | 12:29 |
ogra | (perhaps there is a toggle in it that simply enables your mic) | 12:29 |
sentiment | ogra: please see this link: https://ubuntuforums.org/showthread.php?t=2462882 | 12:30 |
sentiment | and please read above too. I said the mic input meter moves in the PA panel. | 12:30 |
ogra | sounds like you should file a bug then ... | 12:31 |
felco | yeah | 12:31 |
sentiment | I'm fine with that if it increases the chance of a solution. | 12:31 |
sentiment | Where? | 12:31 |
ogra | sentiment, "ubuntu-bug pulseaudio" | 12:32 |
ogra | just from a terminal | 12:32 |
sentiment | oh ok, so it's not like a newsgroup. | 12:32 |
ogra | alternatively launchpad.net/ubuntu/+source/pulseaudio/+filebug ... but that wont collect configs/settings and logs | 12:32 |
sentiment | that wouldn't give me any likely solution though would it? | 12:33 |
ogra | it will make the devs working on pulse aware of the issue so there is at least a chance it gets fixed | 12:33 |
sentiment | I know. | 12:33 |
ogra | no developer reads the forums ... so to ever get it fixed a bug needs to be filed | 12:34 |
sentiment | however I'm inclined to believe it's a problem with ALSA connectivity to sound servers. | 12:34 |
ogra | else nobody will be aware that there is an iaaue at all | 12:34 |
sentiment | because it is happening with pipewire-pulse as well. | 12:34 |
ogra | *issue | 12:34 |
ogra | might be | 12:34 |
sentiment | so are there any configs worth checking out? | 12:34 |
sentiment | like asoundrc? (which is advised against anyways( | 12:35 |
ogra | probably an issue with alsa-ucm ... simply not providing the correct device to pulse/pipewire | 12:35 |
ogra | the ubuntu-bug tool usually collects all relevant logs | 12:35 |
sentiment | oh that seems to ring a bell... I say that ucm somewhere while reading configs and commands | 12:35 |
mort | ogra: I'm not able to add either aarch64, arm64 or aarch64-linux-gnu as architectures | 12:36 |
ogra | mort, "arm64" should be the dpkg architecture | 12:36 |
felco | https://wiki.ubuntu.com/MultiarchCross | 12:36 |
mort | really? arm64 causes a bunch of 404s, while aarch64 just causes a bunch of "skipping acquire of configured file blah as repository blah doesn't support architecture aarch64" | 12:37 |
sentiment | ogra: any jumpstart to that alsaucm command? | 12:37 |
sentiment | I'm reading its man page | 12:37 |
ogra | not really ... has been years ago that i had to touch it ... | 12:38 |
sentiment | ALSA lib parser.c:2152:(load_toplevel_config) Unable to find the top-level configuration file '/usr/share/alsa/ucm2/ucm.conf'. | 12:38 |
ogra | mort, oh, the sources.list entries you mean ? the server is different for arm ... "ports.ubuntu.com/ubuntu-ports" | 12:38 |
sentiment | is that a problem? no ucm.conf? | 12:38 |
mort | ogra: so what it says about dpkg --add-architecture isn't correct for arm? | 12:39 |
ogra | mort, dpkg --add-architecture arm64 | 12:39 |
ogra | that should enable it | 12:40 |
ogra | and then "deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports focal main universe" in sources.list | 12:40 |
ogra | (and whatever other pockets you need in there) | 12:41 |
mort | alright, after manually adding the ports.ubuntu.com repos it seems to work | 12:43 |
ogra | 👍 | 12:43 |
mort | still a lot of 404s though, because the existing repos don't have arm64 versions | 12:43 |
mort | do I have to manually go through and add [arch=amd64] for all repos which don't have arm stuff? | 12:45 |
ogra | no, you should only add that one line i gave you above to the end of your sources.list | 12:46 |
ogra | then run apt update ... | 12:46 |
ogra | and then apt install libfoo:arm64 ... for the lib you want | 12:46 |
mort | but then apt-get update looks like this: https://p.mort.coffee/vaN | 12:49 |
mort | it works, but returns a non-zero exit code and prints a bunch of errors because it tries to find the arm64 version of the normal ubuntu archives | 12:49 |
ogra | mort, can you paste your sources.list too ? you should really only add that one line for arm64 that i gave above, not edit any existing lines | 12:55 |
ogra | (and indeed s/focal/hirsute/ in my line for your release) | 12:56 |
tieinv | ` | 12:58 |
mort | ogra: https://p.mort.coffee/P4A.list | 12:58 |
mort | all that's from ubuntu itself except for the last linve | 12:59 |
weq | is there any method to install "additional software" to a snap package... ? | 12:59 |
ogra | and you get these errors when simply running "apt update" ? | 12:59 |
mort | ogra: yeah | 13:02 |
ogra | very strange | 13:02 |
=== genii-core is now known as genii | ||
FreeBDSM | hi. I need help with apt's error preventing me from updating packages. The error is: `E: The package docker-ce needs to be reinstalled, but I can't find an archive for it.` | 13:24 |
FreeBDSM | and I even get the same error when I do `sudo apt -y remove docker-ce`! | 13:25 |
mgedmin | can you pastebin the full error? | 13:28 |
mgedmin | there's no docker-ce package in the ubuntu archives, so you must've had some 3rd-party repo enabled | 13:34 |
mgedmin | I see dpkg has an option --force-remove-reinstreq, but I don't know if it would be a good idea to use it | 13:34 |
Guest93 | 20.04LTS youtube-dl package is out of date enough that it no longer works. Can't create launchpad account, someone else able to report it? | 13:49 |
FreeBDSM | mgedmin: yeah, googled that solution as well, went with it, thanks | 13:49 |
locsmif | Hi all. I want to add a locale, but if I e.g. run localedef nl_NL.UTF-8 the process enters a state S and does nothing? | 14:05 |
hggdh | locsmif: localedef is a *compiler* for locale data. It is in S probably because it is waiting user input (the data to be compiled). | 14:07 |
hggdh | locsmif: you probably want 'setlocale', or similar | 14:08 |
ogra | locale-gen i think ... | 14:09 |
locsmif | ogra: I mistook this system for Ubuntu-based (I'm dealing with dozens :|) but it's Debian. dpkg-reconfigure locales as root worked | 14:12 |
ogra | ah, indeed | 14:12 |
locsmif | Not sure if that matters much but it may? | 14:12 |
ogra | (thats a no-op on ubuntu nowadays i think) | 14:12 |
locsmif | Ah | 14:13 |
locsmif | Yeah, we have mainly Ubuntu here but there are a few exceptions | 14:13 |
ogra | you'd just call locale-gen fo_FO.OO | 14:13 |
sentiment | Hello , I have a question. Are ucm profiles necessary for a sound card to work properly? | 14:19 |
sentiment | why am I asking? because: -----------> alsa-lib main.c:1021:(snd_use_case_mgr_open) error: failed to import hw:0 (empty configuration) | 14:20 |
sentiment | Found hardware: "HDA-Intel" "VIA VT1705" "HDA:11064397,101905b3,00100000" "0x1019" "0x05b3" | 14:20 |
sentiment | ^ that error | 14:20 |
ogra | sentiment, the majority of cards doesnt need UCM ... this is really rather for complex cards with many in/outputs usually | 14:25 |
=== Osares100 is now known as Osares10 | ||
=== grommel1 is now known as grommel | ||
Livero | Hi. I'm trying to find a program that allows me to resize unresizeable windows forcefully. Unfortunately, I have no luck finding one. Does anyone know something like that? | 14:41 |
leftyfb | Livero: I don't think that's a thing. Why do you need to do that? | 14:45 |
braewoods | Livero: doesn't really exist. | 14:45 |
braewoods | Livero: they're unresizeable for a reason typically. | 14:45 |
entuland | Livero - what's the point of that? if the window can't be resized, chances are that even if you force it to have a different size the contents wouldn't get arranged accordingly | 14:45 |
entuland | I know many programs that lay out the widgets assuming a specific size and in some cases they "forgot" to make the window fixed in size, which resulted in the program simply showing blank around the widgets (right + bottom) or clipping the interface | 14:46 |
urth | the kde window manager allows for some forced window settings but I don't know if it works on unresizeable windows | 14:47 |
entuland | (I mean, that happens if you resize the window anyways) | 14:47 |
lokiichoco | \quit | 14:49 |
entuland | I found hits about wmctrl which may be able to do so or not, can't find mentions of fixed size windows | 14:50 |
urth | Livero: if you want to resize a window without a border, most window managers allow that via ALT+right click | 14:51 |
Livero | urth: It does have a border. It just won't let me resize it. | 14:59 |
Livero | Also, I don't think Alt+right click works for me. Resize is greyed out, even for windows I can resize | 15:00 |
entuland | Livero you tried wmctrl as well? | 15:02 |
=== guest5556 is now known as bitweaver | ||
=== michael1 is now known as RedNifre | ||
=== m4v is now known as kubot | ||
=== kubot is now known as m4v | ||
Abrax | why did you move here | 15:53 |
entuland | you mean here on Libera? | 15:55 |
lotuspsychje_ | #ubuntu-discuss or #ubuntu-offtopic please Abrax | 15:56 |
=== lotuspsychje_ is now known as lotuspsychje | ||
Travis | Hello. Can Mac programs be installed on Ubuntu? | 16:24 |
Toadisattva | most everything not proprietary to apple should have a linux alternative | 16:25 |
Toadisattva | er linux version as it were | 16:25 |
Travis | Well, maybe not. Paltalk does not have a Linux version. | 16:25 |
Travis | I wish it did. | 16:25 |
ogra | Travis, https://snapcraft.io/sosumi perhaps ? | 16:28 |
cbreak | Travis: it is possible to install MacOS in a VM via Qemu / KVM on linux | 16:28 |
gordonjcp | yup | 16:29 |
gordonjcp | it even works, too | 16:29 |
cbreak | this will not be productively usable though, unless you somehow dedicate a whole GPU to it | 16:29 |
Travis | I don't have that OS. | 16:29 |
gordonjcp | Travis: what are you trying to do? | 16:29 |
node1 | Hi | 16:29 |
Travis | I am trying to install Paltalk onto Ubuntu. | 16:29 |
Travis | I gave up on the Mac version, as that is what came up, when I accessed the website via Ubuntu. | 16:30 |
cbreak | I don't really want to post a link to it here, but if you search for OSX-KVM you should find stuff... wouldn't recommend it for anything serious though. | 16:30 |
Travis | If I can get my other radio programs to work, I may switch to Ubuntu full time. | 16:31 |
Toadisattva | it appears it has a windows version? | 16:31 |
Toadisattva | maybe you can just run it in wine? | 16:31 |
tatertots | Paltalk can probably be used with a browser also...firefox/chrome | 16:31 |
tatertots | Paltalk is pretty basic | 16:31 |
cbreak | it does look like Discord? | 16:31 |
Travis | no | 16:31 |
Travis | Paltalk doesn't have a web-based chat anymore. | 16:32 |
Travis | I am trying that now, Toadisattva | 16:32 |
DrkTremos | evening people | 16:36 |
sima | hi, I updated 20.04 minimal install (advanced) and added xubuntu packages for desktop, then updated to 20.10 nd now to 21.04 with ' do-release-upgrade -d ' | 16:42 |
Travis | I have the program installed, yet get zero sound from the software. | 16:42 |
sima | But every time after logging in, it pops-up with some warning about reporting bug/having an error to report | 16:43 |
sima | Since I am preparing the laptop for relatively average user, I don't want qestions like, Why Ubuntu always want to report some error. How do I stop him from doing that and maybe report it and make that pop-up go away? | 16:44 |
sima | maybe it's about apt-btrfs-snapshot not working by default, without installing additional required packages (not listed as dependencies) | 16:46 |
alkisg | sima: https://askubuntu.com/questions/135540/what-is-the-whoopsie-process-and-how-can-i-remove-it | 16:47 |
alkisg | You can see the existing crash dumps with: ls /var/crash | 16:47 |
cbreak | people actually use btrfs? | 16:54 |
cbreak | if you don't, you might be able to just systemctl disable the btrfs related services / units... or remove them? | 16:55 |
sima | alkisg, huh, I just removed everything from /var/crash Thanks. | 17:02 |
* sima will re-login to see if it re-appears | 17:02 | |
=== Gorian is now known as Guest3462 | ||
Chunkyz-RPi | what's ubuntu's software centre called on 21.04? | 17:28 |
Lerner | I just install Ubuntu 21.04 and I tried to install XRDP using "sudo apt install xrdp" but it just says "Unable to locate package xrdp" | 17:28 |
Chunkyz-RPi | so I can install it? | 17:28 |
cbreak | Lerner: sudo apt update && apt search xrdp | 17:29 |
Lerner | I did the first already | 17:29 |
cbreak | on my 21.04 it finds xrdp/hirsute 0.9.12-1.1 amd64 among others | 17:30 |
Lerner | The second says "Sorting... Done." then "Full Text Search... Done" and that's it | 17:30 |
Chunkyz-RPi | Lerner: do you have multiverse/universe enabled? | 17:30 |
cbreak | https://packages.ubuntu.com/hirsute/xrdp | 17:30 |
Lerner | I don't know how to do that | 17:31 |
cbreak | there's a checkbox for it in the Software & Update settings | 17:31 |
Lerner | i'll try and come back | 17:32 |
cbreak | Ubuntu Software > Downloadable from the Internet > Community-Maintained free and open-source software (universe) | 17:32 |
Chunkyz-RPi | cbreak: what's the software center package name? | 17:33 |
ioria | Chunkyz-RPi, on 21.04 you should have the snap ver. (snap-store), but you can also install gnome-software, if you want | 17:35 |
Chunkyz-RPi | I'm trying to stay away from snap, what's the gnome-software package name ioria ? | 17:36 |
ioria | !info gnome-software | 17:36 |
ubot3 | gnome-software (3.38.1-1, hirsute): Software Center for GNOME. In component universe, is optional. Built by gnome-software. Size 876 kB / 6,835 kB | 17:36 |
ioria | that ^ | 17:37 |
Chunkyz-RPi | nvm! | 17:37 |
Chunkyz-RPi | thanks! | 17:37 |
ioria | ok | 17:37 |
Chunkyz-RPi | ioria: what's the snap store package name? sorry. | 17:39 |
ioria | snap-store | 17:39 |
Chunkyz-RPi | don't think so ioria | 17:40 |
Chunkyz-RPi | ioria> snap-store | 17:40 |
Chunkyz-RPi | oops | 17:40 |
Chunkyz-RPi | E: Unable to locate package snap-store | 17:40 |
Lerner | That was it. Enabled universe/multiverse and was able to install xrdp. Thanks. | 17:40 |
ioria | it's not a regular pkg; snap find snap-store | 17:41 |
ioria | Chunkyz-RPi, ^^ | 17:41 |
ioria | Chunkyz-RPi, you cannot find/install/remove snaps with apt tools | 17:42 |
Anna_ | jeremy31: the "xrandr --output LVDS1 --off" command didn't work on installer's terminal | 17:55 |
nomike | Hi | 17:55 |
Anna_ | can we try plan B ? | 17:55 |
jeremy31 | Anna_: My idea was to disconnect the broken monitor | 17:56 |
Anna_ | and TJ was telling the same. But how? | 17:57 |
nomike | I'm running ubuntu 20.10. A few days/weeks ago update manager offered me to upgrade to 21.04. Id didn't upgrade back then and I know there was this issue with upgrading and upgrades where temporarily disabled. But AFAIK these issues have been solved for some time now and when I run "do-release-upgrade" I'm just told there aren't any new releases. | 17:58 |
nomike | Is the upgrade still delayed and I just need to be patient, or could if be an indication that something is wrong? | 17:58 |
jeremy31 | Anna_: Look up monitor replacement for your model, likely a youtube video | 17:58 |
Anna_ | jeremy31: I copied him | 18:01 |
Anna_ | <TJ-> Anna_: there is a way to add an option to the kernel command-line when the installer bootloader starts, and that would allow you to disable the laptop display and therefore the VGA display should be used by the installer. The option to add would be: "video=LVDS1:d". I have to go so I cannot talk you through that process, but others here can. It's generally a case of first identifying whether the installer is booting in BIOS mode (and thus | 18:01 |
Anna_ | uses the syslinux bootloader) or UEFI mode (and uses GRUB) - depending on which it is, the process of editing the kernel command line is different | 18:01 |
Deuteranopia | 18:04 | |
jeremy31 | Anna_: to do that you have to press 'e' during boot to edit the grub command line and put that bit next to quiet splash | 18:04 |
jeremy31 | Anna_: it might need to be video=LVDS-1:d | 18:08 |
Anna_ | do what? the editing? He said i need to identify something else first... | 18:09 |
=== Laibsch is now known as Laibsch1 | ||
=== Laibsch1 is now known as Laibsch | ||
jeremy31 | Anna_: I am doing some checking on the grub | 18:14 |
Anna_ | ok | 18:14 |
jeremy31 | Anna_: adding the video=LVDS-1:d should disable lvds if that is what xrandr showed the connected monitor to be | 18:18 |
Anna_ | jeremy31: was it? you tell me ---> http://paste.ubuntu.com/p/jx5SWPfjkC/ | 18:21 |
Aavar | how can I list large files/directories on my drive? I managed to move some files to my / drive instead of deleting them, but I cant seem to find out where they went (the drive is at 100%) | 18:21 |
jeremy31 | Anna_: It should work | 18:22 |
Anna_ | jeremy32: so all I have to do is press "e" while boot from usb and then blindly type "video=LVDS-1:d" ? | 18:24 |
=== netravnen is now known as nethrafn | ||
MikeB | When will Ubuntu member cloak be available on liberachat? | 18:26 |
jeremy31 | Anna_: the second monitor doesn't work at boot? | 18:26 |
jeremy31 | MikeB: ask in #ubuntu-irc have the URL to your LP page ready and have it updated with your Libera nick | 18:26 |
Anna_ | you mean the external one? | 18:27 |
jeremy31 | Anna_: yes | 18:27 |
=== MikeB is now known as Mike | ||
=== Mike is now known as Mikeb | ||
=== Mikeb is now known as MikeB | ||
|macallan| | Hi, still getting used to ubuntu and gnome (from previous kubuntu). One thing I use fairly often both on kubuntu and windows is the "windows button" and arrow to fit for example to apps side by side to fill the screen. is there an equalent shortcut in gnome? | 18:28 |
Anna_ | jeremy31: in all cases, including while on installer from usb, the external monitor is my only hope to see something. It works, just not with the right resolution. It's the internal that doesn't work at all. | 18:29 |
=== MikeB is now known as dbasinge | ||
jeremy31 | Anna_: any chance you can go through the menus on the external monitor and see if screen size can be adjusted? Is the aspect ratio the same, neither monitor a wide screen? | 18:32 |
rfm | Aavar, "ncdu" is popular for displaying file/directory usage and drilling down into the directories | 18:32 |
MTecknology | In default ubuntu 21.04, how do I configure virtual desktops? I know where the option /used/ to be (settings > appearance > enable workspaces), but the option doesn't seem to be available. | 18:36 |
rfm | Aavar, the older way is "du -x / | sort -rn } less" if you don't have ncdu installed and can't because root is full... | 18:37 |
ThinkT510 | MTecknology: gnome makes a new workspace when the current one has an app open on it | 18:38 |
MTecknology | ThinkT510: then it seems I'm missing how to switch to it | 18:40 |
ThinkT510 | MTecknology: open activities and the workspaces are on the right | 18:40 |
Anna_ | jeremy31: No chance I could navigate on any menu. I don't know what aspect ratio has each, but it doesn't seem to be the same. The external is as bulky as a usual monitor from the 80s could be. The internal is wider, but not too wide. A normal internal monitor for a normal 15.4 laptop. | 18:41 |
MTecknology | ThinkT510: I don't see any workspaces... just a list of apps | 18:42 |
jeremy31 | Anna_: So grub menu doesn't appear? | 18:45 |
ThinkT510 | MTecknology: do you have an app open? | 18:46 |
MTecknology | well, not "list," it's thumbnails of open apps; either way, not workspaces | 18:46 |
MTecknology | I have a few open, yes. | 18:46 |
ThinkT510 | is there one that's empty? | 18:47 |
MTecknology | nope | 18:48 |
ThinkT510 | could you send a screenshot please? | 18:49 |
ThinkT510 | !screenshot | 18:49 |
ubot3 | Screenshots can be made with the [PrtScr] button. Want to show us a screenshot of your problem? Upload an image to http://imgur.com/ and link the created page here. | 18:49 |
MTecknology | ThinkT510: https://i.imgur.com/eO5TiLz.png | 18:51 |
Anna_ | jeremy31: by pressing "e" while boot from usb you mean? I remember something appeared last time I tried to press "e", but I couldn't even recognize what it was. Now, of you meant the regular boot menu, someone advised me to use a program called grub customizer. Selecting to boot the "right" OS between the installed but unsupported Windows 7 and the equally unsupported Ubuntu MATE 16.04 is something I can do. The only problem I managed to solve | 18:51 |
Anna_ | during this frustrating week. | 18:51 |
ThinkT510 | MTecknology: I can see it to the right | 18:52 |
MTecknology | ah... | 18:52 |
MTecknology | I see it now | 18:52 |
MTecknology | Where an I see the keys for switching between and switching while bringing the app with? | 18:53 |
Josh_2 | Hi I got quite the problem on my server, https://dpaste.com/2868WR6ZN can anyone tell me how to sort this out? | 18:55 |
Josh_2 | tried to do an upgrade & update | 18:57 |
Bright | Hi, is anyone using Srain to chat? | 19:00 |
Bright | The config instructions on this page of https://doc.srain.im/en/stable-1.2/config.html is difficult for me. | 19:00 |
Josh_2 | Thats how I ended up in this situation, cant really do anything now :( | 19:00 |
jeremy31 | Anna_: I am doing a check on an ISO customizer program, hopefully it can change the default command line so it will use your external monitor | 19:00 |
Bright | My aim is to keep only "Libera Chat" in the list of servers, using auto-login with username and password. Can anyone help me? | 19:00 |
genii | Josh_2: dpkg -i --force-overwrite /var/cache/apt/archives/libpython3.9-minimal_3.9.5-3~20.10.1_amd64.deb | 19:04 |
Anna_ | Bright: Libera.Chat is not a server, it's a network. Even I know that. For saving your preferences you need a good client. Maybe HexChat if you're on a desktop, but don't ask me how to install it. I found it already installed on my brother's laptop. Not really an expert. | 19:06 |
ravage | apt install hexchat | 19:10 |
ravage | its not that difficult :) | 19:10 |
Anna_ | that | 19:10 |
Bright | Anna, thanks for your recommendation. I have installed HexChat. | 19:12 |
Bright | Thank you ,ravage | 19:13 |
Anna_ | Bright: On HexChat select Networks list , then use the favor button to select favorites and then ckick the option "show favorites only" | 19:14 |
Anna_ | that's how I did it | 19:15 |
Bright | Yes, thanks! I've been using HexChat for a long time. Just found srain, it has a beautiful interface | 19:16 |
jeremy31 | Bright: see https://askubuntu.com/questions/1339682/how-do-i-connect-to-libera-chat-with-hexchat that will show you how to add Libera to the server list in hexchat | 19:16 |
Anna_ | I have no idea if HexChat is the best there is. It's what my brother uses, so not really mine the recomendation. Blame him if it won't worl for you :-P | 19:18 |
Anna_ | work | 19:18 |
Bright | xD | 19:18 |
Josh_2 | genii: tyvm! | 19:29 |
genii | Josh_2: Glad to assist | 19:29 |
Josh_2 | okay, now thats fixed. I am starting postgres with systemctl start postgresql, however when I run ps -e | grep post I get no output | 19:37 |
Josh_2 | same if I use /etc/init.d/postgresql start | 19:37 |
oerheks | systemctl status postgresql | 19:39 |
oerheks | journalctl -xe # couls also be a help | 19:39 |
Josh_2 | https://dpaste.com/5E5YDF5AZ | 19:40 |
Josh_2 | output from journalctl -xe | 19:40 |
Josh_2 | oo got a problem with my config | 19:41 |
Josh_2 | Okay got it :D | 19:47 |
Anna_ | jeremy31: any luck with that program? | 19:56 |
jeremy31 | Anna_: No, I can't get it to change the ISO to disable my internal like I can by changing grub | 19:57 |
Anna_ | So there is no solution? | 19:57 |
alkisg | Anna_: are you trying to get the correct resolution in the external monitor, and disable the internal? Did you try: xrandr --output LVDS1 --off; xrandr --output VGA1 --mode 1024x768 ? | 19:58 |
Anna_ | alkisg: is this 1 big command or two? | 20:00 |
jeremy31 | Anna_: you might have to wait for tom or disconnect the laptop monitor. On this laptop I can read from an external monitor in BIOS and the Grub menu | 20:00 |
jeremy31 | Anna_: one command | 20:00 |
alkisg | Anna_: there are two commands, paste them in a single line, the question mark properly separates them: xrandr --output LVDS1 --off; xrandr --output VGA1 --mode 1024x768 | 20:01 |
Anna_ | I have tried "xrandr --output LVDS1 --off" as TJ had suggested and nothing happened. he never mentioned that's only the half of it | 20:01 |
alkisg | That would disable your internal monitor, without changing the external monitor resolution | 20:02 |
alkisg | So if your internal monitor is broken, you wouldn't see any change | 20:02 |
Anna_ | the second half sets the resolution on 1024x768? | 20:03 |
alkisg | Yes | 20:03 |
alkisg | It's what your xrandr says that the monitor supports | 20:03 |
Anna_ | I don't think the external can support that. It's an ancient monitor (from the 80s) | 20:04 |
alkisg | If you're afraid to try, then try this: xrandr --output LVDS1 --off; xrandr --output VGA1 --mode 1024x768; sleep 10; xrandr --output VGA1 --mode 800x600 | 20:04 |
alkisg | That big command will set the 1024x768 resolution for 10 seconds, then revert to your current 800x600 one | 20:05 |
alkisg | So you'll see if it supports 1024 as it claims, or not | 20:05 |
Anna_ | I'm not afraid. Worst case scenario, I drag the usb stick out and restart. | 20:06 |
jeremy31 | Anna_: wasn't the main thing to be able to install a new version of Ubuntu? | 20:08 |
Anna_ | jeremy31: I'd like to be able to see graphics while installing it, because, frankly, I'm not sure if I want xubuntu. i might have to try to install a new distro several times. So, no, installing is not the main thing. the main thing is whether I can "hack" the resolution with 1 crappy monitor and 1 totally broken. | 20:11 |
Anna_ | Simply put, I had enough with "ready" computers from my brother. I want to select on my own. | 20:12 |
jeremy31 | The big problem is that the monitor isn't completely broken, as it thinks it is connected | 20:13 |
Anna_ | yes, I got that. Just a minute... | 20:14 |
Anna_ | I'm trying to understand what alkisg said... alkisg, did you call "question mark" this symbol ---> ";" ?!? ...are you Greek? | 20:18 |
alkisg | Anna_: yes sorry, that's question mark in greek, while I should say "half colon" or however it's called in english :) | 20:18 |
Anna_ | LOL | 20:18 |
alkisg | It's a command separator in any case | 20:18 |
alkisg | *semicolon :) | 20:19 |
Anna_ | thank god you didn't call it "half-ass" ha ha ha | 20:19 |
alkisg | Haha | 20:20 |
jeremy31 | Only Americans say that | 20:20 |
Aavar | Is there a tool to show what is taking up space? On a server (terminal/ncurses) | 20:21 |
tomreyn | Aavar: ncdu | 20:22 |
Anna_ | hello tomreyn :) | 20:23 |
Aavar | tomreyn: THank you. | 20:23 |
tomreyn | hi Anna_ | 20:23 |
tomreyn | you're welcome Aavar | 20:23 |
Aavar | tomreyn: do you know if I can Exclude more than one directory? | 20:25 |
Aavar | found it :) | 20:26 |
Anna_ | Aavar: If you were on MATE, I would recomend MATE Disk Analyzer. You can select any disk or folder with that. I'm going to follow alkisg's suggestion now. I'll return in very few minutes if that won't work. ASre you going to be here, tomreyn? | 20:27 |
tomreyn | Anna_: i'll have some supper and watch some tv, but should be back later. do you need me specifically? | 20:28 |
Aavar | hmm... my syslog is 116GB... How can that be? Could it be that logrotate is not working? should that be rotated via cron? | 20:29 |
tomreyn | Aavar: syslog as in /var/log/syslog ? | 20:30 |
Anna_ | I;kk update you on your initial suggestions if you're interested, plus everyone here seem to trust you and recomend you as top adviser. See you later | 20:30 |
tomreyn | hah, thanks. there are certainly more experienced people posting here, though. | 20:30 |
Aavar | tomreyn: Yes | 20:31 |
Aavar | I think that was managed by cron before. Maybe systemd has taken over? | 20:32 |
tomreyn | Aavar: it should get rotated in deed, unless you removed logrotate | 20:32 |
Aavar | tomreyn: is that a package? | 20:32 |
tomreyn | systemd managed rsyslogd, which is the default syslog daemon on ubuntu. | 20:32 |
tomreyn | systemd also has its own logging service, but not syslog compatible. it is systemd-journald | 20:33 |
tomreyn | use journalctl to control it | 20:33 |
Aavar | tomreyn: I can see that the logrotate.service is not running... I'll try to enable and run it. | 20:33 |
Aavar | or is it managed by logrotate.timer? | 20:34 |
tomreyn | i assume so, but don't have a system using this at hand. | 20:34 |
Aavar | haha! I ran the service by hand and gained 115 GB... | 20:35 |
tomreyn | if you don't need logs in syslogd format, you could consider purging rsyslogd and the logs at /var/log/syslog* and instead use journald, enable persistent journals by creating /var/log/journal (if it does not already exist) | 20:36 |
Aavar | I guess there is something wrong with the timer... | 20:36 |
Aavar | tomreyn: I have not learned to use journald yet, so I want to keep the logs for now. | 20:36 |
tomreyn | could be, or something logs to syslog with high frequency | 20:36 |
illuminated | how do you remove apt's cache? | 20:37 |
illuminated | package cache | 20:37 |
tomreyn | okay, tv break now, ttyl | 20:37 |
illuminated | and refresh it | 20:37 |
Aavar | illuminated: apt clean and apt update | 20:38 |
Bright | hi,all. How to enable google chrome HW acceleration in wayland, I'm using GNOME. | 20:38 |
illuminated | thanks | 20:39 |
illuminated | this is really annoying me | 20:39 |
illuminated | I added the microsoft repo | 20:39 |
illuminated | did an apt update | 20:39 |
illuminated | did an apt search powershell | 20:39 |
illuminated | shows fine in the listings | 20:39 |
illuminated | then do an apt install -y powershell | 20:39 |
illuminated | and it says no package found | 20:39 |
illuminated | is this a problem with their repo | 20:40 |
illuminated | or something on my end? | 20:40 |
illuminated | "unable to locate package powershell" is the exact error | 20:40 |
Aavar | illuminated: did you follow a guide? | 20:41 |
illuminated | yeah on ms's site | 20:41 |
Aavar | ahh... I did not solve anything. I was using the wrong machine :P | 20:43 |
Aavar | illuminated: this one? | 20:45 |
Aavar | https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7.1 | 20:45 |
illuminated | yeah | 20:45 |
illuminated | I figured it out | 20:46 |
illuminated | this is an old 32 bit system I'm trying to dump it on | 20:46 |
illuminated | the packages apt search finds are only for 64 bit | 20:46 |
Aavar | should I be worried? https://paste.ubuntu.com/p/htysTBBqHQ/ from syslog | 20:47 |
Thete | Aavar: if those numbers start climing yah | 21:14 |
Thete | might help to have backups if you don't | 21:14 |
Aavar | Thete: I do, but this should be a healty raid... | 21:15 |
Thete | drives fail though | 21:15 |
Aavar | They do... and they are of a similar vintage... Maybe I should move the files to a new raid... I do have one set up. | 21:16 |
Aavar | I'll keep an eye on it for now. | 21:16 |
Thete | what does smartctl say? | 21:17 |
Thete | are you seeing lot of errors on those devices specifically? | 21:17 |
Anna_ | alkisg: it didn't work | 21:21 |
=== Bright is now known as Inoton | ||
Anna_ | tomreyn: how can you login on tty terminal since there is no account to login for a distro not installed yet? | 21:22 |
Aavar | Anna_: I believe the login is ubuntu with no password. | 21:23 |
=== Inoton is now known as Bright | ||
Aavar | I am still struggling with setting up bridged containers with bridged network. I have managed to create a bridge on my system but when I connect a container to the bridge it stops the connection to the host (to the network). I am following this guide: https://www.youtube.com/watch?v=DgBbhrv3KQg | 21:25 |
Aavar | There is something very wrong with my setup... | 21:25 |
=== ihaveamac is now known as ihaveahax | ||
=== ihaveahax is now known as ihaveamac | ||
tomreyn | Anna_: i did not know (or realize?) you were referring to an installer. but i think Aavar was right. Have you given this a try? | 21:41 |
tomreyn | Aavar: thos disks you have a running hot. check your fans, increase air flow, reduce disks if needed. they'll die faster when running hot | 21:44 |
Anna_ | I will now. The proper command is still DISPLAY=:0 xrandr --size 800x600 ? | 21:44 |
tomreyn | Anna_: i think you had been given better commands since, after you provided more details. | 21:45 |
tomreyn | something where the primary, broken monitor is disabled, and the resizing applies to the secondary screen? | 21:46 |
Anna_ | And none of them worked. | 21:46 |
jeremy31 | Anna_: does the broken monitor do anything? | 21:47 |
Anna_ | the laptop's internal monitor is broken, but probably still detectable, and the external one supports only 800x600 | 21:47 |
tomreyn | i didn't follow the full conversation on that, so i'm not sure what you tried exactly and how those did not work. that makes it more difficult to come up with alternative approaches. | 21:47 |
tomreyn | i had suggested trying to install ubuntu-server. i do not know whether it outputs to all monitors, but would hope it does. | 21:47 |
Anna_ | jeremy31: of course not, it's broken, what do you mean | 21:49 |
jeremy31 | Anna_: You did say it was Ubuntu 16.04? I know there were some issues around that time with brightness settings with Intel graphics and it would require the user to use the FN combo to increase brightness | 21:50 |
Anna_ | No, it's really broken. Once upon a time FN was useful for what you said, but no matter. the monitor went completely black. | 21:51 |
Anna_ | no more* | 21:51 |
Anna_ | tomreyn: I wasn't expecting you to follow the entire conversation, I was talking for your suggestions only and whether there is update regarding them. Althoughg, to be honest, I did think you followed the conversation since you seem to know "better commands" were being given since you. | 21:55 |
Anna_ | I;m almost more confused now than when I started using this channel :( | 21:56 |
tomreyn | Anna_: i noticed some nick highlights and had a quick look, but don'T expect me to have read or remember all that was said. ;) | 21:56 |
oerheks | this is beyound ubuntu support, broken hardware, and an external monitor that does not meet the minimum specs of xorg, 1024x768 | 21:57 |
oerheks | get a different monitor, how hard could that be? | 21:58 |
Anna_ | So, should I use the initially suggested command on tty terminal (assuming I will be able to login) or not? | 21:58 |
=== niko is now known as o | ||
tomreyn | Anna_: trying whether or not you're able to login there should not be too difficult, would it? which version is this installer cd? which hardware is all this about anyways? | 22:01 |
jeremy31 | Anna_: I would take it to a computer shop and have the connected monitor disconnected if you do not want to do it | 22:01 |
jeremy31 | tomreyn: Toshiba Tecra IIRC | 22:02 |
Anna_ | oerheks: being totally broke and unemployed during a hard covid lockdown shouldn't be difficult for someone to understand or necessary for me to say, unless you want to embarrass me | 22:02 |
Anna_ | to make me feel embarrassed* | 22:03 |
tomreyn | thanks jeremy. that's just a series, though. i understand that's all the info we have,t hough. | 22:04 |
Anna_ | it's a toshiba tecra A10-11M. the usb stick contains a xubuntu 20.04 iso | 22:04 |
jeremy31 | Anna_: you can ask a question at ubuntuforums.org that will make it easier for people to keep track of what has been suggested and what does and doesn't work | 22:05 |
Travis | To whomever was helping me earlier, thank you! | 22:06 |
Travis | I fixed the Paltalk issue in Wine. I had to switch to Alsa, for my sound | 22:06 |
Anna_ | jeremy31: I'd like to try one last thing. The suggestion about the tty terminal seemed good. I only asked whether I should use the initially suggested command, because tomreyn said better commands were suggested since then? | 22:07 |
tomreyn | Anna_: hmm that's indeed old - without meaning to insult you, it's just old hardware. but it's 64-bits, and apparently those systems have 2 GB RAM. 4 is recommended for current default ubuntu, but you can try something lighter such as xubuntu, lubuntu or the like. | 22:08 |
Anna_ | ram is 6gb | 22:08 |
Anna_ | it was extended | 22:09 |
tomreyn | Anna_: oh nice! if you can get to a tty on the working monitor AND can take a photo of the xrandr output there that'll be helpful. | 22:09 |
tomreyn | take a photo and upload that, that is | 22:09 |
tomreyn | Anna_: umm sorry, i guess i didn't think much. you may not actually be able to switch the secondary monitor to a tty with a key combo. i think it will keep shopwing the graphical login, only the the first monitor would switch to a tty. | 22:12 |
leftyfb | Anna_: did you try reaching out to that makerspace? They're usually community-orientated and willing to help out with this sort of thing. I know if someone were to reach out to the one around here, myself and many others would be willing to meet the person in the space to hook up a monitor and get the install going. | 22:15 |
Anna_ | I haven't tried the "ubuntu" username yet. Last time, the tty terminal was also hard to read (i was typing my usual username blindly) so I don't see how a photo would help. The photo will only show you the mess I see. It is either going to be fixed or not. leftyfb: That site announced they are closed due to covid. | 22:17 |
tomreyn | Anna_: have you tried this while runnign the installer? | 22:19 |
tomreyn | is "hard to read" because it was on the primary, broken, monitor? | 22:19 |
leftyfb | Anna_: ah, right, Sun - Mon closed. Ok, well, if you don't get things going today, maybe you can reach out to them tomorrow | 22:19 |
Anna_ | the "ubuntu" username? Not yet. I have tried your initial suggestion but I couldn't login | 22:20 |
Anna_ | So, assuming the "ubuntu username and no password" backdoor works, should I use the "DISPLAY=:0 xrandr --size 800x600" command? | 22:21 |
=== guiverc2 is now known as guiverc | ||
Anna_ | leftyfb: no, they are all week closed, (lockdown) | 22:22 |
leftyfb | Anna_: where does it say that on their site? I don't see that | 22:23 |
oerheks | xrandr -s 800x600 # not display 0, that one should be the broken one. | 22:27 |
Anna_ | I also tried that guide ubot3 gave, but I couldn't edit the grub file | 22:27 |
oerheks | i think it is not going to work. | 22:27 |
Anna_ | not that it would matter. that affects only the installed distro, right? | 22:27 |
=== SysGh_st is now known as SysGhost | ||
tomreyn | Anna_: when i gave you the "DISPLAY=:0 xrandr --size 800x600" command, i was assuming all sorts of things which, as further information you have since provided indicates, won't actually work for you. | 22:39 |
Anna_ | okay... so what now? another suggestion or no hope? | 22:40 |
oerheks | in my experience; nope. maybe you can hook it on a TV in a livingroom? | 22:43 |
Anna_ | I never had a TV set. movies and news from internet for me. This old laptop wasn;t even mine. My brother gave it to me before he moved to another town. | 22:46 |
Anna_ | If you guys are 100% sure there is no way a solution to be found, I guess I should focus in finding someone who could lend me a monitor for awhile. Was I naive to believe my brother when he said "you can do everything with command line" ?? Maybe all this was a prank of his :( | 22:49 |
cbreak | if you don't need graphics, the CLI is quite powerful | 22:50 |
cbreak | if you want graphics, then... X is a lot more useful than a CLI | 22:50 |
tomreyn | Anna_: what does the second monitor show when you boot from the usb? just a graphical image, or a black screne, or a login prompt, or...? | 22:57 |
tomreyn | if you can can get a login on the working screen then you'll be in a much better position to fix this. but only then, i guess. | 22:58 |
Anna_ | You mean the external. It shows everything, but with the wrong resolution. I can see the xubuntu logo first, then little words at the bottom (probably loading) and then a graphical window, for which i assume it is a menu where i'm asked what i want to do, try the distro or install it and how. the only thing i can regognize is an image of a disk. No text is viewable at all. | 23:00 |
tomreyn | Anna_: so try the server installer. i assume you have not done so, yet? | 23:02 |
Anna_ | Even the xubuntu logo is showing badly. Is that also graphical? | 23:03 |
tomreyn | yes that's most likely graphical | 23:06 |
Aavar | Ahh... I finally got lxd working like it should and now zfs is bugging. Can someone help me with zfs? the pool is not showing in "zpool status". It worked fine before the reboot. Can I mount or initialize it somehow? | 23:06 |
Anna_ | I was so desperate at a point that it crossed my mind to choose random options with the arrow keys, but I didn't cause I was afraid I might mistakenly order it to format the entire disk (while i have obnly a partition really available) | 23:09 |
Aavar | I'll try a reboot. Brb.. | 23:10 |
Aavar | A reboot did not help... | 23:12 |
Anna_ | You know, instead of me sending photos, which is impossible, it would make more sense if I had screenshots of the installer's initial menu from someone. | 23:15 |
Anna_ | I'm not asking, just saying. | 23:15 |
jeremy31 | Anna_: The installer is different between UEFI and Legacy installs. I think the Legacy install has a graphic that says automatic boot in 10 seconds and you have to press something to edit | 23:19 |
Anna_ | (which is probably equally stupid since screenshots might be not possible on an installer) | 23:21 |
Anna_ | stupid idea of mine | 23:21 |
Anna_ | <--- blonde | 23:21 |
tomreyn | first screen of xubuntu 20.04 after fully booting up https://i.imgur.com/A5lcg7k.png | 23:23 |
Anna_ | jeremy31: you just described my grub boot menu. On xubuntu installer happens nothing if I wait long enough. | 23:23 |
jeremy31 | Anna_: I wish you luck but it is time for me to eat | 23:24 |
Anna_ | tomreyn: WOW how did you do that!!! are screenshots possible on instaler? | 23:25 |
tomreyn | i ran it in a VM | 23:25 |
Anna_ | thank you jeremy31 ...okay... since the cursor is not just multiplied, but not even visible, can someone choose one of these options with tab button? (by the way, the first page is ridicoulously safe) | 23:27 |
kota | join #openstack-snaps | 23:29 |
remline | Are hirsute kernels still going to be released today? cf. https://lists.ubuntu.com/archives/kernel-sru-announce/2021-May/000179.html | 23:31 |
Anna_ | I'm thinking... maybe I could click the "try" option, just to start the OS and be able to use the xrandr command and then return to install. I assume the installation can begin from the trial session? | 23:43 |
ravage | yes you can start the installation from the desktop in the live session | 23:46 |
Anna_ | Is it also logical to assume the xrandr would work during the live session? | 23:47 |
=== kostkon_ is now known as kostkon |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!