[00:01] ah, you mean sudo apt clean... I think that's not bad; it just deletes the packages you downloaded, but does not uninstall them; just deletes the "installers" [00:02] Home User only returns bash: root [00:03] I am working off the installer system [00:05] Can't login, get black screen the fresh login, a loop [00:05] can you login on the tty? [00:06] Ctrl-Alt-F1 [00:06] tried renaming ICEauthority and Xauthority but still get same result. [00:06] I'll get that as a yes [00:07] maybe this command will give you insight about possible sudo-related messes: [00:07] cannot login tty on installation system, tried and does not recognize username [00:07] find "$HOME" \! -user "$USER" [00:07] ah... [00:07] oh so you're on a live CD or something? [00:08] i would have to reboot the pc to get back to using my user domain [00:09] yes [00:09] Found it is easier to move around the directory finding files [00:14] ok so just replace "$HOME" and "$USER" with the appropriate values [00:15] I am on a live cd but I have xubuntu dual boot with win10 on HD. I am using CD to troubleshoot [00:15] `ls -l` on a partition of an installed OS still shows the owner as specified in the installed OS, not a different one from the live CD, right? (not sure about this) [00:16] anyway. If it does, I guess you can still use `find` to find which files in your home directory are not owned by yourself [00:17] correct ls -l came back with HD cirectory [00:18] then I guess you can do something like find /media/the_partition_where_linux_is_installed/home/subuntu89w \! -user xubuntu89w [00:20] and that'll show you the files that a misuse of sudo might have disowned [00:20] (typically .Xauthority and .ICEauthority, but I'm not sure if there are more) [00:21] find /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/ \! -user g81221 [returned] find: ‘g81221’ is not the name of a known user [00:21] damn [00:21] I ahve bash history [00:22] is [drive]/g81221 the right path? doesn't it have /home in it? (separate /home partition, I guess?) [00:23] anyway, do ls -l /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/ to figure out the user name [00:23] or at least its numeric ID [00:23] and use that numeric ID instead of the user name [00:23] on HD g81221 is the username [00:24] org81220 [00:24] (obviously, your live OS can't translate a numeric user ID to the name of the installed OS or vice versa; I didn't think of it) [00:26] so if you do ls -l /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/ you'll get something like [00:27] drwxrwxrwx 1 1234 5678 0 jan 1 10:10 Some_file.txt [00:27] where 1234 is the numeric ID of the owner, and 5678 is the numeric ID of the group [00:28] yes, a list of the directory [00:28] with that you can figure out the numeric ID of user g81220 [00:28] so you can use that number instead of "g81220" [00:29] because your live OS doesn't know who's this "g81220"; it only sees files with numeric owner IDs [00:29] (I bet it'll be 1000) [00:30] okay, looking at list I get this for each item in directory "drwxr-xr-x 2 1002 1002 4096 Dec 31 11:58 Desktop" [00:30] is the 1002 1002 4096 what you are saying? [00:30] so the owner is 1002 [00:31] okay [00:31] and the group is 1002 as well (makes sense) [00:31] so instead of -user g81220 try with -user 1002 [00:32] (4096 is the size, I think) [00:32] okay, got two .key files that came up [00:32] I have no idea what those are [00:33] winehq.key, Release.key [00:33] but you can see who they belong to if you do find /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/ \! -user 1002 -exec ls -l {} + [00:35] putting filename in {}? [00:35] hm, .key files seem to be something related to installed packages https://askubuntu.com/questions/993599/is-it-safe-to-remove-release-key-file and thus not a problem [00:35] xubuntu89w, no, just {} [00:36] that command means "find all files in whose owner is not 1002 and then execute `ls -l {}` substituting {} with the list of files" [00:36] (the + at the end is important) [00:36] -rw-rw-r-- 1 root root 3122 Mar 28 2017 /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/Release.key [00:36] -rw-rw-r-- 1 root root 3220 Dec 19 14:07 /media/xubuntu/0c84150b-710a-4867-a5c7-2065378a3ab8/g81220/winehq.key [00:37] this is the return [00:37] well, if those are the only two files I don't think that should cause any trouble [00:38] https://askubuntu.com/questions/993599/is-it-safe-to-remove-release-key-file suggests those files can be deleted, anyway [00:38] I recognized the winehq when it showed up installing winehq. The Release.key I really don't know when it came aboard [00:38] but anyway, I don't know how else to fix the problem, sorry :( [00:38] ...maybe try booting with an older kernel [00:39] The restarting X by reanming the two files is and old trick I read about last year. GridCube borught that one up. I reember it worked for some but not others. [00:40] I looked for the upgrade that started with TZ but didn't find. [00:40] I've seen that happen a lot; it's what happens when you use `sudo` with something related with the graphic environment when you shouldn't [00:41] That was labeled a security update with ! added [00:41] the .Xauthority thing I mean [00:41] right [00:42] can you login on the tty on your computer, or have you not tried that? [00:42] I am still thinking it has somethign to do with the upgrade. [00:42] I can try again [00:42] stan by [00:42] (just if you've tried; I know it'll make you reboot and that's annoying) [00:42] you could use a phone or something for IRC while playing with the PC [00:44] nogo on login unless you know how to get the live cd login and pwd [00:45] don't have a phone to use [00:45] ah no, I meant on the installed OS, not on the live CD [00:45] yes, can login when on system [00:46] just don't have internet capablility [00:47] stuck with getting commands , writing them down, logging off, testing command, and logging off then back on LIVE to find further solutions [00:48] PITA [00:48] well, if you can log in on the tty, that means your user hasn't died. You could try running `startx` from there and see if that works (opens a session for your user) or if it throws an error (which you could write down) [00:49] you can install irssi as a command-line IRC client, and links2 or elinks or w3m as command-line web browsers [00:50] I'll try anything, just recently completed a clean install and goteverything up and running. Another PITA, Had planned on creating IMAGE this weekend., Now this [00:50] have tty1 for irssi, tty2 for the browser, and tty3 for commands [00:51] anyway, gotta go; the command I'd suggest you to try from the tty is startx (without sudo) and write down any error message you may get [00:52] alternatively, it's possible that dmesg gives you more info on what could go wrong [00:52] also, if you don't find help here, consider trying ##linux [00:52] (I don't think your problem is xubuntu-specific) [00:52] Thanks Much [00:53] you're welcome! :) [00:53] Okay, I'll put it on aboard somewher when or if I find a solution [00:53] Have good night [00:53] (and remember, you can use IRC and Internet from tty if you install irssi or one of the browsers I suggested) [00:54] (also gdm for a mouse pointer on the tty, which works for some applications) [00:55] sorry, gpm, not gdm [00:56] I'll lookup tty commands so I can have those up and running [00:56] not familiar with the process [00:59] `sudo apt install irssi` for installing irssi [01:01] TL;DR: (1) Ctrl-Alt-F1 to go to tty1, (or F2-F6 for tty2 to tty6), (2) login, (3) sudo apt install irssi to install irssi (for example), (4) startx to start an X session with your user, (5) Ctrl-Alt-F7 (or F8 etc) to go to the first (or second etc) graphical session [01:02] ok, time to sleep, bye! Good luck :) [01:49] What could have caused for my machine to not shutdown completely? [01:50] Fans keep spinning and power indicator led blinking [01:55] hi === brainwash_ is now known as brainwash [13:07] howdy [16:43] hello [16:44] hello [16:44] installing xubuntu sd card :D (hdd is dead) [16:44] nice :) [16:45] xhamster62: Just be careful with logs [16:47] Does my ip address appear [16:48] good evening everyone [16:48] good evening everyone [17:18] Are SD cards tolerable? [17:19] I'd imagine everything would be slower [17:24] they are, and as a data point, all the raspberry pis run their OS off of SD cards [17:25] biggest problem is that the read/writes life span is more limited than traditional harddrives, hence gnrp's warning about logs (and other things that do a lot of writes) [17:28] isnt it like 10trillion writes or something now? [17:31] something like that :) just something to be aware of if you use rando SD card that came with your camera 8 years ago, or a cheap one [17:32] I use the SanDisk ones in my RP [17:36] sandisk are supposedly the best but after writing just once, it went bust [17:36] (mine did), it was ebay bought though, so could be that [17:38] anyway, good day yall [19:48] Hey dunno if this really is a support type of question but you see I saved an old core2duo iMac from being recycled because hey free computer i could maybe try linux on. At the moment I'm trying xubuntu obviously because I saw it takes less system power since this is old. Anyway, I tried getting drivers for the old video card in this thing but the ones on the site say it isn't supported by whatever new thing this [19:48] version of xubuntu this has. Am I only going to be able to use the default graphics drivers [19:48] I mean it does work [19:49] but I'm seeing if I can get it any better [19:49] if it helps it's an old ati radeon 2400xt [19:51] Also just seeing what other kind of optimizations I can do [19:51] ? [19:52] no other driver supports your gpu [19:52] pre-AMD Radeons just use the xserver-xorg-video-radeon driver [19:52] alright no biggie just was curious [19:53] There anything else I could do to get the most out of this [19:53] I mean I'm not that familiar with macs to be honest [19:53] i was just saving a perfectly good old system from destruction [19:53] Mac people can be so wasteful [19:53] switching to a cheap SSD would give the most performance gain [19:54] Even if it's just small tweaking because I didn't know of a setting [19:54] I would have to look up how to even open this thing [19:54] it's one of those that has everything shoved into the monitor [19:55] maybe turning off the builtin compositor will have a positive effect (xfce settings > window manager tweaks) [19:55] but SSD I was thinking of getting for my main compy that's still using windows 7, but stuff like this is helping me transition to possibly having to go to linux [19:55] but hmm let me look at that [19:55] however, what is the use case? [19:56] you mean what am i going to use it for? honestly I have no idea right now it's messing with linux [19:56] lol [19:56] web browsing is pretty heavy nowadays [19:57] but for a normal use? I may use it as maybe a server or something eventually [19:57] well one thing that's lessened my load on web browsing is just blocking the ads [19:57] that along gets rid of a signifigant portion of where the performance screws up [19:57] firefox and chrome can be very demanding [19:58] It's possible some of the earlier fglrx drivers might work, but it would be hit or miss [19:58] and that's something you cannot fix with "tweaking" [19:58] I think this has like 4 gigs of ram which is alright [19:58] but yeah just exploring my options here seeing what can be done [19:58] im not trying to run crysis on it [19:59] (or whatever the joke is now) [19:59] watching a stream on twitch.tv I guess :D [19:59] my old main machine is better though it's old too [19:59] 2500k, 8 gig (wanna possibly go to 16) and a 770 nvidia card [19:59] but i just use 7 [19:59] on that [20:00] that's a beast compared to the apple device [20:00] it was free so im not complaining [20:00] help the world have less waste [20:00] :) [20:01] ive played with linux virtual machines on it and i think a livecd or 2 [20:01] but yeah here got xubuntu and el cap osx [20:01] Macs are weird [20:02] heh, yes [20:03] but yeah it's for improving my linux experience, i mean i had some but not on a daily basis [20:03] eventually i have to move from win7 but 10 is so... so bad [20:03] my god how bad [20:04] so this is really the only option ive seen recently more improvements done on the games area [20:04] Valve Proton [22:01] would xubuntu 1804 fit in 6.5GB / [22:02] nope [22:03] is it a swap file? [22:03] ? [22:04] i wonder what's taking the space [23:21] howdy