Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Is possible without any X Windows System Deps ?

Ask for help with issues regarding the Installations of the Debian O/S.
Post Reply
Message
Author
inukaze
Posts: 12
Joined: 2011-02-20 15:48

Is possible without any X Windows System Deps ?

#1 Post by inukaze »

Hi there, i am trying to install and configure "Debian 8.6" (Stable) . i just use the "NetInst" i just let activate the "main" repository .

Well i wanna install and configure the follow (without any Graphical Dependence)

SDL
OpenGL (Mesa)

Essential :
pkg-config
libgpm + gpm -> Mouse Pointer for CLI

Not in the repository :
automake v1.15
autoconf v2.69

alsa-utils : for change volume with "alsamixer"
pulseaudio : Audio System

mc -> File Browser
links2 -> Web Navegator
mplayer2 and/or vlc (+sdl and +opengl support without X System Deps) -> Multimedia Player
mutt -> email client
joe -> Text Editor
irssi -> IRC Client
mednafen -> Multi-Plataform Emulator


Not on the repository :
twin -> Text Window Manager (needs libgii + libggi)
freetalk -> Instant Messages
zgv -> Image Viewer
ragle -> RSS Client

The first steps i make :
1) Install Debian Net Install
2 ) Login user, and after use "su" command to login root and edit /etc/apt/sources.list and put the follow :

Code: Select all

deb http://ftp.us.debian.org/debian/ jessie main
deb http://security.debian.org/ jessie/updates main
deb http://ftp.us.debian.org/debian/ jessie-updates main
Save the changes and use the follow commands

Code: Select all

apt-get update													
apt-get install -y v86d sudo gpm libgpm-dev build-essential dialog git curl pkg-config joe

joe /etc/sudoers
i edit the sudoers file to add my user for administrative privilegies for install and uninstall software via apt / aptitude and edit system files

Reboot all system, login again, and for test the "v86d" enable the framebuffer i test with the command :

Code: Select all

sudo modprobe uvesafb
Now i see works, i put on the boot sequence :

First i see the Video my hardware can use, with the follow command :

Code: Select all

less /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes
i write down, the max i have 1024x768x32 Bits

Code: Select all

su														
echo -e "\nuvesafb >> /etc/initramfs-tools/modules" # Activate the Vesa Framebuffer during boot sequence

echo "\															
options uvesafb mode_option=1024x768-32 scroll=ywrap" \			 					
> /etc/modprobe.d/uvesafb.conf #Set the Resolution of Vesa Framebuffer during boot

update-initramfs -k all -u # Rebuild Initial RAM  Image with the Active Framebuffer with wanted resolution
exit
Manual Compile Software :

Code: Select all

#1) autoconf
wget http://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.gz					
tar xfvz autoconf-lastest.tar.fz										
cd autoconf*													
./configure --prefix=/usr											
make															
sudo make install													

#2) automake
wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz						
tar xfvz automake-1.15.tar.gz											
cd automake-1.15													
./configure --prefix=/usr											
make															
sudo make install
SDL Applications, on RawCLI (for call of something) , need the line
export SDL_NOMOUSE=1

i put that line on my "$HOME/.bashrc" at the end of file and save the changes
for use mednafen and mplayer2

mplayer -vo <output> "<Filename.extension>" for example :

Code: Select all

mplayer -vo sdl "Bee Gees - Spicks and Specks.mp4"
and i edit some points of mednafen config file

Code: Select all

editor $HOME/.mednafen/mednafen-09x.cfg
and set for ajust to fit with my resolution "1024x768"

i change "sound.driver alsa" to "sound.driver sdl" for better sound
i set "video.driver sdl"

and change any module configuration to fit with my resolution 1024x768


Well someone knows how install and activate OpenGL without any graphics system like : X, X11 , Xorg , XFree86, Mir, Wayland ????

i really wanna test if posible Play with OpenGL without Graphical Windows System


inukaze
Posts: 12
Joined: 2011-02-20 15:48

Re: Is possible without any X Windows System Deps ?

#3 Post by inukaze »

arochester wrote:Search
linux opengl without x
E.g. https://stackoverflow.com/questions/332 ... g-in-linux
I search, but the unique thing says its search OffScreen Mesa

And if you go to mesa, say some things about mesa and egl , but dont told you if posible to enable opengl without any dependence of X Windows System / Xorg / Mir / Wayland , because of that i ask on this forum

Post Reply