Sponsored Content
Full Discussion: UNIX without GUI
Top Forums UNIX for Dummies Questions & Answers UNIX without GUI Post 302761809 by Omar_M on Sunday 27th of January 2013 05:07:52 AM
Old 01-27-2013
Quote:
Originally Posted by jlliagre
What do you want to do with these OSes ?
Dear jilliagre,

I will explain the whole situation. I am working on windows 7 and i have installed VMware on it. I want to create 2 virtual machines running Unix (solaris). First i want to download the setup file for Unix but without GUI as i explained above but i could not find a link for this download. After that, i want to connect these two machine together so i can transfer files between them using FTP. i will write a script to do the transfer automatically. So if you please could you provide a link for downloading Unix Solaris without GUI (.iso) and the steps for doing such connection.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

GUI on UNIX

Dear friends; I have Hp9000 series of Unix servers with s800 11.0 range Can i make it GUI? I heard that if you have xinit installed on the servers you can make the servers Graphical User Interface. Is it possible to make this possible? Plz. help me out... Thanx in advance... (6 Replies)
Discussion started by: nileshjoshi
6 Replies

2. UNIX Desktop Questions & Answers

Unix GUI rendering

Does anyone know why Fonts and most Graphics in KDE and Gnome are rendered rather badly. There are some text editors in KDE where the font is just horrible as far as legible. Any links or knowledge on this topic would be grealy appreciated. A Huge Unix/Linux Fan Gregg (2 Replies)
Discussion started by: gdboling
2 Replies

3. UNIX for Advanced & Expert Users

Rp-7410 + Unix 11.0i + Gui(oracle)

I am running the above compination ..my server is HP rp7410 my operating system Unix 11.0I and my DB oracle.. my problem i cant print through GUI or any application only i can print through command line and text only ... where my problem to not print graphics is thier special config ot... (1 Reply)
Discussion started by: khalid99
1 Replies

4. UNIX Desktop Questions & Answers

GUI for UNIX

Help a newbie! Just wodnering if there is an application (emulator, etc...) that will be able to read UNIX commands and bring back responses on the screen in Windows-like environment. I am looking for an app that will reside on a workstation (PC) and will querry the AIX server. If anyone can help,... (1 Reply)
Discussion started by: leok
1 Replies

5. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

6. Solaris

Unix autostart in GUI mode

hi, i'm a newbie in UNIX. i have a disk crash and re-install the unix. But the new installation does not boot the server automatically. Then i set the auto-boot to true, and it's ok. But now the system is booting in text mode. Before this, when i type boot, the system is booting in GUI mode.... (2 Replies)
Discussion started by: lwll
2 Replies

7. UNIX for Dummies Questions & Answers

GUI For UNIX

I have used FreeBSD for sometime now and i find it great lest its ACPI support My Question is for a recent laptop AMD TURION X2 2GHZ TL-60 Tyler 3GB RAM 8400M G Are there any other GUIs that is great with these specs I have been using GNOME lite I hate KDE because of the K What will i lose... (1 Reply)
Discussion started by: weinter
1 Replies

8. Shell Programming and Scripting

GUI for Unix

Hey guys Do u guyz have any idea how to create a simple GUI for unix/awk/ scripts along with facilities of input files and output files. I'm using new Macbook 10.6 macosx. I tried Xcode3(basically c++ based aslo can use python n ruby n bash) by importing shell scripts to it and connecting... (2 Replies)
Discussion started by: repinementer
2 Replies

9. UNIX for Advanced & Expert Users

UNIX with GUI

Dear Experts, My application is running on linux, which makes me connect to lot of different servers manually through putty, and execute the commands. Is there a way, i can create a GUI, or something, where click on few buttons can be translated in to predefined commands at BE and i need... (2 Replies)
Discussion started by: Prateek007
2 Replies

10. Programming

Python gui or C++ gui or java gui?

python gui or c++ gui or java gui? and when to use etch one? (1 Reply)
Discussion started by: kaja
1 Replies
SQUEAK(1)																 SQUEAK(1)

NAME
squeak - Unix Squeak virtual machine launcher SYNOPSIS
squeak squeak [image filename] [project filename] DESCRIPTION
squeak is the virtual machine for the Squeak Smalltalk system. It requires three files to operate correctly: an image file containing a `snapshot' of a live Squeak session, a changes file containing the source code for modified methods in the image, and a copy of (or a link to) a shared system sources file containing the source code for methods that have not been modified since the last major version increment. The image and changes files contain the state of a user's Squeak session, which is persistent between consecutive sessions. Private copies of these files are therefore normally required. The squeak script checks that the local Squeak installation appears sane, and then copies the required files to the current working directory. If squeak encounters no problems, it will finish by running squeak vm to start a Squeak session using the newly copied image and changes files. INVOCATION
squeak accepts an optional image name, and/or an optional project name. If an image name is given on the command line then squeak tries to run that image. Otherwise squeak checks the environment variable SQUEAK_IMAGE and, if it is set, uses its value as the name of the image to run. Otherwise squeak looks for available images in the ~/squeak and /usr/share/squeak directories. Then, squeak shows a dialog with all the available images for the user to choose one of them. If the chosen image is at SQUEAK_IMAGE_DIR (which is by default /usr/share/squeak), it will be copied to ~/squeak. If only one image is available, no dialog will be shown and the script will run that image. The image argument can be followed by a project name. This is the name of a 'document' that should have been saved from a Squeak image. The project name must have the '.pr' extension. The project argument can also be providen without an image name. In that case, squeak will look for an image to run the project following the same criteria explained above. ENVIRONMENT
To know all the environment variables that can affect the squeak image launching, take a look at the Environment section of the squeakvm man page. Appart from those options, these are applied to this script: SQUEAK_IMAGE_DIR is the directory, together with ~/squeak where the launcher looks for Squeak images. (The default value is /usr/share/squeak) SQUEAK_IMAGE is the name of a image file to be run by the script. SQUEAK is the name of an alternative vm (or alternative vm options) to be run by the script. The script launches the vm with these default options: '-mmap 1024M -nomixer' NOTES
This manual page documents version [version] of Unix Squeak. It may not be appropriate for any other version. The image and changes files containing a saved Squeak session are intimately related. They should always be used together, never be sepa- rated, and under no circumstances should an image be run with a changes file that has been used with a different image. Failure to adhere to the above could cause the source code for the methods in the image to become garbled and impossible to retrieve. The Unix Squeak virtual machine fully supports OpenGL in both the X11 and Quartz display drivers. Open Croquet will run just fine with either of these drivers (and many Mac OS X users will even have the choice of which driver to use :). Because of licensing issues, a Squeak image or Squeak sources package is not available in Debian yet. So the user must download a proper image in order to get this script useful. Available images can be found in these web sites: The official Squeak home page: http://squeak.org The SqueakLand (international educational oriented) world: http://www.squeakland.org The spanish educative oriented Squeak page: http://squeak.educarex.es/ AUTHOR
This manual page was written by Jose L. Redrejo for the Debian project SEE ALSO
squeakvm(1). SQUEAK(1)
All times are GMT -4. The time now is 05:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy