Fui: C library for interacting with the framebuffer in a TTY context
1–10 of 70 posts
Re: Fui: C library for interacting with the framebuffer in a TTY context
#2Re: Fui: C library for interacting with the framebuffer in a TTY context
#3If you're ever bored, from a TTY, type
sudo dd if=/dev/urandom of=/dev/fb0
This provides a nifty demonstration of how both the framebuffer and urandom works.
you can also take a sort of "screenshot" in a tty by typing dd if=/dev/fb0 of=./shot.fb
and then you can view it by flipping those filenames around, so that the shot.fb is now the input and /dev/fb0 is now the output.
Re: Fui: C library for interacting with the framebuffer in a TTY context
#4Don't type commands from the Internet, especially as root, especially when dd is involved. That being said, If you're ever bored, from a TTY, type sudo dd if=/dev/urandom of=/dev/fb0 This provides a nifty demonstration of how both the framebuffer and urandom works. you can also take a sort of "screenshot" in a tty by typing dd if=/dev/fb0 of=./shot.fb and then you can view it by flipping those filenames around, so th…
Re: Fui: C library for interacting with the framebuffer in a TTY context
#5Don't type commands from the Internet, especially as root, especially when dd is involved. That being said, If you're ever bored, from a TTY, type sudo dd if=/dev/urandom of=/dev/fb0 This provides a nifty demonstration of how both the framebuffer and urandom works. you can also take a sort of "screenshot" in a tty by typing dd if=/dev/fb0 of=./shot.fb and then you can view it by flipping those filenames around, so th…
Re: Fui: C library for interacting with the framebuffer in a TTY context
#6Re: Fui: C library for interacting with the framebuffer in a TTY context
#7Can someone explain what “the framebuffer” is? I’m familiar with OpenGL programming where the OS can provide a framebuffer for an application but I’m confused about whether there is a global framebuffer for the entire desktop. Is this a Linux specific concept?
Re: Fui: C library for interacting with the framebuffer in a TTY context
#8I still have not figured out how to do fullscreen graphics on my Mac.