Sponsored Content
Full Discussion: Should I learn UML 2.0?
Top Forums UNIX for Dummies Questions & Answers Should I learn UML 2.0? Post 302098133 by cbkihong on Thursday 30th of November 2006 08:24:37 PM
Old 11-30-2006
For software engineering, yes, at least most people will say yes. For software development, yes and no. To communicate with those software engineers who do use UML, yes. To use tools which require UML, yes. To make those pillow-thick specifications full of design diagrams as demanded by some large companies, yes. Otherwise, no.

But considering UML is just a way, albeit commonly agreed, to modeling, provided you can communicate your design to others, I see no reason to reject any usage of some variations of UML or even something totally different for representation.

I'm somewhat a software engineer. I have not formally learned UML (actually I have scratched the surface - that was when I was still in university some years ago) but over time I found myself not totally adhering to UML most of the time. Frankly I don't do diagrammatic modeling and design that much. Most of the time, I just build class interfaces as prototypes directly and then fill in the code without using any modeling tools (I don't have money to ever touch any of them). I may also choose to prototype in a language that I know best (that will most likely be some scripting language such as PHP or Perl), and then porting that design eventually to the platform I need to support (such as Java, or C[++]).

If one day you somehow get the chance to use some RAD toolts like Rational Rose, then UML will be a must because that's what it uses.
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Where to Learn About HP-UX

can someone give me the link to any site that deals on HP-UX system administration?? Please do not refer me to buy or borrow any books, i just need a free site to learn some quick info from (1 Reply)
Discussion started by: TRUEST
1 Replies

2. UNIX for Dummies Questions & Answers

I want to learn!

Hiya, yes im new to all of this! But want to learn how to use Unix etc, iv been thinking about doin a course but desided im better off learning by my self with help from the people who really no what there doin...you guys! I can install Linux, like redhat, mandrake, susie server edition and so... (5 Replies)
Discussion started by: epic.admin
5 Replies

3. Programming

Learn C or C++

Hi, Apologies if this question has been asked before. I would like to know which language is better to learn in terms of programming in unix? is C dying out and being replaced by C++ or is it a combination of the 2 or just mainly C? Thanks C19 (2 Replies)
Discussion started by: c19h28O2
2 Replies

4. UNIX for Advanced & Expert Users

UML on MAC OSX

Hey guyz, Is it possible to build user-mode linux kernel on MAC OSX? Please I need a reply asap as I have an assignment that I need to do. Thanks! Adel (1 Reply)
Discussion started by: aje02
1 Replies
HUMFSIFY(1)						      General Commands Manual						       HUMFSIFY(1)

NAME
humfsify -- convert a directory to the format needed by the UML humfs file system SYNOPSIS
humfsify [user] [group] [size] DESCRIPTION
This manual page documents briefly the humfsify command. This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. Instead, it has documentation in HTML format; see below. humfsify is a Perl script necessary to convert a directory to a format expected by the UML humfs file system. HISTORY
UMLFS was born with the idea to substitute the Hostfs implementation with a proper one for the UML purpose: when you manage files with Hostfs within UML you need to work with two different permission layers (the Host one and the UML one), which have different ideas of own- erships. This becomes evident when you need to create a file as a non-root user on UML: you first need to interact with the UML file system imple- mentation, and then with the host side. The result of a file creation on a mounted hostfs file system is not what you expected: you can see that the file permissions refer to the Host side user rather than the UML creator. The Host side user is to be intended as the UML instance launcher, meanwhile the UML side user is the one you used to log in the UML instance. You can encounter a more-critical problem when creating a device node, operation that usually requires root privileges: you used a common user to launch the UML and, since the operation is done on the Host, it fails, even if you logged in as root. Thus you need a set of tools which requires to bypass the Hostfs permission checks on the Host side: this is done by separating the file permissions and the ownership from the host's files. This is the concept behind the HumFs and its humfsify implementation. ARGUMENTS
user This is the user that needs to 'convert' a directory to the UML file system to use UML. This is the host user who will be using this filesystem from within UML. It may be specified as either a user name or a numeric user id. group This is the group which your UML user belongs to. This may be either a group name or a numeric group id size This is the size of the file system as seen within the UML instance. It must be expressed in Gigabytes ("G"), Megabytes ("M"), or KiloBytes ("K"). EXAMPLES
Create a directory on the host and mount it with humfsify host% mkdir your-humfs-dir host% cd humfs-dir Within this directory create a new one where you would like to have a UML-like hierarchy, i.e. you can loop-mount an UML rootfs host% mkdir dir-to-be-humsified host# mount -o loop rootfs /mnt host% cp -a /mnt dir-to-be-humsified/data host# humfsify user group 512M Then verify it on UML and mount the humfsified directory: UML# mount none /your-uml-host -t humfs -o where '/your-uml-mount-point' is the mount point on UML for the humfsified file system, and .../dir-to-be-humfsified is the humfsified directory in the example above. The '-t' mount option specifies that the file system is to be mounted as 'humfs'. SEE ALSO
The HostFs (link to URL http://user-mode-linux.sourceforge.net/new/hostfs.html) usage explanation within the User-Mode-Linux Web Site AUTHOR
humfsify was written by Jeff Dike. This manual page was written by Stefano Melchior stefano.melchior@openlabs.it for the Debian GNU/Linux system, based on material in the Official User Mode Linux Web Site. HUMFSIFY(1)
All times are GMT -4. The time now is 07:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy