- 履歴一覧
- ソース を表示
- Ben A. Abderazek Group /Frequently Asked Question は削除されています。
|
Home
|
RPS
|
RPR
|
Projects
|
Doc
|
Tools
|
Links
|
Management
|
FAQ
|
Frequently Asked Questions†
Q1:How to login to my account?†
Answer:
At ASL lab;
- You can login to our web server and file server directly.
- How to login to web server?
- How to login to file server?
- Using ssh through default port 22.
ssh zxw001
Outside ASL lab;
- You can longin only to the web server directly.
- If you login to file server from outside our lab, you need to login first to web server, then login to the file server.
Q2:How to upload my RPR and RPS presentations?†
Answer:
- You should upload your presentation about RPS of RPS.
Q3. What are our shared Directories?†
Answer:
- RPS presentations: "home/public/benlab/RPS/2009"
- RPR presentations: "home/public/benlab/RPR/2009"
- Thesis: "home/public/benlab/thesis/"
- Papers: "home/public/benlab/papers/"
- Documents: "home/public/benlab/doc/"
Q4:What is a WEB server?†
Answer:
- A web server is a computer program that delivers (serves) content, such as this web page, using the Hypertext Transfer Protocol.
- ASL web server is: "aslweb"
Q5:What is a FILE server?†
Answer:
- A FILE server is a computer used to store files for access by other client computers on a network of computers.
- ASL file server is: "zxw001"
Q6:What is a DNS server?†
Answer:
- A DNS server houses the IP addresses used to access internet resources. The internet operates via IP address in the format of 255.255.255.255 (i.e. 163.143.1.101). Since those are hard to remember, DNS servers are responsible for translating the user friendly names like eureka.u-aizu.ac.jp to 163.143.1.100.
- DNS sever on the campus is: "100.1.143.163.in-addr.arpa"
- DNS server is: "eureka"
- DNS IP address is: 163.143.1.100.
Q7. How to use FTP ?†
Answer:
You have 2 way of transferring files to file server.
- Type "\\zxw001.u-aizu.ac.jp" in address bar.
- Type login name and password.
- Another is using WinSCP.
- See here for more information.
Q8. How to configure my e-mail account in Outlook Express ?†
Answer:
...
Q9. DNS, FILE and WEB servers Table Summary†
Answer:
- DNS : Name: "eureka"; IP: 163.143.1.100
- FILE: Name: " " ; IP: xxx.xxx.xxx
- WEB : Name: "aslweb"; IP: xxx.xxx.xxx
Q10: So how do I know what shell I am running?†
A: Type "echo $SHELL". For example:
- linux> echo $SHELL
- /usr/local/bin/tcsh
Q11. UNIX basic commands.†
- mkdir dirname --- make a new directory
- cd dirname -- change directory
- pwd --- tells you where you currently are.
- lpr filename --- print.
- passwd --- lets you change your password.
- emacs filename --- is an editor that lets you create and edit a file.
- rlogin hostname --- lets you connect to a remote host.
- ftp hostname --- lets you download files from a remote host which is set up as an ftp-server.
- ps -u yourusername --- lists your processes.
- chmod options filename --- lets you change the read, write, and execute permissions on your files.
- See here for a short introduction about Unix/Linux .