educational objectives scholarships employment computer requirements
 
Flash Menu
home
department
overview
facilities/computing
tour
organizations
help desk
employment
 
 
 
 
intranet
contact
 
 
Search
ECE Help Desk

For new ECE students, please refer to the following document that gives an introduction to the ECE network.
ECE Student Accounts and Network Resources

Account Maintenance

  1. How can I compress data in my ECE home directory to increase my storage space?
  2. How do I change the password for my ECE account?
  3. How do I FTP into my account?
  4. How do I set up a web page?
  5. What will happen to my ECE account when I am no longer enrolled in the ECE department?

Mail

  1. How do I access my ECE email account?
  2. How do I access my ECE email account from MSU's Webmail?
  3. How do configure a POP3 or IMAP program to check my email remotely?
  4. How do I forward my email to another account?
  5. How do I set my email to automatically reply when I'am away?
  6. How do I filter/organize my emails?
  7. How do I filter spam or unwanted emails?

Networking

  1. Which machines can I access in the ECE department through the "firewall?"
  2. How can I access the wireless network in Simrall Hall?
  3. Why can I not access ECE resources from the wireless network?

Printers

  1. Where can I get paper for the ECE printers?
  2. The printer says it has a MIO Error. How do I correct this?
  3. The printer says Processing Data and doesn't do anything. What's it doing?
  4. The printer says it is ready but doesn't print anything. How can I make it print?
  5. How do I cancel a print job?

Print Quotas

  1. How do I tell how many pages I've printed this month?
  2. How can I get my quota increased?
  3. How can I print more efficently?
  4. If I have pages available in my quota at the end of the month, do they roll over to the next month?

Problems/Questions

  1. I have a question or problem about the computer that I bought for the new computer initiative?
  2. I have a question about the ECE computers, or facilities, and I can't find the answer.
  3. I have a question about other MSU computers or facilities, and I can't find the answer.

Unix Commands

  1. How do I telnet or ssh to an ECE server?
  2. How do I use the tar command?
  3. How do I print a text file in two columns?

Windows Related Questions

  1. How do I configure XWin32 to open a Xterm from yavin?
  2. How do I save a file to PDF format in the PC lab?
  3. How do I print a postscript file from my PC?
  4. How do I capture a screen or window in Microsoft Windows?
  5. How do I map a drive to ECE network drives on my personal computer?
  6. How do I print to an ECE printer from my personal computer?

--------------------------------------------------------------------------------

Which machines can I access in the ECE department through the "firewall?"

Here is a list of services that will be available to students:

SSH yavin.ece.msstate.edu
SCP/SFTP yavin.ece.msstate.edu
HTTP www.ece.msstate.edu
POP3 mailhost.ece.msstate.edu
IMAP mailhost.ece.msstate.edu


For remote access, the best way to access the machines is obviously through SSH. Here is a list of SSH clients you can get for your PC/workstation.


Linux/Unix
OpenSSH
SSH Communications Security


Windows
PuTTY
TTSSH
MindTerm
SecureCRT

back to top

--------------------------------------------------------------------------------

How can I access the wireless network in Simrall Hall?

The wireless network in Simrall Hall is part of the University's wireless network. Attaching to the wireless network is as easy as plugging in a 802.11b compatible wireless card and opening a web browser. The browser will open a page that contains instructions on how to install a VPN client. Follow the onscreen instructions to install the client. The VPN client will have to be started each time access to the wireless network is needed.

If the University web page doesn't appear after plugging in the wireless card, then the SID may need to be set. Each card is configured differently, so refer to the card's instruction manual. The SID needs to be set to "msstate.edu".

back to top

--------------------------------------------------------------------------------

Why can I not access ECE resources from the wireless network?

The ECE department's wireless network is actually part the University's wireless network. Therefore when a computer attaches to the wireless network, it will actually get an IP address that is not in the ECE network address range. Because of this, the computer will not be able to access some ECE resources due to ECE's network filters.

To access SAMBA resources from the wireless network, use the fully qualified name to the SAMBA server. For example, normally the home drive can be accessed by mapping a drive to \\samba\unixhome. To access the same resource from the wireless network, use \\samba.ece.msstate.edu\unixhome.

back to top

--------------------------------------------------------------------------------

How can I compress data in my ECE Home Directory to increase my storage space?

The simplest method of compressing large amounts of data is with what is called tar/gz compression. This requires combining all of the files into 1 large TAR file, and then compressing the TAR file into a TGZ or a TAR.GZ file. Here's some instructions: (These instructions assume you want to compress a directory and all of it's contents)

  1. Login to your ECE account.
  2. Find the directory you wish to compress.
  3. Enter the command 'tar -cvf filename.tar directory', replacing filename.tar with the name of the destination tar file, and directory with the name of the directory you want to compress.
  4. It should print up a list of all the files in that directory, along with their size as it places them into the TAR file. The files will remain there, however. You will have to manually delete them with 'rm -r directory' if you want to free up the space.
  5. Now, you must compress the large file. Do this by executing 'gzip filename.tar'. This converts the tar into a tar.gz file, while significantly reducing it's size.
  6. That's it!

If you want to only compress one file, then you can simply execute 'gzip filename'. This will add a .gz at the end of the file, and compress it.

Now, for uncompressing the data. If you're storing this, then probably, you one day will want it back. And here's how.

  1. Find the GZ or TAR.GZ file.
  2. Execute 'gunzip filename'. That will strip the gz extension off the file, and expand it to it's original size. NOTE: Be sure you have enough space to hold the file, or it may not work.
  3. Now, if the file doesn't have a TAR extension, then you're probably done. If it has a tar extension, then you'll need to execute 'tar -xvf filename.tar'. This will expand the tar file, and the entire directory structure it contains into the current directory. Once it is done, the TAR file will remain, so you will have to manually delete it if you want to with 'rm filename.tar'.

And that's everything you need to know about compression/uncompression. If you have any questions or comments, feel free to send them to ECE Admin .

back to top

--------------------------------------------------------------------------------

How do I change the password for my ECE account?

You have two options to change your password.

  • Use a web browser and go to: https://www.ece.msstate.edu/int/tools/passwd.php
  • Log into any Windows PC that is a part of the ECE Domain. All computer lab PCs are part of the Domain. After you are logged in, press Ctrl-Alt-Delete and click the "Change Password" button. You will be prompted to enter your old password and a new password. Be sure to press tab when moving between fields. If you enter your old password and press ENTER, your password with be changed to a blank password.

back to top

--------------------------------------------------------------------------------

How do I SCP or SFTP into my account?

To SCP or SFTP into your account, you first need a client program. Currently, the best for secured copying is winscp. *nix users already have an SCP and SFTP program. The only server that responds to SCP or SFTP from outside the department is yavin, so make sure you connect to yavin.ece.msstate.edu, and log in with your usual login name and password. From here, you'll need to consult the documentation for your specific program on how to upload/download.

back to top

--------------------------------------------------------------------------------

How do I setup a web page?

Setting up a web page is easy to do.

  1. First, ssh into your ECE account.
  2. Your home directory has to has execute rights so that the web server can get into your home directory. There isn't any need for everyone to have read access. Execute the following command to set the permissions: chmod 711 /home/YourLoginName
  3. Once in, see if you have a 'public_html' directory (execute 'ls>' and see if it's listed).
    • If one exists, then good.
    • If it doesn't, then execute 'mkdir public_html'.
  4. Now execute the command 'chmod 755 public_html'. This is important, or otherwise no one will be able to access the page.
  5. Once this is done, you can simply put your documents inside that directory using SCP or SFTP. Every document that you put online needs to be "world readable". If you don't know what this means, then just simply execute 'chmod 644 filename' on every file you upload the first time.

Once you have made an index.html file, you will be able to access your new page page by going to:

http://www.ece.msstate.edu/~YourLoginName
Be sure to replace YourLoginName appropriately.

If you have a question regarding HTML design or content, check out the W3C web page.

back to top

--------------------------------------------------------------------------------

What will happen to my ECE account when I am no longer enrolled in the ECE department?

Two weeks into the semester in which you are not enrolled in any classes in ECE, your account is placed in "Expired" status. In this state, you will no longer be able to log into any computer in the ECE department, nor will you be able to SSH into your account. You can, however, SCP or SFTP into your account to download any remaining files you still need. When expired, all the contents of your home directory are compressed into a single tar.gz file to save space. After you download this file, you can then extract any or all of your files.

An expired account will still continue to receive email, but because you can no longer log into any services other than to transfer files, you will need to forward all your mail to another account. Please read how to forward your ECE email for details.

Your account will remain in this state for one full semester after you graduate. At the beginning of the next semester, your account will be deleted. So please make sure you get everything important from your account before this happens!

back to top

--------------------------------------------------------------------------------

How do I access my ECE email account?

ECE's Webmail account can be found at: http://webmail.ece.msstate.edu/

You can use any email client that supports POP or IMAP protocols like Outlook Express, Thunderbird, Eudora, etc. You can read here on configuring your email client. You can also access access your email through the unix command line utility called pine.

back to top

--------------------------------------------------------------------------------

How do I access my ECE email account from MSU's Webmail?

MSU's Webmail email access gateway can be found at: http://webmail.msstate.edu/
There is a field on the login page called Server. Clicking the drop down box for the Server field will display a list of mail servers. Select the ece.msstate.edu server and enter your ECE user ID and password.

Please note that when using the ECE mail server, you have to use your ECE ID and password and not the MSU email account login ID and password.

back to top

--------------------------------------------------------------------------------

How do I configure a POP3 or IMAP program to my email remotely?

First decide which protocol you would like to use: POP3 or IMAP.

POP3 is used to download your email from your ECE account to your local mail spool. This is great for individuals who like to download their email and read it offline. There are, usually, options to configure POP3 to leave a copy of each email on the server as well. Consult your application's documentation for help on this.

IMAP is used to access your email messages on the server. All of your messages remain on the server and can thus be accessed from multiple sites.

To configure a program like Netscape Messenger or Outlook Express, set your incoming mail server to mailhost.ece.msstate.edu. Your outgoing mail server will be the SMTP server of your ISP.

Common SMTP servers:

Network SMTP Server
ECE Network mailhost.ece.msstate.edu
MSU Network mail.msstate.edu
Netdoor mail.netdoor.com
Bellsouth mail.bellsouth.net

Please note that the SMTP server mailhost.ece.msstate.edu cannot be used as an SMTP server for anyone not on the ECE network.

If you use IMAP, clear the field that asks for your home folder to download any folders you may have created in your mail directory. This option is usually found in the IMAP server settings of your email client. Please consult your email client's documentation for more information.

back to top

--------------------------------------------------------------------------------

How do I forward my email to another account?

Please identify the following steps:

  • You need to login to your ECE's Webmail account at http://webmail.ece.msstate.edu/.
  • Click on the User Options button (located above the Logout button) to see a page with tabs named 'General', 'Mail', 'Address Book', etc.
  • Click on the 'Mail' tab.
  • Scroll down and add the complete forwarding address to the Address to forward mail to field. Only one email address is supported at this time.
  • If you want to automatically delete the mail from your ECE account, enable Don't keep a local copy of messages.
  • Click Save.

back to top

--------------------------------------------------------------------------------

How do I set my email to automatically reply when I am away?

Please identify the following steps:

  • You need to login to your ECE's Webmail account at http://webmail.ece.msstate.edu/.
  • Click on the User Options button (located above the Logout button) to see a page with tabs named 'General', 'Mail', 'Address Book', etc.
  • Click on the 'Mail' tab and scroll down to the section that asks for Away message.
  • You need to check the box that says Away message Enabled
  • Type in your away message in the textarea provided.
  • When you want to remove the away message, just uncheck the Away message Enabled check box.
  • Click Save.

back to top

--------------------------------------------------------------------------------

How do I filter/organize my emails?

Please identify the following steps:

  • You need to login to your ECE's Webmail account at http://webmail.ece.msstate.edu/.
  • Click on the User Options button (located above the Logout button) to see a page with tabs named 'General', 'Mail', 'Mail Filters', etc.
  • Click on the button that says 'New Filter'.
  • This will bring a dialog box where you can create your filter rule.
  • When an incoming mail message matches the conditions of a filter rule, the corresponding actions associated with that rules are applied.
  • After creating any rule if you decide not use it any more, you can disable it by unchecking the 'Active' check box that appears in the 'Edit Filter' dialog box.
  • Click Save.

You can also set up filters directly from an email.

  • Logon at http://webmail.ece.msstate.edu/.
  • Open an email that you would like to apply a filter to.
  • Towards the top of the main pane will be a box with all the emails associated with a conversation.
  • Right-click on an email and select "New Filter"

Please read how to filter spam or unsolicited email if you looking to tackle unwanted emails.

back to top

--------------------------------------------------------------------------------

How do I filter spam or unsolicited emails?

Please identify the following steps:

  • You need to login to your ECE's Webmail account at http://webmail.ece.msstate.edu/.
  • Select the message that you think is spam and click Junk on the toolbar. This action will move the message to your Junk folder and train the spam filter.
  • The contents of the Junk folder are NOT automatically purged, so may want to clean it frequently.
More information on SPAM filters is available here.

back to top

--------------------------------------------------------------------------------

Where can I get paper for the ECE printers?

Students can get paper for the ECE printers by going to room 216 of Simrall Hall and asking the secretaries for a pack of paper. They will be more than happy to get a ream that can be used in the ECE printers.

If you need to print at other times during the week, and the printers are out of paper, you will need to go to the Library or Butler Hall to print.

back to top

--------------------------------------------------------------------------------

The printer says it has a MIO Error. How do I correct this?

This error usually occurs when the printer is in the middle of a print job and jams. If the jam is not cleared within a set time limit, the print server will remove the job from the queue. Once the jam is finally cleared, the printer expects the same job to be resent. Since the job has already been removed, the printer reports an error.

This is not a critical error and can easily be fixed. Depending on the printer you are at, press the Select or Go button until the error clears. You may have to press it more than once. Also, make sure the printer is online after clearing the error. If not, press the online button to return it to an online state.

If you continue to have problems, please see the network administrator in room 139 of Simrall Hall.

back to top

--------------------------------------------------------------------------------

The printer says Processing Data and doesn't do anything. What's it doing?

The printers occasionally get in a state to where they stop responding to the print server. If the printer ONLY has Processing Data on the LCD screen and doesn't start printing within 30 seconds, then it is more than likely hung. Turning the printer off and back on will clear this error.

back to top

--------------------------------------------------------------------------------

The printer says it is ready but doesn't print anything. How can I make it print?

If the printer has Ready on the LCD screen and is not processing print jobs, then the print server has become hung for this printer. Unfortunately, there isn't much that can be done to clear this. If you know who sent the print job at the top of the queue, then they can cancel their job and the print server will usually start printing. Otherwise, print jobs will automatically be purged from the print queue between an hour and an hour and a half after they are submitted.

For the quickest resolution, please see the network administrator in room 139 of Simrall Hall.

back to top

--------------------------------------------------------------------------------

How do I cancel a print job?

In Unix, the cancel utility cancels print requests. Users can only cancel print requests associated with their username. By default, users can only cancel print requests on the host from which the print request was submitted.

  1. First, find the print job ID. This can be accomplished by typing lpstat -d printername. Look through the list until the print job is found. The job ID is in the form printername-number.
  2. As the destination or the printer name to which you submitted your request is known

cancel jobID - cancels your print requests to this printer

If you are printing through Windows, then there are two ways to cancel.

  1. You could open up a terminal and issue the above cancel command or,
  2. Double click on the small print icon that appears in the system tray to see a list of all your current print jobs. Right click the one you want to cancel and select Cancel in the context menu that appears.

For the quickest resolution, please see the network administrator in room 139 of Simrall Hall.

back to top


--------------------------------------------------------------------------------

How do I tell how many pages I've printed this month?

You will have to log on to your INTRANET page with your ECE login and password to see your quota information. This counter is updated automatically after each print job. You can also view the maximum number of pages that you are allowed to print for the month. These quotas are flushed at the beginning of every month, so you have a new cycle of print quota each month.

back to top

--------------------------------------------------------------------------------

How can I get my quota increased?

The only students eligible to have their quotas modified are RAs, TAs, and student workers. If you are an RA or TA who needs a quota increase, please see your major professor. Student workers will need to see their supervisor. Unfortunately, quota increases will not be accepted for any other reason.

back to top

--------------------------------------------------------------------------------

How can I print more efficently?

This section is required because, unfortunately, there are no duplex printers in our department to be used by students. So we offer the following tips to print efficiently.

  • Avoid printing web pages directly. Instead copy the text into Microsoft Word or any other text processing software and adjust the spacing and font in a way to minimize the total number of pages.
  • To print a text file in two columns try using

    cat filename.txt | enscript -2r -o - | lp -d printername See this section for more information

  • If you are printing a Microsoft PowerPoint file, then in the "Print What" section of the print dialog box, select "Handouts (6 per page)" option. You may consider checking the "Pure Black & White" checkbox as saves ink by not printing the background color of the slides.
  • Whenever possible, use the Library or Butler Hall to print.

    back to top

--------------------------------------------------------------------------------

If I have pages available in my quota at the end of the month, do they roll over to the next month?

Yes. Your quota rolls over every month each semester. At the begin of a new semester it is reset to the defaults i.e., 50 pages for undergraduate students and 100 for graduates.

back to top

--------------------------------------------------------------------------------

I have a question or problem about the computer that I bought for the new computer initiative?

If you have a problem with your personal computer, then you have several options:

  1. A majority of problems with personal laptops are caused by viruses and/or adware that has found its way onto the PC. Make sure that you have antivirus software and adware removal software installed.

    Antivirus can be obtained from http://www.its.msstate.edu/Services/Software/introsymantec.php. Make sure to update the virus signatures often.

    There are two different adware removal programs that are recommended to get rid of adware. Spybot can be downloaded from http://www.safer-networking.org/en/index.html. Adaware, greater than v1.0.3, is another good tool to remove adware. It can be obtained from http://www.lavasoftusa.com/software/adaware/.

  2. If you are having problems with network connectivity, either through ethernet, wireless, or your MSU dial-up account, the first line of defense is the Information Technology Services (ITS) Helpdesk which can be reached by calling 325-0631. Unfortunately, ITS cannot provide any additional services for faculty, staff, or student laptops. ITS requires both antivirus and adware removal tools to be installed and current before services can be rendered.
  3. back to top

--------------------------------------------------------------------------------

I have a question about the ECE computers, or facilities, and I can't find the answer.

If you have questions or need help regarding ECE computers or facilities, send email to ECE Admin .
If for some reason, you are unable to send email, then you may use this form.

back to top

--------------------------------------------------------------------------------

I have a question about other MSU computers or facilities, and I can't find the answer.

If you have questions or need help regarding other MSU computers or facilities, then:

  • During working hours, you may contact the MSU Help Desk via one of the following methods:
    • call 325-0631 (available from 7:00 AM until 7:00 PM),
    • come to the Help Desk building at 108 Allen Hall,
    • email helpdesk@msstate.edu with the subject "open call",
    • fill out a form on the web under "Technical Support" at "http://www.msstate.edu/it/helpdesk/".
  • For non-emergency situations occurring after-hours, you may contact the Helpdesk via email or the web as listed above.
  • For emergency situations occurring after-hours, you may call 325-7044 and explain the problem to the 24-hour systems operator.

    back to top

--------------------------------------------------------------------------------

How do I telnet or ssh to an ECE server?


First, a short definition of what ssh is. SSH is a protocol that have been around for quite some time. It allows an individual on one computer to access another computer just as if they were sitting at the remote computer. SSH encrypts, or "scrambles", what is sent between the two computers.

You cannot telnet to any of the ECE servers as it is insecure.

To ssh from a Windows PC, an ssh program will need to be downloaded. For a list of ssh programs, please consult this question. Once the ssh program is started, follow the on screen instructions on how to connect.

back to top

--------------------------------------------------------------------------------

How do I use the tar command?

The tar command is used to collect a group of files into one file. Thus, you can take a directory and make one file out of it. Why would anyone want to do this? It becomes easier to transfer and also, once the "tarball" is created, you can compress it. Tools for compressing the tarball are gzip and compress. The format for the tar command is as follows:

tar options filename.tar directory

options:
-c Create a tar file
-x Extract an existing tar file
-v Verbose - list all files being added or extracted
-f File format - use this to save to files. You will almost always want this option.

filename.tar:
This is the name you wish to call your tarball.

directory:
This is the directory or file list you wish to tar up.

An example:
To create a tarball of your ee1002 directory, which is in your current directory, into a file ee1002.tar you would type:
tar -cvf ee1002.tar ee1002

There are actually two different versions of tar on our system. There are only minor differences for the casual user. Sun's tar command cannot compress/uncompress at the same time it is creating or extracting an archive. GNU's tar, gtar on our systems, can compress and uncompress at the same time with the -z option. This brief tutorial only scratches the surface of what tar can do. To learn more type:

man tar

on any Unix system to get detailed instructions.

back to top

--------------------------------------------------------------------------------

How do I print a text file in two columns?

A general overview is that you want to convert your ASCII text file into a formatted PostScript file. There are two commands for formatting text files into PostScript documents for printing: mp and enscript. The formatting between the two is a little different, so you will need to experiment with both to see which suits your needs best.

mp is a command included with OpenWindows. An example would be to echo the text file to the mp command and the direct it's output to the printer. This can be done in the following way:

cat filename.txt | mp -l - | lp -d printername

Replace filename.txt with the name of the text file you wish to convert. The option -l - for the mp command tell it to print landscape and direct its output to STDOUT. printername should be replaced with the name of the printer you wish to print to.

The enscript command we use is a GNU version. It is a little more flexible, but also requires more options to make it do a similar job:

cat filename.txt | enscript -2r -o - | lp -d printername

The only things different in this example are the options of enscript. The 2 option prints two columns, while the r option prints landscape. The o option specifies where the output should go, which we are sending to STDOUT again with the - option.

For more information on these commands, please reference their man pages.

back to top

--------------------------------------------------------------------------------

How do I configure XWin32 to open a Xterm from yavin?

First, make sure that your xhosts option is blank. If anything is there, then make sure you remove it, or you may not be able to connect to yavin.
To run XWindows programs within the ECE environment, please do the following:

  1. Start up XWin32.
  2. Current version of XWin32 come with putty. Start up an ssh session and connect to yavin.
    NOTE: For any processor intensive applications, please use hoth or talus as the server name. Any processor intensive application found running on yavin will be removed.

In the session window, enter "xterm &" and press enter.
If done correctly, you should see a XTerm window appear on your desktop. Then you can close the telnet window. If it doesn't work, make sure that you entered the right IP address, and that the xhosts option is empty.

back to top

--------------------------------------------------------------------------------

How do I save a file to PDF format in the PC lab?

To create an Adobe PDF file with PDFWriter using the Print command:

  1. Open the document in its authoring application.
  2. Choose File > Print.
  3. In the Print dialog box, choose Acrobat PDFWriter from the Printer Name menu, enter the page range, and click Print or OK. In some applications, you may need to click Setup in the Print dialog box to get access to the Printer Name menu.
  4. In the Save As dialog box, enter a filename and location for the PDF file, and set other options if necessary:
  5. Click Save.

    back to top

--------------------------------------------------------------------------------

How do I print a postscript file from my PC?

There are several reasons to want to print postscript files from your PC:

To submit a lab report through the electronic lab submittal form, you must send the file in either PostScript or PDF format.
If you want to create a PDF file using the Unix command ps2pdf, you will first have to have a PostScript version of your file.

The first step is to install a PostScript printer on your Windows computer and configure it to print to a file.

  • Open the Printers Control applet by clicking Start - Settings - Printers.
  • Double click the Add Printer icon.
  • Set the printer up as a local printer.
  • Instead of specifying the printer as attached to LTP1, set the printer port to FILE.
  • When asked for a printer driver, specify an Apple 16/600 PS. Apple drivers tend to make better PostScript files. If you don't happen to have the Apple 16/600 PS driver in your version of Windows, you can usually substitute another Apple driver. Postscript drivers are usually marked by a PS at the end of the driver name. You may have to experiment to find the driver that works best for you.
  • Name the printer and complete the setup.

Now, when you wish to create a PostScript file, all you have to do is print the file, as if you were printing to a physical printer, and specify your PostScript file driver. You will be prompted for a file name to save your file as. Windows usually puts a .prn extension on files created from printer drivers.

With any luck, you should now have a PostScript file that you can then use. If you save the file to your H: drive, you can use it in the Unix environment. If you wish to create PDFs on your own, without purchasing Adobe Acrobat, you can use this method to create the PostScript files, and then download Ghostscript which will convert them into PDFs.

back to top

--------------------------------------------------------------------------------

How do I capture a screen or window in Microsoft Windows?

To copy an entire screen to the clipboard, press PRINT SCREEN. To copy just the active window to the clipboard, Press ALT + PRINT SCREEN. After the desired image has been captured to the clipboard it can be pasted into an application by choosing Paste under the Edit menu in the application you want the image to appear in. Alternatively, the image can be pasted into an image editor such as Windows Paint for editing before copying and pasting it into another application.

back to top

--------------------------------------------------------------------------------

How do I map a drive to ECE network drives on my personal computer?

There are many resources available to students with personal computers. One of these is the ability to map drives to ECE servers. There are a few caveats that need to be addressed. Students can only access ECE resources (drives and printers) while on the MSU network. Access outside the university is restricted and will fail if attempted. If Windows 95, 98, or ME is being used to access the ECE network resources, you must be logged into your PC using the same user ID and password as your ECE account. These OSs do not allow different user IDs to be used in mapping network drives and ECE servers will only allow ECE accounts to access them.

The first step to mapping a network drive is deciding which resource to access. The following choices are available:

Description Resource Name
Home Directories \\samba.ece.msstate.edu\UNIXHOME
Class Directories \\samba.ece.msstate.edu\course
*** Replace course with the proper course ID (i.e. ECE1002) ***

To map the drive, open Windows Explorer. Under the Tools menu, choose the Map Network Drive option. A dialog box will pop up. Choose the local drive desired, type the resource name in from the table above (i.e. \\samba.ece.msstate.edu\UNIXHOME) and click OK.

A local drive should appear in the drives listing on the left that maps to the network drive selected.

back to top

--------------------------------------------------------------------------------

How do I print to an ECE printer from my personal computer?

In order to print to an ECE network printer from your personal computer, you must first have an active connection to the ECE SAMBA server. One way to do that is to map a network drive to your home directory. Please see the instructions for mapping a network drive for help. Printer drivers may also have to be downloaded from the manufacturer's site before trying to install.

Once you have an active SAMBA connection, a new printer needs to be installed.

  • Click Add a Printer from the Printers control applet.
  • Choose Local Printer
  • Choose Create a New Local Port \\samba.ece.msstate.edu\printername, where printername is the name of the printer to print to (i.e. \\samba.ece.msstate.edu\BLUE). You can find the printer/manufacturer details here.
  • The remaining questions will deal with personal preference. Answer them and choose OK.

After the printer is created, the printer will appear in printing dialog boxes.

Please note that although the printer has been created, an active network connection to the SAMBA server must be established before printing will work. In short, always make sure a network drive is mapped before printing.

back to top

 

msu   homesite index   Bagley College of Engineering
Last Modified 01/26/07 03:36pm

For information about this page, contact our webmaster .
Copyright © 2008 Mississippi State University Electrical and Computer Engineering. All rights reserved.
Mississippi State University is an equal opportunity institution.