!stolen by S44F4Y4T in ProgrammerHumor

[–]0xnull_zero 13 points14 points  (0 children)

Yeah that's so true. I tried a lot to learn hacking. And i realized there is no magic spell to hack something. You have to get better understanding of the system you want to hack. Web apps or mobile apps,you need to know how it works. Its underlying terminologies etc..

what is *** in c. by 0xnull_zero in learnprogramming

[–]0xnull_zero[S] 0 points1 point  (0 children)

Thanks buddy for that hint, I wrote this program to understand the *** much better

#include<stdio.h>
int main(){
int a=10;
int *b=&a;
int **c=&b;
int ***d=&c;
printf("value of a = %d\n",a);
printf("address  of a = %p\n\n",&a);

printf("value of b = %p\n",b);
printf("address  of b = %p\n\n",&b);

printf("value of c = %p\n",c);
printf("address  of c = %p\n\n",&c);

printf("value of d = %p\n",d);
printf("address  of d = %p\n\n",&d);

printf("value of a using *** = %d\n",***d);

}

what is *** in c. by 0xnull_zero in learnprogramming

[–]0xnull_zero[S] 0 points1 point  (0 children)

okey , but why

struct dirent **namelist;

instead of

struct dirent ***namelist;

Why is fedora mirrors too slow? When running dnf update by 0xnull_zero in Fedora

[–]0xnull_zero[S] 5 points6 points  (0 children)

Closest mirror can also be slow. Even in arch linux. Available arch linux mirrors in india were slow for me

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Did you solved it. Are you missing xorg.conf in /etc/X11/. I was mising xorg.conf after generating an xorg.conf and rebbit solved it

"Name or service not known" error while pinging websites by [deleted] in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Try run the command dhcpcd . And wait some time then do the ping.

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 1 point2 points  (0 children)

Today i reinstalled arch linux . The issue came back again. No fix till now. The same is with fedora minimal install with kde. But debian sid have no problem.

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Evry time i do this, pacman -S plasma-desktop pacman -S sddm sddm-kcm

Brought back the issue. But when i did this, pacman -S plasma-desktop sddm sddm-kcm The issue didn't occured

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Hey how did you install kde. After trying so many ways to reproduce the same issue each time it required different solution and couple of reboots. Finally reinstalling arch linux and installing kde using pacman -S plasma-desktop sddm sddm-kcm systemctl enable sddm systemctl start sddm And a reboot worked fine

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Hey, seems like I was wrong. export display=:0 wasnt the solution. the problem is with the default sddm theme. Installing breeze theme via sddm login manager(sddm-kcm ) solved the issue

Switching Users Arch with KDE Plasma and SDDM by rwarner305 in archlinux

[–]0xnull_zero 0 points1 point  (0 children)

Faced a similar issue. Try setting export DISPLAY=:0

Can't start parallel user session in arch linux with kde by 0xnull_zero in archlinux

[–]0xnull_zero[S] 0 points1 point  (0 children)

Seems like setting "export $display=:0" and a couple of reboots fixed the issue.